mirror of https://github.com/espruino/BangleApps
vectorclock 0.09: Workaround for issue in 2v14 firmware (fix #1959)
parent
3c024be9c9
commit
9bab1477fe
|
@ -6,3 +6,4 @@
|
||||||
0.06: Redraw widgets when time is updated
|
0.06: Redraw widgets when time is updated
|
||||||
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)
|
||||||
|
|
|
@ -16,7 +16,7 @@ var commands = [];
|
||||||
var showSeconds = true;
|
var showSeconds = true;
|
||||||
|
|
||||||
function pushCommand(command) {
|
function pushCommand(command) {
|
||||||
let hash = E.CRC32(E.toJS(arguments));
|
var hash = E.CRC32(E.toJS(arguments));
|
||||||
if (!delete rectsToClear[hash]) {
|
if (!delete rectsToClear[hash]) {
|
||||||
commands.push({hash: hash, command: Function.apply.bind(command, null, arguments.slice(1))});
|
commands.push({hash: hash, command: Function.apply.bind(command, null, arguments.slice(1))});
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "vectorclock",
|
"id": "vectorclock",
|
||||||
"name": "Vector Clock",
|
"name": "Vector Clock",
|
||||||
"version": "0.08",
|
"version": "0.09",
|
||||||
"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",
|
||||||
|
|
Loading…
Reference in New Issue