From c9d6166e80f986ca61e935dfcae55cc08a5f2df7 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Sat, 8 Nov 2025 07:43:25 +0100 Subject: [PATCH] Increment version number --- CHANGELOG.md | 4 ++++ .../apps/com.micropythonos.appstore/assets/appstore.py | 2 +- internal_filesystem/lib/mpos/info.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2b4be05..04210152 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +0.3.1 +===== +- Fix "Home" button in top menu not stopping all apps + 0.3.0 ===== - OSUpdate app: now gracefully handles the user closing the app mid-update instead of freezing diff --git a/internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py b/internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py index cdba28dc..3efecac2 100644 --- a/internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py +++ b/internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py @@ -368,7 +368,7 @@ class AppDetail(Activity): if 'response' in locals(): response.close() # Step 2: install it: - PackageManager.install_mpk(temp_zip_path, dest_folder) + PackageManager.install_mpk(temp_zip_path, dest_folder) # ERROR: temp_zip_path might not be set if download failed! # Success: time.sleep(1) # seems silly but otherwise it goes so quickly that the user can't tell something happened and gets confused self.progress_bar.set_value(100, False) diff --git a/internal_filesystem/lib/mpos/info.py b/internal_filesystem/lib/mpos/info.py index e24724ea..89cafd16 100644 --- a/internal_filesystem/lib/mpos/info.py +++ b/internal_filesystem/lib/mpos/info.py @@ -1,4 +1,4 @@ -CURRENT_OS_VERSION = "0.3.0" +CURRENT_OS_VERSION = "0.3.1" # Unique string that defines the hardware, used by OSUpdate and the About app _hardware_id = "missing-hardware-info"