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: |
mkdir espbinaries
- name: Zip web files
run: |
cd /home/runner/work/OpenEPaperLink/OpenEPaperLink/ESP32_AP-Flasher
python gzip_wwwfiles.py
# - name: Zip web files
# run: |
# cd /home/runner/work/OpenEPaperLink/OpenEPaperLink/ESP32_AP-Flasher
# python gzip_wwwfiles.py
- name: Build firmware for Simple_AP
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("/tagtypes", *contentFS, "/tagtypes/").setCacheControl("max-age=604800");
server.serveStatic("/tagtypes", *contentFS, "/tagtypes/").setCacheControl("max-age=600");
server.serveStatic("/", *contentFS, "/www/").setDefaultFile("index.html");
server.on(

View File

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

Binary file not shown.

Binary file not shown.