3 Commits
2.06 ... 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
Jonas Niesner
1aeea88696 Revert release file change 2024-01-09 20:33:51 +01:00
10 changed files with 15 additions and 15 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: |
@@ -99,15 +99,10 @@ jobs:
cd /home/runner/work/OpenEPaperLink/OpenEPaperLink
cp OpenEPaperLink_Nano_AP/firmware.bin espbinaries/OpenEPaperLink_Nano_AP.bin
cp OpenEPaperLink_Nano_AP/merged-firmware.bin espbinaries/OpenEPaperLink_Nano_AP_full.bin
- name: generate release json file
run: |
mkdir jsonfiles
python genfilelist.py ${{ github.ref_name }} $GITHUB_REPOSITORY $GITHUB_SHA
- name: move files for big APs
run: |
cp -a binaries/ESP32-C6/. ESP32_AP-Flasher/data/
# - name: move files for big APs
# run: |
# cp -a binaries/ESP32-C6/. ESP32_AP-Flasher/data/
- name: Build firmware for OpenEPaperLink_AP_and_Flasher
run: |
@@ -181,6 +176,11 @@ jobs:
cp OpenEPaperLink_PoE_AP/firmware.bin espbinaries/OpenEPaperLink_PoE_AP.bin
cp OpenEPaperLink_PoE_AP/merged-firmware.bin espbinaries/OpenEPaperLink_PoE_AP_full.bin
- name: generate release json file
run: |
mkdir jsonfiles
python genfilelist.py ${{ github.ref_name }} $GITHUB_REPOSITORY $GITHUB_SHA
- name: Add file lists to release
uses: svenstaro/upload-release-action@v2
with:

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.