Skip to content

Commit c9d6166

Browse files
Increment version number
1 parent de1356d commit c9d6166

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
0.3.1
2+
=====
3+
- Fix "Home" button in top menu not stopping all apps
4+
15
0.3.0
26
=====
37
- OSUpdate app: now gracefully handles the user closing the app mid-update instead of freezing

internal_filesystem/builtin/apps/com.micropythonos.appstore/assets/appstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def download_and_install(self, zip_url, dest_folder, app_fullname):
368368
if 'response' in locals():
369369
response.close()
370370
# Step 2: install it:
371-
PackageManager.install_mpk(temp_zip_path, dest_folder)
371+
PackageManager.install_mpk(temp_zip_path, dest_folder) # ERROR: temp_zip_path might not be set if download failed!
372372
# Success:
373373
time.sleep(1) # seems silly but otherwise it goes so quickly that the user can't tell something happened and gets confused
374374
self.progress_bar.set_value(100, False)

internal_filesystem/lib/mpos/info.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CURRENT_OS_VERSION = "0.3.0"
1+
CURRENT_OS_VERSION = "0.3.1"
22

33
# Unique string that defines the hardware, used by OSUpdate and the About app
44
_hardware_id = "missing-hardware-info"

0 commit comments

Comments
 (0)