2 Commits
2.07 ... 2.07b

Author SHA1 Message Date
Nic Limper
d2135a57bd bugfix 2024-01-09 21:35:42 +01:00
Jelmer
e77556ee9c Added M2 2.7 jig - updated Hanshow Jigs 2024-01-09 21:19:46 +01:00
10 changed files with 7 additions and 7 deletions

View File

@@ -41,10 +41,10 @@ jobs:
run: | run: |
mkdir espbinaries mkdir espbinaries
- name: Zip web files # - name: Zip web files
run: | # run: |
cd /home/runner/work/OpenEPaperLink/OpenEPaperLink/ESP32_AP-Flasher # cd /home/runner/work/OpenEPaperLink/OpenEPaperLink/ESP32_AP-Flasher
python gzip_wwwfiles.py # python gzip_wwwfiles.py
- name: Build firmware for Simple_AP - name: Build firmware for Simple_AP
run: | run: |

Binary file not shown.

View File

@@ -238,7 +238,7 @@ void init_web() {
}); });
server.serveStatic("/current", *contentFS, "/current/").setCacheControl("max-age=604800"); server.serveStatic("/current", *contentFS, "/current/").setCacheControl("max-age=604800");
server.serveStatic("/tagtypes", *contentFS, "/tagtypes/").setCacheControl("max-age=604800"); server.serveStatic("/tagtypes", *contentFS, "/tagtypes/").setCacheControl("max-age=600");
server.serveStatic("/", *contentFS, "/www/").setDefaultFile("index.html"); server.serveStatic("/", *contentFS, "/www/").setDefaultFile("index.html");
server.on( server.on(

View File

@@ -1072,8 +1072,8 @@ function GroupSortFilter() {
let grouping = document.querySelector('input[name="group"]:checked')?.value; let grouping = document.querySelector('input[name="group"]:checked')?.value;
if (grouping == undefined) { if (grouping == undefined) {
grouping = localStorage.getItem("grouping") + ""; grouping = localStorage.getItem("grouping");
document.querySelector('input[name="group"][value="' + grouping + '"]').checked = true if (grouping) document.querySelector('input[name="group"][value="' + grouping + '"]').checked = true
} else { } else {
localStorage.setItem("grouping", grouping); localStorage.setItem("grouping", grouping);
} }

Binary file not shown.

Binary file not shown.