vectorclock 0.09: Workaround for issue in 2v14 firmware (fix #1959)

pull/1961/head
Gordon Williams 2022-06-15 08:21:39 +01:00
parent 3c024be9c9
commit 9bab1477fe
3 changed files with 3 additions and 2 deletions

View File

@ -6,3 +6,4 @@
0.06: Redraw widgets when time is updated
0.07: Fix problem with "Bangle.CLOCK": github.com/espruino/BangleApps/issues/1437
0.08: Redraw widgets only once per minute
0.09: Workaround for issue in 2v14 firmware (fix #1959)

View File

@ -16,7 +16,7 @@ var commands = [];
var showSeconds = true;
function pushCommand(command) {
let hash = E.CRC32(E.toJS(arguments));
var hash = E.CRC32(E.toJS(arguments));
if (!delete rectsToClear[hash]) {
commands.push({hash: hash, command: Function.apply.bind(command, null, arguments.slice(1))});
}

View File

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