forked from FOSS/BangleApps
`taglaunch` Fix broken reset
parent
20c092e7df
commit
f47f19f586
|
@ -666,12 +666,6 @@ module.exports = {
|
|||
"no-undef"
|
||||
]
|
||||
},
|
||||
"taglaunch/app.js": {
|
||||
"hash": "944689f0600e59bbe4d9e5e2684baeefabe4457a6edd938aae451dc4cd659ad3",
|
||||
"rules": [
|
||||
"no-undef"
|
||||
]
|
||||
},
|
||||
"tabanchi/app.js": {
|
||||
"hash": "6ad6dc1d6b0f539f9f659d5773b5a26d19eb6dacafe7b4682469e6f3c412647e",
|
||||
"rules": [
|
||||
|
|
|
@ -3,3 +3,4 @@
|
|||
0.03: Remove app from 'tool' when it has at least one other known tag
|
||||
Add tag 'health' for apps like Heart Rate Monitor
|
||||
0.04: Fix remove handler
|
||||
0.05: Make the "App source not found" warning less buggy
|
||||
|
|
|
@ -106,8 +106,9 @@ let showTagMenu = (tag) => {
|
|||
let app = appsByTag[tag][i];
|
||||
if (!app) return;
|
||||
if (!app.src || require("Storage").read(app.src)===undefined) {
|
||||
Bangle.setUI();
|
||||
E.showMessage(/*LANG*/"App Source\nNot found");
|
||||
setTimeout(drawMenu, 2000);
|
||||
setTimeout(showMainMenu, 2000);
|
||||
} else {
|
||||
load(app.src);
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"id": "taglaunch",
|
||||
"name": "Tag Launcher",
|
||||
"shortName": "Taglauncher",
|
||||
"version": "0.04",
|
||||
"version": "0.05",
|
||||
"description": "Launcher that puts all applications into submenus based on their tag. With many applications installed this can result in a faster application selection than the linear access of the default launcher.",
|
||||
"readme": "README.md",
|
||||
"icon": "app.png",
|
||||
|
|
Loading…
Reference in New Issue