vectorclock 0.10: Ensure that we only display seconds if loaded when unlocked (fix #3690)

master
Gordon Williams 2025-03-05 09:41:31 +00:00
parent 39f8e58239
commit ad33d70d8a
3 changed files with 3 additions and 2 deletions

View File

@ -7,3 +7,4 @@
0.07: Fix problem with "Bangle.CLOCK": github.com/espruino/BangleApps/issues/1437 0.07: Fix problem with "Bangle.CLOCK": github.com/espruino/BangleApps/issues/1437
0.08: Redraw widgets only once per minute 0.08: Redraw widgets only once per minute
0.09: Workaround for issue in 2v14 firmware (fix #1959) 0.09: Workaround for issue in 2v14 firmware (fix #1959)
0.10: Ensure that we only display seconds if loaded when unlocked (fix #3690)

View File

@ -13,7 +13,7 @@ function padNum(n, l) {
var rects = {}; var rects = {};
var rectsToClear = {}; var rectsToClear = {};
var commands = []; var commands = [];
var showSeconds = true; var showSeconds = !Bangle.isLocked();
function pushCommand(command) { function pushCommand(command) {
var hash = E.CRC32(E.toJS(arguments)); var hash = E.CRC32(E.toJS(arguments));

View File

@ -1,7 +1,7 @@
{ {
"id": "vectorclock", "id": "vectorclock",
"name": "Vector Clock", "name": "Vector Clock",
"version": "0.09", "version": "0.10",
"description": "A digital clock that uses the built-in vector font.", "description": "A digital clock that uses the built-in vector font.",
"icon": "app.png", "icon": "app.png",
"type": "clock", "type": "clock",