mirror of https://github.com/espruino/BangleApps
commit
7c17660dd3
|
@ -10,3 +10,4 @@
|
||||||
0.24: Added fast load
|
0.24: Added fast load
|
||||||
0.25: Minor code optimization
|
0.25: Minor code optimization
|
||||||
0.26: BJS2: Swipe down to rotate 180 degree
|
0.26: BJS2: Swipe down to rotate 180 degree
|
||||||
|
0.27: BJS2: Changed swipe down to swipe up
|
||||||
|
|
|
@ -14,7 +14,7 @@ Provide names and the UTC offsets for up to three other timezones in the app sto
|
||||||
|
|
||||||
The clock does not handle summer time / daylight saving time changes automatically. If one of your three locations changes its UTC offset, you can simply change the setting in the app store and update. Currently the clock only supports 24 hour time format for the additional time zones.
|
The clock does not handle summer time / daylight saving time changes automatically. If one of your three locations changes its UTC offset, you can simply change the setting in the app store and update. Currently the clock only supports 24 hour time format for the additional time zones.
|
||||||
|
|
||||||
BangleJS2: Swipe down to rotate screen. So you can show the time to a friend real quick.
|
BangleJS2: Swipe up to rotate screen. So you can show the time to a friend real quick.
|
||||||
|
|
||||||
## Requests
|
## Requests
|
||||||
|
|
||||||
|
|
|
@ -338,13 +338,13 @@ if (BANGLEJS2) {
|
||||||
}
|
}
|
||||||
} else if (Math.abs(dy)>Math.abs(dx)+10) {
|
} else if (Math.abs(dy)>Math.abs(dx)+10) {
|
||||||
// vertical
|
// vertical
|
||||||
if (dx < dy) {
|
if (dx < dy) { //down
|
||||||
g.clear().setRotation(2);
|
g.clear().setRotation(0);
|
||||||
draw();
|
draw();
|
||||||
Bangle.loadWidgets();
|
Bangle.loadWidgets();
|
||||||
Bangle.drawWidgets();
|
Bangle.drawWidgets();
|
||||||
} else {
|
} else {
|
||||||
g.clear().setRotation(0);
|
g.clear().setRotation(2);
|
||||||
draw();
|
draw();
|
||||||
Bangle.loadWidgets();
|
Bangle.loadWidgets();
|
||||||
Bangle.drawWidgets();
|
Bangle.drawWidgets();
|
||||||
|
|
|
@ -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.26",
|
"version": "0.27",
|
||||||
"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