Fix sanity check - handle 'to RAM' uploads better, allowing the app loader to upload stuff that doesn't actually ever stay in storage

pull/563/head
Gordon Williams 2020-09-23 11:38:02 +01:00
parent 063929f750
commit 2e45174d4a
3 changed files with 9 additions and 5 deletions

View File

@ -219,7 +219,12 @@ and which gives information about the app for the Launcher.
"shortName": "Short name", // short name for launcher "shortName": "Short name", // short name for launcher
"icon": "icon.png", // icon in apps/ "icon": "icon.png", // icon in apps/
"description": "...", // long description (can contain markdown) "description": "...", // long description (can contain markdown)
"type":"...", // optional(if app) - 'app'/'widget'/'launch'/'bootloader' "type":"...", // optional(if app) -
// 'app' - an application
// 'widget' - a widget
// 'launch' - replacement launcher app
// 'bootloader' - code that runs at startup only
// 'RAM' - code that runs and doesn't upload anything to storage
"tags": "", // comma separated tag list for searching "tags": "", // comma separated tag list for searching
"dependencies" : { "notify":"type" } // optional, app 'types' we depend on "dependencies" : { "notify":"type" } // optional, app 'types' we depend on
// for instance this will use notify/notifyfs is they exist, or will pull in 'notify' // for instance this will use notify/notifyfs is they exist, or will pull in 'notify'

View File

@ -902,9 +902,8 @@
"description": "Downloads assisted GPS data to Bangle.js for faster GPS startup and more accurate fixes", "description": "Downloads assisted GPS data to Bangle.js for faster GPS startup and more accurate fixes",
"custom": "custom.html", "custom": "custom.html",
"tags": "tool,outdoors", "tags": "tool,outdoors",
"readme": "README.md", "type": "RAM",
"storage": [ "storage": [ ]
]
}, },
{ {
"id": "pomodo", "id": "pomodo",

2
core

@ -1 +1 @@
Subproject commit 1b66c4ce1ba71036bcb612a2f16bbd7fbc2c66de Subproject commit 62615f6ea4855381e0b4b4b74f8ca69aa594181e