mirror of https://github.com/espruino/BangleApps
parent
a8ccc840b7
commit
d8398d73a3
|
@ -3896,7 +3896,7 @@
|
||||||
"id": "qmsched",
|
"id": "qmsched",
|
||||||
"name": "Quiet Mode Schedule and Widget",
|
"name": "Quiet Mode Schedule and Widget",
|
||||||
"shortName": "Quiet Mode",
|
"shortName": "Quiet Mode",
|
||||||
"version": "0.05",
|
"version": "0.06",
|
||||||
"description": "Automatically turn Quiet Mode on or off at set times, and change LCD options while Quiet Mode is active.",
|
"description": "Automatically turn Quiet Mode on or off at set times, and change LCD options while Quiet Mode is active.",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"screenshots": [{"url":"screenshot_b1_main.png"},{"url":"screenshot_b1_edit.png"},{"url":"screenshot_b1_lcd.png"},
|
"screenshots": [{"url":"screenshot_b1_main.png"},{"url":"screenshot_b1_edit.png"},{"url":"screenshot_b1_lcd.png"},
|
||||||
|
|
|
@ -2,4 +2,5 @@
|
||||||
0.02: Add widget
|
0.02: Add widget
|
||||||
0.03: Bangle.js 2 support
|
0.03: Bangle.js 2 support
|
||||||
0.04: Move Quiet Mode LCD options from global settings to this app
|
0.04: Move Quiet Mode LCD options from global settings to this app
|
||||||
0.05: Avoid immediately redrawing widgets on load
|
0.05: Avoid immediately redrawing widgets on load
|
||||||
|
0.06: Fix: don't try to redraw widget when widgets not loaded
|
|
@ -19,5 +19,5 @@ exports.setMode = function(mode) {
|
||||||
{quiet:mode}
|
{quiet:mode}
|
||||||
));
|
));
|
||||||
exports.applyOptions(mode);
|
exports.applyOptions(mode);
|
||||||
if (WIDGETS && "qmsched" in WIDGETS) WIDGETS["qmsched"].draw();
|
if (typeof WIDGETS === "object" && "qmsched" in WIDGETS) WIDGETS["qmsched"].draw();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue