`taglaunch` Fix broken reset

master
Anton 2024-04-02 15:58:12 +02:00
parent 20c092e7df
commit f47f19f586
4 changed files with 4 additions and 8 deletions

View File

@ -666,12 +666,6 @@ module.exports = {
"no-undef" "no-undef"
] ]
}, },
"taglaunch/app.js": {
"hash": "944689f0600e59bbe4d9e5e2684baeefabe4457a6edd938aae451dc4cd659ad3",
"rules": [
"no-undef"
]
},
"tabanchi/app.js": { "tabanchi/app.js": {
"hash": "6ad6dc1d6b0f539f9f659d5773b5a26d19eb6dacafe7b4682469e6f3c412647e", "hash": "6ad6dc1d6b0f539f9f659d5773b5a26d19eb6dacafe7b4682469e6f3c412647e",
"rules": [ "rules": [

View File

@ -3,3 +3,4 @@
0.03: Remove app from 'tool' when it has at least one other known tag 0.03: Remove app from 'tool' when it has at least one other known tag
Add tag 'health' for apps like Heart Rate Monitor Add tag 'health' for apps like Heart Rate Monitor
0.04: Fix remove handler 0.04: Fix remove handler
0.05: Make the "App source not found" warning less buggy

View File

@ -106,8 +106,9 @@ let showTagMenu = (tag) => {
let app = appsByTag[tag][i]; let app = appsByTag[tag][i];
if (!app) return; if (!app) return;
if (!app.src || require("Storage").read(app.src)===undefined) { if (!app.src || require("Storage").read(app.src)===undefined) {
Bangle.setUI();
E.showMessage(/*LANG*/"App Source\nNot found"); E.showMessage(/*LANG*/"App Source\nNot found");
setTimeout(drawMenu, 2000); setTimeout(showMainMenu, 2000);
} else { } else {
load(app.src); load(app.src);
} }

View File

@ -2,7 +2,7 @@
"id": "taglaunch", "id": "taglaunch",
"name": "Tag Launcher", "name": "Tag Launcher",
"shortName": "Taglauncher", "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.", "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", "readme": "README.md",
"icon": "app.png", "icon": "app.png",