From 4f0f382fb01f60f136da77e3ae8ff35380957b25 Mon Sep 17 00:00:00 2001 From: Manuel <71137295+mverch67@users.noreply.github.com> Date: Mon, 16 Dec 2024 20:25:16 +0100 Subject: [PATCH 1/2] Update README.md --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 16e53a8..ef6159c 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,8 @@ Vectors and icons by SVG Repo - [x] Netherlands translation - [x] Dutch translation - [X] Italian translation - - [ ] French translation + - [X] French translation + - [X] Russian translation - [ ] Turkish translation - [ ] Greek translation - [ ] Support dynamic OLED / Color(TFT) selection @@ -115,7 +116,7 @@ Vectors and icons by SVG Repo - [ ] LastHeard & time source handling improvements - [ ] Remote Node configuration - [x] Filter (offline, unknown, public key, position, hops away, by name) - - [x] Highlight (position, telemetry, , by name) + - [x] Highlight (position, telemetry, IAQ, by name) - [x] Group channel panel - [x] Chat panel - [x] Scroll container and messages display @@ -162,7 +163,7 @@ Vectors and icons by SVG Repo - [ ] T-Deck UI - [x] 320x240 scalable view - [x] GPS position - - [ ] Radio frequency display + - [x] Radio frequency display - [ ] Offline map display - [x] I2C keyboard input handling - [x] Trackball support (e.g. fast scrolling list views) @@ -201,6 +202,9 @@ Vectors and icons by SVG Repo - [x] Dedicated device-ui project - [ ] Sunton/EstarDyn CYD support (320x240) Note: no longer working due to insufficient memory - [x] LilyGo T-HMI support (320x240) + - [x] Replicator support (esp32 + nrf52 radio) + - [x] Display driver + - [X] 480x480 view -> scaled 320x240 - [X] WT32-SC01 (Plus) support (480x320) - [x] Display driver - [X] 480x320 view -> scaled 320x240 From 36337a06998bd31d3c67e6c8ea0746678ca93421 Mon Sep 17 00:00:00 2001 From: Manuel <71137295+mverch67@users.noreply.github.com> Date: Tue, 17 Dec 2024 22:49:10 +0100 Subject: [PATCH 2/2] fix hanging after wakeup from button press --- source/TFTView_320x240.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/TFTView_320x240.cpp b/source/TFTView_320x240.cpp index 122ad7e..1ca5b2a 100644 --- a/source/TFTView_320x240.cpp +++ b/source/TFTView_320x240.cpp @@ -4439,9 +4439,11 @@ void TFTView_320x240::screenSaving(bool enabled) } else if (objects.main_screen) { ILOG_DEBUG("showing main screen"); lv_screen_load_anim(objects.main_screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, false); + screenLocked = false; } else { ILOG_DEBUG("showing boot screen"); lv_screen_load_anim(objects.boot_screen, LV_SCR_LOAD_ANIM_NONE, 0, 0, false); + screenLocked = false; } } }