Increment version number

This commit is contained in:
Thomas Farstrike
2025-11-08 07:43:25 +01:00
parent de1356df5b
commit c9d6166e80
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -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
@@ -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)
+1 -1
View File
@@ -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"