cutelauncher: Clear cached app list when updating showClocks setting
parent
97d86e6c08
commit
29f6bb94e3
|
|
@ -1 +1,2 @@
|
|||
0.01: New app introduced to the app loader!
|
||||
0.02: Clear cached app list when updating showClocks setting
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"id": "cutelauncher",
|
||||
"name": "Cute Launcher",
|
||||
"shortName": "Cute Launcher",
|
||||
"version": "0.01",
|
||||
"version": "0.02",
|
||||
"description": "A simple launcher app for Bangle.js 2 that makes use of the full touchscreen",
|
||||
"icon": "app.png",
|
||||
"type": "launch",
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
onchange: () => {
|
||||
settings.showClocks = !settings.showClocks;
|
||||
save();
|
||||
storage.erase("launch.cache.json"); //delete the cache app list
|
||||
}
|
||||
},
|
||||
'Scrollbar': {
|
||||
|
|
@ -34,4 +35,4 @@
|
|||
}
|
||||
}
|
||||
});
|
||||
})
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in New Issue