Skip to content

Commit 4860437

Browse files
Fix Camera icon path
1 parent a86ab00 commit 4860437

File tree

2 files changed

+5
-3
lines changed
  • internal_filesystem

2 files changed

+5
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
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.micropython.camera/icons/com.micropython.camera_0.0.3_64x64.png",
7-
"download_url": "https://apps.micropythonos.com/com.micropython.camera/mpks/com.micropython.camera_0.0.3.mpk",
8-
"fullname": "com.micropython.camera",
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",
8+
"fullname": "com.micropythonos.camera",
99
"version": "0.0.3",
1010
"category": "camera",
1111
"activities": [

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -442,10 +442,12 @@ def is_update_available(app_fullname, new_version):
442442
def is_installed_by_path(dir_path):
443443
try:
444444
if os.stat(dir_path)[0] & 0x4000:
445+
print(f"is_installed_by_path: {dir_path} found, checking manifest...")
445446
manifest = f"{dir_path}/META-INF/MANIFEST.JSON"
446447
if os.stat(manifest)[0] & 0x8000:
447448
return True
448449
except OSError:
450+
print(f"is_installed_by_path got OSError for {dir_path}")
449451
pass # Skip if directory or manifest doesn't exist
450452
return False
451453

0 commit comments

Comments
 (0)