We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d86e6 commit 13296d3Copy full SHA for 13296d3
apps/cutelauncher/ChangeLog
@@ -1 +1,2 @@
1
0.01: New app introduced to the app loader!
2
+0.02: Clear cached app list when updateing showClocks setting
apps/cutelauncher/metadata.json
@@ -2,7 +2,7 @@
"id": "cutelauncher",
3
"name": "Cute Launcher",
4
"shortName": "Cute Launcher",
5
- "version": "0.01",
+ "version": "0.02",
6
"description": "A simple launcher app for Bangle.js 2 that makes use of the full touchscreen",
7
"icon": "app.png",
8
"type": "launch",
apps/cutelauncher/settings.js
@@ -24,6 +24,7 @@
24
onchange: () => {
25
settings.showClocks = !settings.showClocks;
26
save();
27
+ storage.erase("launch.cache.json"); //delete the cache app list
28
}
29
},
30
'Scrollbar': {
@@ -34,4 +35,4 @@
34
35
36
37
});
-})
38
+})
0 commit comments