mirror of https://github.com/espruino/BangleApps
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
// make sure to enclose the function in parentheses
|
|
(function(back) {
|
|
let settings = Object.assign({
|
|
showClocks: true,
|
|
fullscreen: false
|
|
}, require("Storage").readJSON("taglaunch.json", true) || {});
|
|
|
|
let fonts = g.getFonts();
|
|
function save(key, value) {
|
|
settings[key] = value;
|
|
require("Storage").write("taglaunch.json",settings);
|
|
}
|
|
const appMenu = {
|
|
"": { "title": /*LANG*/"Tag Launcher" },
|
|
"< Back": back,
|
|
/*LANG*/"Font": {
|
|
value: fonts.includes(settings.font)? fonts.indexOf(settings.font) : fonts.indexOf("12x20"),
|
|
min:0, max:fonts.length-1, step:1,wrap:true,
|
|
onchange: (m) => {save("font", fonts[m])},
|
|
format: v => fonts[v]
|
|
},
|
|
/*LANG*/"Vector Font Size": {
|
|
value: settings.vectorsize || 10,
|
|
min:10, max: 20,step:1,wrap:true,
|
|
onchange: (m) => {save("vectorsize", m)}
|
|
},
|
|
/*LANG*/"Show Clocks": {
|
|
value: settings.showClocks == true,
|
|
onchange: (m) => { save("showClocks", m) }
|
|
},
|
|
/*LANG*/"Fullscreen": {
|
|
value: settings.fullscreen == true,
|
|
onchange: (m) => { save("fullscreen", m) }
|
|
}
|
|
};
|
|
E.showMenu(appMenu);
|
|
})
|