()
| 2498 | } |
| 2499 | |
| 2500 | async function exportAllIconsTftRgb565() { |
| 2501 | if (!FILE_ICONS.length) { |
| 2502 | setIconHint("No icons loaded. Check your icon manifest."); |
| 2503 | return; |
| 2504 | } |
| 2505 | if (document.documentElement.dataset.displaykitApi === "1") { |
| 2506 | try { |
| 2507 | await exportAllIconsViaServer("tft_rgb565"); |
| 2508 | return; |
| 2509 | } catch (e) { |
| 2510 | console.warn("Server TFT icon export failed, using browser:", e); |
| 2511 | setIconHint("Server export failed — using browser."); |
| 2512 | } |
| 2513 | } |
| 2514 | await exportAllIconsTftRgb565Client(); |
| 2515 | } |
| 2516 | |
| 2517 | async function exportAllIconsU8g2XbmClient() { |
| 2518 | setIconHint("Exporting U8g2 XBM…"); |
no test coverage detected