BangleApps/apps/popconlaunch/settings.js

16 lines
484 B
JavaScript
Raw Normal View History

2023-05-24 07:19:05 +00:00
(function (back) {
var menu = {
'': { 'title': 'Popcon' },
'< Back': back,
'Reset app popularities': function () {
2023-05-24 07:27:12 +00:00
var S = require("Storage");
S.erase("popcon.cache.json");
2023-05-24 07:27:29 +00:00
var info = S.readJSON("popconlaunch.info", true);
2023-05-24 07:27:12 +00:00
info.cacheBuster = !info.cacheBuster;
2023-05-24 07:27:29 +00:00
S.writeJSON("popconlaunch.info", info);
2023-05-24 07:19:05 +00:00
E.showMessage("Popcon reset", "Done");
},
};
E.showMenu(menu);
});