NVS ui fine-tuning, site icon now works

This commit is contained in:
Sebastien
2021-04-21 13:27:32 -04:00
parent 8904ec1afd
commit 45f480d948
27 changed files with 88 additions and 78 deletions

View File

@@ -4,31 +4,31 @@ extern const uint8_t _favicon_32x32_png_start[] asm("_binary_favicon_32x32_png_s
extern const uint8_t _favicon_32x32_png_end[] asm("_binary_favicon_32x32_png_end");
extern const uint8_t _index_html_gz_start[] asm("_binary_index_html_gz_start");
extern const uint8_t _index_html_gz_end[] asm("_binary_index_html_gz_end");
extern const uint8_t _index_abeafc_bundle_js_gz_start[] asm("_binary_index_abeafc_bundle_js_gz_start");
extern const uint8_t _index_abeafc_bundle_js_gz_end[] asm("_binary_index_abeafc_bundle_js_gz_end");
extern const uint8_t _node_modules_abeafc_bundle_js_gz_start[] asm("_binary_node_modules_abeafc_bundle_js_gz_start");
extern const uint8_t _node_modules_abeafc_bundle_js_gz_end[] asm("_binary_node_modules_abeafc_bundle_js_gz_end");
extern const uint8_t _runtime_abeafc_bundle_js_gz_start[] asm("_binary_runtime_abeafc_bundle_js_gz_start");
extern const uint8_t _runtime_abeafc_bundle_js_gz_end[] asm("_binary_runtime_abeafc_bundle_js_gz_end");
extern const uint8_t _index_18c3b7_bundle_js_gz_start[] asm("_binary_index_18c3b7_bundle_js_gz_start");
extern const uint8_t _index_18c3b7_bundle_js_gz_end[] asm("_binary_index_18c3b7_bundle_js_gz_end");
extern const uint8_t _node_modules_18c3b7_bundle_js_gz_start[] asm("_binary_node_modules_18c3b7_bundle_js_gz_start");
extern const uint8_t _node_modules_18c3b7_bundle_js_gz_end[] asm("_binary_node_modules_18c3b7_bundle_js_gz_end");
extern const uint8_t _runtime_18c3b7_bundle_js_gz_start[] asm("_binary_runtime_18c3b7_bundle_js_gz_start");
extern const uint8_t _runtime_18c3b7_bundle_js_gz_end[] asm("_binary_runtime_18c3b7_bundle_js_gz_end");
const char * resource_lookups[] = {
"/dist/favicon-32x32.png",
"/dist/index.html.gz",
"/js/index.abeafc.bundle.js.gz",
"/js/node-modules.abeafc.bundle.js.gz",
"/js/runtime.abeafc.bundle.js.gz",
"/favicon-32x32.png",
"/index.html.gz",
"/js/index.18c3b7.bundle.js.gz",
"/js/node-modules.18c3b7.bundle.js.gz",
"/js/runtime.18c3b7.bundle.js.gz",
""
};
const uint8_t * resource_map_start[] = {
_favicon_32x32_png_start,
_index_html_gz_start,
_index_abeafc_bundle_js_gz_start,
_node_modules_abeafc_bundle_js_gz_start,
_runtime_abeafc_bundle_js_gz_start
_index_18c3b7_bundle_js_gz_start,
_node_modules_18c3b7_bundle_js_gz_start,
_runtime_18c3b7_bundle_js_gz_start
};
const uint8_t * resource_map_end[] = {
_favicon_32x32_png_end,
_index_html_gz_end,
_index_abeafc_bundle_js_gz_end,
_node_modules_abeafc_bundle_js_gz_end,
_runtime_abeafc_bundle_js_gz_end
_index_18c3b7_bundle_js_gz_end,
_node_modules_18c3b7_bundle_js_gz_end,
_runtime_18c3b7_bundle_js_gz_end
};