Fix compile

This commit is contained in:
suchmememanyskill
2025-02-01 17:37:06 +01:00
parent fbc2964ad8
commit d8a9b13fe1
2 changed files with 6 additions and 5 deletions

View File

@@ -20,7 +20,7 @@ jobs:
runs-on: windows-latest runs-on: windows-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
with: with:
fetch-depth: 0 fetch-depth: 0
@@ -31,7 +31,7 @@ jobs:
# ~/.platformio/.cache # ~/.platformio/.cache
# key: ${{ runner.os }}-pio-cyd-klipper # key: ${{ runner.os }}-pio-cyd-klipper
- uses: actions/setup-python@v4 - uses: actions/setup-python@v5
with: with:
python-version: '3.9' python-version: '3.9'
@@ -43,13 +43,13 @@ jobs:
python3 ci.py python3 ci.py
- name: Upload artifact - name: Upload artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: firmware name: firmware
path: ./out path: ./out
- name: Upload GitHub Page Artifact - name: Upload GitHub Page Artifact
uses: actions/upload-pages-artifact@v2 uses: actions/upload-pages-artifact@v3
deploy: deploy:
environment: environment:
@@ -65,5 +65,5 @@ jobs:
- name: Deploy to GitHub Pages - name: Deploy to GitHub Pages
id: deployment id: deployment
uses: actions/deploy-pages@v2 uses: actions/deploy-pages@v4

View File

@@ -375,6 +375,7 @@ void show_ip_entry()
lv_textarea_set_placeholder_text(host_entry, "Printer IP"); lv_textarea_set_placeholder_text(host_entry, "Printer IP");
lv_textarea_set_placeholder_text(port_entry, "Access code"); lv_textarea_set_placeholder_text(port_entry, "Access code");
lv_textarea_set_placeholder_text(auth_entry, "Printer serial number"); lv_textarea_set_placeholder_text(auth_entry, "Printer serial number");
lv_obj_clear_flag(auth_entry, LV_OBJ_FLAG_USER_2);
lv_obj_add_flag(auth_entry, LV_OBJ_FLAG_USER_3); lv_obj_add_flag(auth_entry, LV_OBJ_FLAG_USER_3);
break; break;
case PrinterType::PrinterTypeOctoprint: case PrinterType::PrinterTypeOctoprint: