From 325270b3094ed255f36a42c6fa8ca7ace27a22a1 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Sun, 23 Nov 2025 11:47:45 +0100 Subject: [PATCH] OSUpdate: tweak UI --- .../apps/com.micropythonos.osupdate/assets/osupdate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal_filesystem/builtin/apps/com.micropythonos.osupdate/assets/osupdate.py b/internal_filesystem/builtin/apps/com.micropythonos.osupdate/assets/osupdate.py index e9405dcc..ee5e6a6c 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.osupdate/assets/osupdate.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.osupdate/assets/osupdate.py @@ -125,7 +125,7 @@ class OSUpdate(Activity): if self.current_state == UpdateState.DOWNLOADING: # Download will automatically pause due to connectivity check pass - elif self.current_state == UpdateState.CHECKING_UPDATE: + elif self.current_state == UpdateState.IDLE or self.current_state == UpdateState.CHECKING_UPDATE: # Was checking for updates when network dropped self.set_state(UpdateState.WAITING_WIFI) else: @@ -216,7 +216,7 @@ class OSUpdate(Activity): label = "New" self.install_button.remove_state(lv.STATE.DISABLED) else: - label = "Same latest" + label = "No new" if (self.force_update.get_state() & lv.STATE.CHECKED): self.install_button.remove_state(lv.STATE.DISABLED) label += f" version: {version}\n\nDetails:\n\n{changelog}"