You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
Increment version number
This commit is contained in:
@@ -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,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"
|
||||
|
||||
Reference in New Issue
Block a user