diff --git a/apps/taglaunch/ChangeLog b/apps/taglaunch/ChangeLog index d397a0e28..e6bec3b85 100644 --- a/apps/taglaunch/ChangeLog +++ b/apps/taglaunch/ChangeLog @@ -5,3 +5,4 @@ 0.04: Fix remove handler 0.05: Make the "App source not found" warning less buggy 0.06: Fixed a crash if an app has no tags (app.tags is undefined) +0.07: Clear cached app list when updating showClocks setting diff --git a/apps/taglaunch/metadata.json b/apps/taglaunch/metadata.json index 383548f42..d366d7ead 100644 --- a/apps/taglaunch/metadata.json +++ b/apps/taglaunch/metadata.json @@ -2,7 +2,7 @@ "id": "taglaunch", "name": "Tag Launcher", "shortName": "Taglauncher", - "version": "0.06", + "version": "0.07", "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", diff --git a/apps/taglaunch/settings.js b/apps/taglaunch/settings.js index b85ff65f6..64045d37c 100644 --- a/apps/taglaunch/settings.js +++ b/apps/taglaunch/settings.js @@ -26,7 +26,10 @@ }, /*LANG*/"Show Clocks": { value: settings.showClocks == true, - onchange: (m) => { save("showClocks", m) } + onchange: (m) => { + save("showClocks", m); + require("Storage").erase("taglaunch.cache.json"); //delete the cache app list + } }, /*LANG*/"Fullscreen": { value: settings.fullscreen == true,