diff --git a/.github/workflows/daily-update.yml b/.github/workflows/daily-update.yml index 412b630..eb0825e 100644 --- a/.github/workflows/daily-update.yml +++ b/.github/workflows/daily-update.yml @@ -42,9 +42,9 @@ jobs: git submodule init git submodule update --recursive cd Wippersnapper_Boards - git reset --hard origin/rp2040_datalogger_feather + git reset --hard origin/offline-mode cd ../Wippersnapper_Components - git reset --hard origin/main + git reset --hard origin/offline-mode cd .. git add Wippersnapper_Boards Wippersnapper_Components git diff --staged --quiet || git commit -m "Update submodules to latest versions [skip ci]" diff --git a/Wippersnapper_Boards b/Wippersnapper_Boards index 66d3995..07c6667 160000 --- a/Wippersnapper_Boards +++ b/Wippersnapper_Boards @@ -1 +1 @@ -Subproject commit 66d399578444320a039514f1a41160a0c2357212 +Subproject commit 07c6667a1d21e1b2561db2a73d8da23f04504546 diff --git a/Wippersnapper_Components b/Wippersnapper_Components index 1f7823e..624d42b 160000 --- a/Wippersnapper_Components +++ b/Wippersnapper_Components @@ -1 +1 @@ -Subproject commit 1f7823e15ee49acffb15aab2cc947ea7d1ad6619 +Subproject commit 624d42bd75cfdbdf39e728ac7cdf9612c7ee4503 diff --git a/convert_components_to_json.py b/convert_components_to_json.py index faeea05..bfbdb90 100644 --- a/convert_components_to_json.py +++ b/convert_components_to_json.py @@ -268,12 +268,12 @@ def convert_components_to_json(): # Write the consolidated JSON file with open(OUTPUT_FILE, 'w') as f: - json.dump({"components": components}, f, indent=2) - + json.dump({"components": components}, f, ensure_ascii=False, indent=2) + # Write the consolidated JS file with open(OUTPUT_FILE.replace('.json', '.js'), 'w') as f: f.write("window.jsonComponentsObject = ") - json.dump({"components": components}, f, indent=2) + json.dump({"components": components}, f, ensure_ascii=False, indent=2) f.write(";\n") print(f"Successfully created {OUTPUT_FILE}") diff --git a/firmware-data.js b/firmware-data.js index 9ef8cc1..1202b04 100644 --- a/firmware-data.js +++ b/firmware-data.js @@ -1,4 +1,4 @@ -// Auto-generated on 2025-08-11 00:22:56 +// Auto-generated on 2025-08-11 14:04:12 const FIRMWARE_DATA = { "releaseInfo": { "version": "1.0.0-offline-beta.3", diff --git a/index.html b/index.html index f895e68..d79a12b 100644 --- a/index.html +++ b/index.html @@ -314,7 +314,8 @@

2. Select Companion Board (Optional)

- + +