Skip to content

Commit a9884e9

Browse files
author
thyttan
committed
taglaunch: Clear cached app list when updating showClocks setting
1 parent 13296d3 commit a9884e9

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

apps/taglaunch/ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
0.04: Fix remove handler
66
0.05: Make the "App source not found" warning less buggy
77
0.06: Fixed a crash if an app has no tags (app.tags is undefined)
8+
0.07: Clear cached app list when updateing showClocks setting

apps/taglaunch/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "taglaunch",
33
"name": "Tag Launcher",
44
"shortName": "Taglauncher",
5-
"version": "0.06",
5+
"version": "0.07",
66
"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.",
77
"readme": "README.md",
88
"icon": "app.png",

apps/taglaunch/settings.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@
2626
},
2727
/*LANG*/"Show Clocks": {
2828
value: settings.showClocks == true,
29-
onchange: (m) => { save("showClocks", m) }
29+
onchange: (m) => {
30+
save("showClocks", m);
31+
require("Storage").erase("taglaunch.cache.json"); //delete the cache app list
32+
}
3033
},
3134
/*LANG*/"Fullscreen": {
3235
value: settings.fullscreen == true,

0 commit comments

Comments
 (0)