Bump @sveltejs/kit from 2.9.0 to 2.9.1 in /ui (#1441)
* Bump @sveltejs/kit from 2.9.0 to 2.9.1 in /ui Bumps [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) from 2.9.0 to 2.9.1. - [Release notes](https://github.com/sveltejs/kit/releases) - [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md) - [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.9.1/packages/kit) --- updated-dependencies: - dependency-name: "@sveltejs/kit" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * chore: update UI build outputs --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
444a0e749b
commit
f941129988
|
@ -1,6 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Binary arrays for the Web UI ui_app_immutable_assets_css files.
|
* Binary arrays for the Web UI ui_app_immutable_assets_css files.
|
||||||
* Uses Zopfli compression for optimal size and improved speed.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,46 +1,43 @@
|
||||||
/*
|
/*
|
||||||
* Binary arrays for the Web UI ui_app_immutable_entry_js files.
|
* Binary arrays for the Web UI ui_app_immutable_entry_js files.
|
||||||
* Uses Zopfli compression for optimal size and improved speed.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <ESPAsyncWebServer.h>
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
// app/immutable/entry/start.DzDNF7x0.js
|
// app/immutable/entry/start.BiNz8xqj.js
|
||||||
const uint16_t APP_IMMUTABLE_ENTRY_START_DZDNF7X0_JS_L = 83;
|
const uint16_t APP_IMMUTABLE_ENTRY_START_BINZ8XQJ_JS_L = 68;
|
||||||
const uint8_t APP_IMMUTABLE_ENTRY_START_DZDNF7X0_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_ENTRY_START_BINZ8XQJ_JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xcb, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a,
|
0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x73, 0x20, 0x61, 0x73, 0x20, 0x74, 0x7d, 0x66, 0x72,
|
||||||
0xa9, 0x2e, 0x56, 0x48, 0x2c, 0x56, 0x28, 0xa9, 0x4d, 0x2b, 0xca, 0xcf, 0x55, 0xd2, 0xd3, 0xd3,
|
0x6f, 0x6d, 0x22, 0x2e, 0x2e, 0x2f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2f, 0x69, 0x6e, 0x64,
|
||||||
0x4f, 0xce, 0x28, 0xcd, 0xcb, 0x2e, 0xd6, 0xcf, 0xcc, 0x4b, 0x49, 0xad, 0xd0, 0xcb, 0x75, 0xf3,
|
0x65, 0x78, 0x2e, 0x43, 0x2d, 0x4d, 0x73, 0x31, 0x50, 0x67, 0x6d, 0x2e, 0x6a, 0x73, 0x22, 0x3b,
|
||||||
0x4e, 0xc9, 0x70, 0xb1, 0x70, 0xd6, 0xcb, 0x2a, 0x56, 0xb2, 0x4e, 0xad, 0x00, 0xab, 0x2f, 0x01,
|
0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x74, 0x20, 0x61, 0x73, 0x20, 0x73, 0x74, 0x61, 0x72,
|
||||||
0xa9, 0x2f, 0x2e, 0x49, 0x2c, 0x2a, 0xa9, 0xb5, 0xe6, 0x02, 0x00, 0x78, 0xe6, 0x5c, 0x65, 0x44,
|
0x74, 0x7d, 0x3b, 0x0a
|
||||||
0x00, 0x00, 0x00
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableEntryStartDzDnf7x0Js(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableEntryStartBiNz8xqjJs(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_ENTRY_START_DZDNF7X0_JS, APP_IMMUTABLE_ENTRY_START_DZDNF7X0_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_ENTRY_START_BINZ8XQJ_JS, APP_IMMUTABLE_ENTRY_START_BINZ8XQJ_JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
// app/immutable/entry/app.B9Y0-_K7.js
|
// app/immutable/entry/app.prKvLHeo.js
|
||||||
const uint16_t APP_IMMUTABLE_ENTRY_APP_B9Y0__K7_JS_L = 145;
|
const uint16_t APP_IMMUTABLE_ENTRY_APP_PRKVLHEO_JS_L = 145;
|
||||||
const uint8_t APP_IMMUTABLE_ENTRY_APP_B9Y0__K7_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_ENTRY_APP_PRKVLHEO_JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0x25, 0xce, 0xb1, 0x0a, 0xc2, 0x40,
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0x24, 0x4e, 0x35, 0x16, 0x02, 0x41,
|
||||||
0x0c, 0x06, 0xe0, 0xdd, 0xa7, 0x28, 0x9d, 0xc3, 0x75, 0x15, 0x3a, 0x2a, 0x2e, 0x3e, 0x84, 0x1c,
|
0x0c, 0x3d, 0x0a, 0x52, 0x8f, 0x3c, 0xea, 0x2d, 0x69, 0xb1, 0x13, 0xac, 0xbb, 0x85, 0x08, 0x0e,
|
||||||
0x4d, 0x24, 0x67, 0xbd, 0x8b, 0x24, 0x51, 0x2a, 0xd2, 0x77, 0x97, 0xb4, 0xd3, 0xf7, 0x2f, 0xf9,
|
0x77, 0xe7, 0x65, 0xb6, 0x89, 0x7e, 0xeb, 0xa6, 0x2b, 0x90, 0x7c, 0xca, 0x75, 0xc6, 0x6b, 0x30,
|
||||||
0xf3, 0x97, 0xfa, 0x12, 0xf5, 0x1f, 0x76, 0xd9, 0x3a, 0x01, 0x0e, 0x14, 0x6a, 0x40, 0xd0, 0x02,
|
0xad, 0x36, 0x32, 0x93, 0xb6, 0xca, 0xcc, 0xda, 0x4a, 0x43, 0xda, 0xc4, 0x64, 0xda, 0xda, 0x5f,
|
||||||
0x04, 0x0d, 0x1c, 0x72, 0xc0, 0xeb, 0x5d, 0xa5, 0xf6, 0x29, 0x0d, 0x13, 0xbf, 0xdb, 0x6c, 0x43,
|
0x4d, 0x30, 0x6d, 0x9d, 0xf3, 0x45, 0x7b, 0x9b, 0x07, 0xf6, 0xdd, 0x5c, 0x56, 0x4f, 0xb7, 0xb7,
|
||||||
0x69, 0x48, 0x4b, 0xaa, 0x97, 0x2b, 0xf2, 0xf9, 0x78, 0x4a, 0x0f, 0xeb, 0x47, 0x5a, 0xb6, 0x4a,
|
0x47, 0xde, 0x5d, 0x9a, 0xc9, 0xf5, 0xbc, 0x8d, 0xaa, 0x67, 0x90, 0x84, 0xc0, 0xee, 0x0a, 0xe9,
|
||||||
0xd9, 0xae, 0xcb, 0xe4, 0x45, 0x5a, 0xd6, 0xef, 0x5e, 0xc3, 0x22, 0xb3, 0x01, 0x45, 0xac, 0xd9,
|
0x60, 0xce, 0xe8, 0xb5, 0xc8, 0xb4, 0x00, 0x03, 0x9b, 0x4a, 0xc7, 0x29, 0x93, 0xa2, 0xad, 0x88,
|
||||||
0x27, 0x26, 0x35, 0xd8, 0x7e, 0x37, 0x41, 0x32, 0xf0, 0x88, 0x2a, 0xe2, 0xfb, 0x12, 0x23, 0xfd,
|
0x4d, 0xf0, 0x9e, 0xa1, 0xac, 0xd8, 0x48, 0xf0, 0x07, 0x90, 0x25, 0x09, 0x57, 0x74, 0xaf, 0x28,
|
||||||
0x90, 0xde, 0x9e, 0x92, 0xd1, 0xd6, 0xf1, 0xf0, 0x07, 0x9b, 0x64, 0x2e, 0x42, 0xac, 0x00, 0x00,
|
0x19, 0x21, 0x2b, 0xf9, 0x17, 0xfd, 0xc7, 0x05, 0x00, 0x7a, 0xf3, 0xa0, 0x0e, 0xac, 0x00, 0x00,
|
||||||
0x00
|
0x00
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableEntryAppB9Y0K7Js(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableEntryAppPrKvLHeoJs(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_ENTRY_APP_B9Y0__K7_JS, APP_IMMUTABLE_ENTRY_APP_B9Y0__K7_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_ENTRY_APP_PRKVLHEO_JS, APP_IMMUTABLE_ENTRY_APP_PRKVLHEO_JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
response->addHeader(F("Content-Encoding"), "gzip");
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,112 +1,99 @@
|
||||||
/*
|
/*
|
||||||
* Binary arrays for the Web UI ui_app_immutable_nodes_js files.
|
* Binary arrays for the Web UI ui_app_immutable_nodes_js files.
|
||||||
* Uses Zopfli compression for optimal size and improved speed.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <ESPAsyncWebServer.h>
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
|
|
||||||
// app/immutable/nodes/0.BUpjl-S3.js
|
// app/immutable/nodes/0.DoxA4lio.js
|
||||||
const uint16_t APP_IMMUTABLE_NODES_0_BUPJL_S3_JS_L = 103;
|
const uint16_t APP_IMMUTABLE_NODES_0_DOXA4LIO_JS_L = 94;
|
||||||
const uint8_t APP_IMMUTABLE_NODES_0_BUPJL_S3_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_NODES_0_DOXA4LIO_JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xcb, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a,
|
0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x62, 0x20, 0x61, 0x73, 0x20, 0x65, 0x2c, 0x5f, 0x20,
|
||||||
0xa9, 0x4e, 0x52, 0x48, 0x2c, 0x56, 0x48, 0xd5, 0x89, 0x07, 0x51, 0x79, 0xb5, 0x69, 0x45, 0xf9,
|
0x61, 0x73, 0x20, 0x6e, 0x7d, 0x66, 0x72, 0x6f, 0x6d, 0x22, 0x2e, 0x2e, 0x2f, 0x63, 0x68, 0x75,
|
||||||
0xb9, 0x4a, 0x7a, 0x7a, 0xfa, 0xc9, 0x19, 0xa5, 0x79, 0xd9, 0xc5, 0xfa, 0x99, 0x79, 0x29, 0xa9,
|
0x6e, 0x6b, 0x73, 0x2f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2e, 0x43, 0x2d, 0x4d, 0x73, 0x31, 0x50,
|
||||||
0x15, 0x7a, 0xb9, 0x6e, 0xde, 0x29, 0x19, 0x2e, 0x16, 0xce, 0x7a, 0x59, 0xc5, 0x4a, 0xd6, 0xa9,
|
0x67, 0x6d, 0x2e, 0x6a, 0x73, 0x22, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x65, 0x20,
|
||||||
0x15, 0x60, 0x6d, 0xa9, 0x20, 0xf5, 0xc9, 0xf9, 0x40, 0x33, 0xf2, 0x52, 0xf3, 0x4a, 0x74, 0xf2,
|
0x61, 0x73, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x2c, 0x6e, 0x20, 0x61,
|
||||||
0x40, 0xdc, 0xd2, 0xbc, 0xcc, 0xb2, 0xd4, 0xa2, 0xe2, 0xc4, 0x9c, 0x5a, 0x6b, 0x2e, 0x00, 0x84,
|
0x73, 0x20, 0x75, 0x6e, 0x69, 0x76, 0x65, 0x72, 0x73, 0x61, 0x6c, 0x7d, 0x3b, 0x0a
|
||||||
0xf2, 0x80, 0xe5, 0x5e, 0x00, 0x00, 0x00
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableNodes_0BUpjlS3Js(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableNodes_0DoxA4lioJs(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_0_BUPJL_S3_JS, APP_IMMUTABLE_NODES_0_BUPJL_S3_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_0_DOXA4LIO_JS, APP_IMMUTABLE_NODES_0_DOXA4LIO_JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
// app/immutable/nodes/1.KgnaUiKZ.js
|
// app/immutable/nodes/1.FrEEOpBF.js
|
||||||
const uint16_t APP_IMMUTABLE_NODES_1_KGNAUIKZ_JS_L = 86;
|
const uint16_t APP_IMMUTABLE_NODES_1_FREEOPBF_JS_L = 72;
|
||||||
const uint8_t APP_IMMUTABLE_NODES_1_KGNAUIKZ_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_NODES_1_FREEOPBF_JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xcb, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a,
|
0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x45, 0x20, 0x61, 0x73, 0x20, 0x6d, 0x7d, 0x66, 0x72,
|
||||||
0xa9, 0x76, 0x55, 0x48, 0x2c, 0x56, 0xc8, 0xad, 0x4d, 0x2b, 0xca, 0xcf, 0x55, 0xd2, 0xd3, 0xd3,
|
0x6f, 0x6d, 0x22, 0x2e, 0x2e, 0x2f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2f, 0x69, 0x6e, 0x64,
|
||||||
0x4f, 0xce, 0x28, 0xcd, 0xcb, 0x2e, 0xd6, 0xcf, 0xcc, 0x4b, 0x49, 0xad, 0xd0, 0xcb, 0x75, 0xf3,
|
0x65, 0x78, 0x2e, 0x43, 0x2d, 0x4d, 0x73, 0x31, 0x50, 0x67, 0x6d, 0x2e, 0x6a, 0x73, 0x22, 0x3b,
|
||||||
0x4e, 0xc9, 0x70, 0xb1, 0x70, 0xd6, 0xcb, 0x2a, 0x56, 0xb2, 0x4e, 0xad, 0x00, 0xab, 0xcf, 0x05,
|
0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x6d, 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f, 0x6d, 0x70,
|
||||||
0xa9, 0x4f, 0xce, 0x07, 0x6a, 0xce, 0x4b, 0xcd, 0x2b, 0xa9, 0xb5, 0xe6, 0x02, 0x00, 0xcb, 0x0c,
|
0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x7d, 0x3b, 0x0a
|
||||||
0xb8, 0xa2, 0x48, 0x00, 0x00, 0x00
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableNodes_1KgnaUiKzJs(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableNodes_1FrEeOpBfJs(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_1_KGNAUIKZ_JS, APP_IMMUTABLE_NODES_1_KGNAUIKZ_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_1_FREEOPBF_JS, APP_IMMUTABLE_NODES_1_FREEOPBF_JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
// app/immutable/nodes/2.DRTs-OeU.js
|
// app/immutable/nodes/2.DLG8ZAB-.js
|
||||||
const uint16_t APP_IMMUTABLE_NODES_2_DRTS_OEU_JS_L = 86;
|
const uint16_t APP_IMMUTABLE_NODES_2_DLG8ZAB__JS_L = 72;
|
||||||
const uint8_t APP_IMMUTABLE_NODES_2_DRTS_OEU_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_NODES_2_DLG8ZAB__JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xcb, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a,
|
0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x63, 0x20, 0x61, 0x73, 0x20, 0x65, 0x7d, 0x66, 0x72,
|
||||||
0xa9, 0x4e, 0x56, 0x48, 0x2c, 0x56, 0x48, 0xad, 0x4d, 0x2b, 0xca, 0xcf, 0x55, 0xd2, 0xd3, 0xd3,
|
0x6f, 0x6d, 0x22, 0x2e, 0x2e, 0x2f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2f, 0x69, 0x6e, 0x64,
|
||||||
0x4f, 0xce, 0x28, 0xcd, 0xcb, 0x2e, 0xd6, 0xcf, 0xcc, 0x4b, 0x49, 0xad, 0xd0, 0xcb, 0x75, 0xf3,
|
0x65, 0x78, 0x2e, 0x43, 0x2d, 0x4d, 0x73, 0x31, 0x50, 0x67, 0x6d, 0x2e, 0x6a, 0x73, 0x22, 0x3b,
|
||||||
0x4e, 0xc9, 0x70, 0xb1, 0x70, 0xd6, 0xcb, 0x2a, 0x56, 0xb2, 0x4e, 0xad, 0x00, 0xab, 0x4f, 0x05,
|
0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x65, 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f, 0x6d, 0x70,
|
||||||
0xa9, 0x4f, 0xce, 0x07, 0x6a, 0xce, 0x4b, 0xcd, 0x2b, 0xa9, 0xb5, 0xe6, 0x02, 0x00, 0xe4, 0xcc,
|
0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x7d, 0x3b, 0x0a
|
||||||
0x2e, 0xd7, 0x48, 0x00, 0x00, 0x00
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableNodes_2DrTsOeUJs(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableNodes_2Dlg8ZabJs(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_2_DRTS_OEU_JS, APP_IMMUTABLE_NODES_2_DRTS_OEU_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_2_DLG8ZAB__JS, APP_IMMUTABLE_NODES_2_DLG8ZAB__JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
// app/immutable/nodes/3.DAisRa9z.js
|
// app/immutable/nodes/3.BF6QiS-F.js
|
||||||
const uint16_t APP_IMMUTABLE_NODES_3_DAISRA9Z_JS_L = 86;
|
const uint16_t APP_IMMUTABLE_NODES_3_BF6QIS_F_JS_L = 72;
|
||||||
const uint8_t APP_IMMUTABLE_NODES_3_DAISRA9Z_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_NODES_3_BF6QIS_F_JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xcb, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a,
|
0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x65, 0x20, 0x61, 0x73, 0x20, 0x6d, 0x7d, 0x66, 0x72,
|
||||||
0xa9, 0x4e, 0x55, 0x48, 0x2c, 0x56, 0xc8, 0xad, 0x4d, 0x2b, 0xca, 0xcf, 0x55, 0xd2, 0xd3, 0xd3,
|
0x6f, 0x6d, 0x22, 0x2e, 0x2e, 0x2f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2f, 0x69, 0x6e, 0x64,
|
||||||
0x4f, 0xce, 0x28, 0xcd, 0xcb, 0x2e, 0xd6, 0xcf, 0xcc, 0x4b, 0x49, 0xad, 0xd0, 0xcb, 0x75, 0xf3,
|
0x65, 0x78, 0x2e, 0x43, 0x2d, 0x4d, 0x73, 0x31, 0x50, 0x67, 0x6d, 0x2e, 0x6a, 0x73, 0x22, 0x3b,
|
||||||
0x4e, 0xc9, 0x70, 0xb1, 0x70, 0xd6, 0xcb, 0x2a, 0x56, 0xb2, 0x4e, 0xad, 0x00, 0xab, 0xcf, 0x05,
|
0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x6d, 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f, 0x6d, 0x70,
|
||||||
0xa9, 0x4f, 0xce, 0x07, 0x6a, 0xce, 0x4b, 0xcd, 0x2b, 0xa9, 0xb5, 0xe6, 0x02, 0x00, 0x91, 0x0a,
|
0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x7d, 0x3b, 0x0a
|
||||||
0x88, 0x65, 0x48, 0x00, 0x00, 0x00
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableNodes_3DAisRa9zJs(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableNodes_3Bf6QiSFJs(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_3_DAISRA9Z_JS, APP_IMMUTABLE_NODES_3_DAISRA9Z_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_3_BF6QIS_F_JS, APP_IMMUTABLE_NODES_3_BF6QIS_F_JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
// app/immutable/nodes/4.pU4Xl9Mg.js
|
// app/immutable/nodes/4.BLgF1u00.js
|
||||||
const uint16_t APP_IMMUTABLE_NODES_4_PU4XL9MG_JS_L = 82;
|
const uint16_t APP_IMMUTABLE_NODES_4_BLGF1U00_JS_L = 67;
|
||||||
const uint8_t APP_IMMUTABLE_NODES_4_PU4XL9MG_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_NODES_4_BLGF1U00_JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xcb, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a,
|
0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x66, 0x7d, 0x66, 0x72, 0x6f, 0x6d, 0x22, 0x2e, 0x2e,
|
||||||
0xa9, 0x4e, 0xab, 0x4d, 0x2b, 0xca, 0xcf, 0x55, 0xd2, 0xd3, 0xd3, 0x4f, 0xce, 0x28, 0xcd, 0xcb,
|
0x2f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2e, 0x43, 0x2d,
|
||||||
0x2e, 0xd6, 0xcf, 0xcc, 0x4b, 0x49, 0xad, 0xd0, 0xcb, 0x75, 0xf3, 0x4e, 0xc9, 0x70, 0xb1, 0x70,
|
0x4d, 0x73, 0x31, 0x50, 0x67, 0x6d, 0x2e, 0x6a, 0x73, 0x22, 0x3b, 0x65, 0x78, 0x70, 0x6f, 0x72,
|
||||||
0xd6, 0xcb, 0x2a, 0x56, 0xb2, 0x4e, 0xad, 0x80, 0x28, 0x55, 0x48, 0x2c, 0x56, 0x48, 0xce, 0x07,
|
0x74, 0x7b, 0x66, 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f, 0x6d, 0x70, 0x6f, 0x6e, 0x65, 0x6e, 0x74,
|
||||||
0xea, 0xcb, 0x4b, 0xcd, 0x2b, 0xa9, 0xb5, 0xe6, 0x02, 0x00, 0xf1, 0xfb, 0x4f, 0x22, 0x43, 0x00,
|
0x7d, 0x3b, 0x0a
|
||||||
0x00, 0x00
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableNodes_4PU4Xl9MgJs(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableNodes_4BLgF1u00Js(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_4_PU4XL9MG_JS, APP_IMMUTABLE_NODES_4_PU4XL9MG_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_4_BLGF1U00_JS, APP_IMMUTABLE_NODES_4_BLGF1U00_JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
// app/immutable/nodes/5.9ec-vGtq.js
|
// app/immutable/nodes/5.DrK3Ya0H.js
|
||||||
const uint16_t APP_IMMUTABLE_NODES_5_9EC_VGTQ_JS_L = 86;
|
const uint16_t APP_IMMUTABLE_NODES_5_DRK3YA0H_JS_L = 72;
|
||||||
const uint8_t APP_IMMUTABLE_NODES_5_9EC_VGTQ_JS[] PROGMEM = {
|
const uint8_t APP_IMMUTABLE_NODES_5_DRK3YA0H_JS[] PROGMEM = {
|
||||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x03, 0xcb, 0xcc, 0x2d, 0xc8, 0x2f, 0x2a,
|
0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x67, 0x20, 0x61, 0x73, 0x20, 0x6d, 0x7d, 0x66, 0x72,
|
||||||
0xa9, 0x4e, 0x57, 0x48, 0x2c, 0x56, 0xc8, 0xad, 0x4d, 0x2b, 0xca, 0xcf, 0x55, 0xd2, 0xd3, 0xd3,
|
0x6f, 0x6d, 0x22, 0x2e, 0x2e, 0x2f, 0x63, 0x68, 0x75, 0x6e, 0x6b, 0x73, 0x2f, 0x69, 0x6e, 0x64,
|
||||||
0x4f, 0xce, 0x28, 0xcd, 0xcb, 0x2e, 0xd6, 0xcf, 0xcc, 0x4b, 0x49, 0xad, 0xd0, 0xcb, 0x75, 0xf3,
|
0x65, 0x78, 0x2e, 0x43, 0x2d, 0x4d, 0x73, 0x31, 0x50, 0x67, 0x6d, 0x2e, 0x6a, 0x73, 0x22, 0x3b,
|
||||||
0x4e, 0xc9, 0x70, 0xb1, 0x70, 0xd6, 0xcb, 0x2a, 0x56, 0xb2, 0x4e, 0xad, 0x00, 0xab, 0xcf, 0x05,
|
0x65, 0x78, 0x70, 0x6f, 0x72, 0x74, 0x7b, 0x6d, 0x20, 0x61, 0x73, 0x20, 0x63, 0x6f, 0x6d, 0x70,
|
||||||
0xa9, 0x4f, 0xce, 0x07, 0x6a, 0xce, 0x4b, 0xcd, 0x2b, 0xa9, 0xb5, 0xe6, 0x02, 0x00, 0x1c, 0xa9,
|
0x6f, 0x6e, 0x65, 0x6e, 0x74, 0x7d, 0x3b, 0x0a
|
||||||
0x2d, 0xbf, 0x48, 0x00, 0x00, 0x00
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline void serveAppImmutableNodes_5_9ecVGtqJs(AsyncWebServerRequest* request) {
|
inline void serveAppImmutableNodes_5DrK3Ya0HJs(AsyncWebServerRequest* request) {
|
||||||
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_5_9EC_VGTQ_JS, APP_IMMUTABLE_NODES_5_9EC_VGTQ_JS_L);
|
AsyncWebServerResponse *response = request->beginResponse_P(200, "application/javascript", APP_IMMUTABLE_NODES_5_DRK3YA0H_JS, APP_IMMUTABLE_NODES_5_DRK3YA0H_JS_L);
|
||||||
response->addHeader(F("Content-Encoding"), "gzip");
|
|
||||||
request->send(response);
|
request->send(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,32 +1,19 @@
|
||||||
|
/*
|
||||||
|
* Web UI Routes
|
||||||
|
*
|
||||||
|
* Compressed Size Summary:
|
||||||
|
* ui_svg: 456 bytes
|
||||||
|
* Total: 456 bytes
|
||||||
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <ESPAsyncWebServer.h>
|
||||||
#include "ui_app_immutable_assets_css.h"
|
|
||||||
#include "ui_app_immutable_chunks_js.h"
|
|
||||||
#include "ui_app_immutable_entry_js.h"
|
|
||||||
#include "ui_app_immutable_nodes_js.h"
|
|
||||||
#include "ui_html.h"
|
|
||||||
#include "ui_svg.h"
|
#include "ui_svg.h"
|
||||||
|
|
||||||
inline void setupRoutes(AsyncWebServer* server) {
|
inline void setupRoutes(AsyncWebServer* server) {
|
||||||
server->on("/ui/app/immutable/assets/index.DUGlLD2F.css", HTTP_GET, serveAppImmutableAssetsIndexDuGlLd2FCss);
|
|
||||||
server->on("/ui/app/immutable/chunks/index.mFKdhD8C.js", HTTP_GET, serveAppImmutableChunksIndexMFKdhD8CJs);
|
|
||||||
server->on("/ui/app/immutable/entry/start.DzDNF7x0.js", HTTP_GET, serveAppImmutableEntryStartDzDnf7x0Js);
|
|
||||||
server->on("/ui/app/immutable/entry/app.B9Y0-_K7.js", HTTP_GET, serveAppImmutableEntryAppB9Y0K7Js);
|
|
||||||
server->on("/ui/app/immutable/nodes/0.BUpjl-S3.js", HTTP_GET, serveAppImmutableNodes_0BUpjlS3Js);
|
|
||||||
server->on("/ui/app/immutable/nodes/1.KgnaUiKZ.js", HTTP_GET, serveAppImmutableNodes_1KgnaUiKzJs);
|
|
||||||
server->on("/ui/app/immutable/nodes/2.DRTs-OeU.js", HTTP_GET, serveAppImmutableNodes_2DrTsOeUJs);
|
|
||||||
server->on("/ui/app/immutable/nodes/3.DAisRa9z.js", HTTP_GET, serveAppImmutableNodes_3DAisRa9zJs);
|
|
||||||
server->on("/ui/app/immutable/nodes/4.pU4Xl9Mg.js", HTTP_GET, serveAppImmutableNodes_4PU4Xl9MgJs);
|
|
||||||
server->on("/ui/app/immutable/nodes/5.9ec-vGtq.js", HTTP_GET, serveAppImmutableNodes_5_9ecVGtqJs);
|
|
||||||
server->on("/ui/favicon.svg", HTTP_GET, serveFaviconSvg);
|
server->on("/ui/favicon.svg", HTTP_GET, serveFaviconSvg);
|
||||||
|
|
||||||
// HTML routes
|
// HTML routes
|
||||||
server->on("/ui/devices", HTTP_GET, serveDevicesHtml);
|
|
||||||
server->on("/ui/devices.html", HTTP_GET, serveDevicesHtml);
|
|
||||||
server->on("/ui/fingerprints", HTTP_GET, serveFingerprintsHtml);
|
|
||||||
server->on("/ui/fingerprints.html", HTTP_GET, serveFingerprintsHtml);
|
|
||||||
server->on("/ui/", HTTP_GET, serveIndexHtml);
|
|
||||||
server->on("/ui/settings", HTTP_GET, serveSettingsHtml);
|
|
||||||
server->on("/ui/settings.html", HTTP_GET, serveSettingsHtml);
|
|
||||||
}
|
}
|
|
@ -1,6 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Binary arrays for the Web UI ui_svg files.
|
* Binary arrays for the Web UI ui_svg files.
|
||||||
* Uses Zopfli compression for optimal size and improved speed.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"@gfx/zopfli": "^1.0.15",
|
"@gfx/zopfli": "^1.0.15",
|
||||||
"@rollup/plugin-strip": "^3.0.4",
|
"@rollup/plugin-strip": "^3.0.4",
|
||||||
"@sveltejs/adapter-static": "^3.0.6",
|
"@sveltejs/adapter-static": "^3.0.6",
|
||||||
"@sveltejs/kit": "^2.9.0",
|
"@sveltejs/kit": "^2.9.1",
|
||||||
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
||||||
"@types/node": "^22.10.1",
|
"@types/node": "^22.10.1",
|
||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.20",
|
||||||
|
@ -871,12 +871,11 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@sveltejs/kit": {
|
"node_modules/@sveltejs/kit": {
|
||||||
"version": "2.9.0",
|
"version": "2.9.1",
|
||||||
"resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.9.0.tgz",
|
"resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.9.1.tgz",
|
||||||
"integrity": "sha512-W3E7ed3ChB6kPqRs2H7tcHp+Z7oiTFC6m+lLyAQQuyXeqw6LdNuuwEUla+5VM0OGgqQD+cYD6+7Xq80vVm17Vg==",
|
"integrity": "sha512-D+yH3DTvvkjXdl3Xv7akKmolrArDZRtsFv3nlxJPjlIKsZEpkkInnomKJuAql2TrNGJ2dJMGBO1YYgVn2ILmag==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"hasInstallScript": true,
|
"hasInstallScript": true,
|
||||||
"license": "MIT",
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/cookie": "^0.6.0",
|
"@types/cookie": "^0.6.0",
|
||||||
"cookie": "^0.6.0",
|
"cookie": "^0.6.0",
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
"@gfx/zopfli": "^1.0.15",
|
"@gfx/zopfli": "^1.0.15",
|
||||||
"@rollup/plugin-strip": "^3.0.4",
|
"@rollup/plugin-strip": "^3.0.4",
|
||||||
"@sveltejs/adapter-static": "^3.0.6",
|
"@sveltejs/adapter-static": "^3.0.6",
|
||||||
"@sveltejs/kit": "^2.9.0",
|
"@sveltejs/kit": "^2.9.1",
|
||||||
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
"@sveltejs/vite-plugin-svelte": "^4.0.0",
|
||||||
"@types/node": "^22.10.1",
|
"@types/node": "^22.10.1",
|
||||||
"autoprefixer": "^10.4.20",
|
"autoprefixer": "^10.4.20",
|
||||||
|
|
Loading…
Reference in New Issue