Merge pull request #2371 from pebl-hank/master

Changed direction
pull/2372/head
Gordon Williams 2022-12-07 13:21:57 +00:00 committed by GitHub
commit 7c17660dd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View File

@ -10,3 +10,4 @@
0.24: Added fast load
0.25: Minor code optimization
0.26: BJS2: Swipe down to rotate 180 degree
0.27: BJS2: Changed swipe down to swipe up

View File

@ -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.
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

View File

@ -338,13 +338,13 @@ if (BANGLEJS2) {
}
} else if (Math.abs(dy)>Math.abs(dx)+10) {
// vertical
if (dx < dy) {
g.clear().setRotation(2);
if (dx < dy) { //down
g.clear().setRotation(0);
draw();
Bangle.loadWidgets();
Bangle.drawWidgets();
} else {
g.clear().setRotation(0);
g.clear().setRotation(2);
draw();
Bangle.loadWidgets();
Bangle.drawWidgets();

View File

@ -2,7 +2,7 @@
"id": "hworldclock",
"name": "Hanks World Clock",
"shortName": "Hanks World Clock",
"version": "0.26",
"version": "0.27",
"description": "Current time zone plus up to three others",
"allow_emulator":true,
"icon": "app.png",