File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
apps/com.micropythonos.camera/META-INF
builtin/apps/com.micropythonos.appstore/assets Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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" : [
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments