hworldclock 0.34: Fix 'fast load' so clock doesn't always redraw when screen unlocked/locked
parent
f63054d326
commit
b5abec090e
|
|
@ -18,3 +18,4 @@
|
||||||
Remove calls to Bangle.loadWidgets as they are not needed and create warnings
|
Remove calls to Bangle.loadWidgets as they are not needed and create warnings
|
||||||
0.32: Added setting to show single timezone small, like where multiple ones are configured
|
0.32: Added setting to show single timezone small, like where multiple ones are configured
|
||||||
0.33: Tidy up and fix clearInterval(undefined) errors
|
0.33: Tidy up and fix clearInterval(undefined) errors
|
||||||
|
0.34: Fix 'fast load' so clock doesn't always redraw when screen unlocked/locked
|
||||||
|
|
@ -443,7 +443,7 @@ Bangle.setUI({
|
||||||
drawTimeout = undefined;
|
drawTimeout = undefined;
|
||||||
//if (BANGLEJS2)
|
//if (BANGLEJS2)
|
||||||
Bangle.removeListener("drag",onDrag);
|
Bangle.removeListener("drag",onDrag);
|
||||||
Bangle.removeListener("onLock",onLock);
|
Bangle.removeListener("lock",onLock);
|
||||||
}});
|
}});
|
||||||
|
|
||||||
g.clear().setRotation(defaultRotation); // clean app screen and make sure the default rotation is set
|
g.clear().setRotation(defaultRotation); // clean app screen and make sure the default rotation is set
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
"id": "hworldclock",
|
"id": "hworldclock",
|
||||||
"name": "Hanks World Clock",
|
"name": "Hanks World Clock",
|
||||||
"shortName": "Hanks World Clock",
|
"shortName": "Hanks World Clock",
|
||||||
"version": "0.33",
|
"version": "0.34",
|
||||||
"description": "Current time zone plus up to three others",
|
"description": "Current time zone plus up to three others",
|
||||||
"allow_emulator":true,
|
"allow_emulator":true,
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue