0.31: Remove calls to Bangle.loadWidgets as they are not needed and create warnings
parent
dcefe4b393
commit
51304530f6
|
|
@ -14,3 +14,4 @@
|
||||||
0.28: Reverted changes to implementation of 0.25
|
0.28: Reverted changes to implementation of 0.25
|
||||||
0.29: Use 'modules/suncalc.js' to avoid it being copied 8 times for different apps
|
0.29: Use 'modules/suncalc.js' to avoid it being copied 8 times for different apps
|
||||||
0.30: BJS2: swipe seems to be working now
|
0.30: BJS2: swipe seems to be working now
|
||||||
|
0.31: Remove calls to Bangle.loadWidgets as they are not needed and create warnings
|
||||||
|
|
|
||||||
|
|
@ -329,12 +329,10 @@ draw();
|
||||||
if (dx < dy) { //down
|
if (dx < dy) { //down
|
||||||
g.clear().setRotation(0);
|
g.clear().setRotation(0);
|
||||||
draw();
|
draw();
|
||||||
Bangle.loadWidgets();
|
|
||||||
Bangle.drawWidgets();
|
Bangle.drawWidgets();
|
||||||
} else {
|
} else {
|
||||||
g.clear().setRotation(2);
|
g.clear().setRotation(2);
|
||||||
draw();
|
draw();
|
||||||
Bangle.loadWidgets();
|
|
||||||
Bangle.drawWidgets();
|
Bangle.drawWidgets();
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
|
|
@ -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.30",
|
"version": "0.31",
|
||||||
"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