Skip to content

Commit d9e6f3f

Browse files
Fix appstore and icon urls
1 parent 4860437 commit d9e6f3f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

internal_filesystem/apps/com.micropythonos.camera/META-INF/MANIFEST.JSON

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"publisher": "MicroPythonOS",
44
"short_description": "Camera with QR decoding",
55
"long_description": "Camera for both internal camera's and webcams, that includes QR decoding.",
6-
"icon_url": "https://apps.micropythonos.com/com.micropythonos.camera/icons/com.micropythonos.camera_0.0.3_64x64.png",
7-
"download_url": "https://apps.micropythonos.com/com.micropythonos.camera/mpks/com.micropythonos.camera_0.0.3.mpk",
6+
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/icons/com.micropythonos.camera_0.0.3_64x64.png",
7+
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.camera/mpks/com.micropythonos.camera_0.0.3.mpk",
88
"fullname": "com.micropythonos.camera",
99
"version": "0.0.3",
1010
"category": "camera",

internal_filesystem/builtin/apps/com.micropythonos.appstore/META-INF/MANIFEST.JSON

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"publisher": "MicroPythonOS",
44
"short_description": "Store for App(lication)s",
55
"long_description": "",
6-
"icon_url": "https://apps.micropythonos.com/com.micropythonos.appstore/icons/com.micropythonos.appstore_0.0.3_64x64.png",
7-
"download_url": "https://apps.micropythonos.com/com.micropythonos.appstore/mpks/com.micropythonos.appstore_0.0.3.mpk",
6+
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/icons/com.micropythonos.appstore_0.0.3_64x64.png",
7+
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.appstore/mpks/com.micropythonos.appstore_0.0.3.mpk",
88
"fullname": "com.micropythonos.appstore",
99
"version": "0.0.3",
1010
"category": "appstore",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def uninstall_app(self, app_folder, app_fullname):
322322
time.sleep(1)
323323
self.progress_bar.add_flag(lv.obj.FLAG.HIDDEN)
324324
self.progress_bar.set_value(0, lv.ANIM.OFF)
325-
set_install_label(app_fullname)
325+
self.set_install_label(app_fullname)
326326
self.install_button.add_flag(lv.obj.FLAG.CLICKABLE)
327327
if self.is_builtin_app(app_fullname):
328328
self.update_button.remove_flag(lv.obj.FLAG.HIDDEN)
@@ -342,7 +342,7 @@ def download_and_unzip(self, zip_url, dest_folder, app_fullname):
342342
if response.status_code != 200:
343343
print("Download failed: Status code", response.status_code)
344344
response.close()
345-
set_install_label(app_fullname)
345+
self.set_install_label(app_fullname)
346346
self.progress_bar.set_value(40, lv.ANIM.ON)
347347
time.sleep_ms(500)
348348
# Save the .mpk file to a temporary location
@@ -390,7 +390,7 @@ def download_and_unzip(self, zip_url, dest_folder, app_fullname):
390390
time.sleep(1)
391391
self.progress_bar.add_flag(lv.obj.FLAG.HIDDEN)
392392
self.progress_bar.set_value(0, lv.ANIM.OFF)
393-
set_install_label(app_fullname)
393+
self.set_install_label(app_fullname)
394394
self.install_button.add_flag(lv.obj.FLAG.CLICKABLE)
395395

396396
@staticmethod

internal_filesystem/builtin/apps/com.micropythonos.launcher/META-INF/MANIFEST.JSON

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"publisher": "MicroPythonOS",
44
"short_description": "Simple launcher to start apps.",
55
"long_description": "",
6-
"icon_url": "https://apps.micropythonos.com/com.micropythonos.launcher/icons/com.micropythonos.launcher_0.0.3_64x64.png",
7-
"download_url": "https://apps.micropythonos.com/com.micropythonos.launcher/mpks/com.micropythonos.launcher_0.0.3.mpk",
6+
"icon_url": "https://apps.micropythonos.com/apps/com.micropythonos.launcher/icons/com.micropythonos.launcher_0.0.3_64x64.png",
7+
"download_url": "https://apps.micropythonos.com/apps/com.micropythonos.launcher/mpks/com.micropythonos.launcher_0.0.3.mpk",
88
"fullname": "com.micropythonos.launcher",
99
"version": "0.0.3",
1010
"category": "launcher",

0 commit comments

Comments
 (0)