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
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
@@ -31,7 +31,7 @@ jobs:
# ~/.platformio/.cache
# key: ${{ runner.os }}-pio-cyd-klipper
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
@@ -43,13 +43,13 @@ jobs:
python3 ci.py
- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: firmware
path: ./out
- name: Upload GitHub Page Artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
deploy:
environment:
@@ -65,5 +65,5 @@ jobs:
- name: Deploy to GitHub Pages
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(port_entry, "Access code");
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);
break;
case PrinterType::PrinterTypeOctoprint: