feature: all thirty-minute timezones

pull/69/head
Ujjwal Sharma 2019-12-19 02:53:35 +05:30
parent d306209da7
commit d483eb9064
No known key found for this signature in database
GPG Key ID: BB9110C042D7C804
3 changed files with 4 additions and 3 deletions

View File

@ -41,7 +41,7 @@
{ "id": "setting",
"name": "Settings",
"icon": "settings.png",
"version":"0.01",
"version":"0.02",
"description": "A menu for setting up Bangle.js - by default this disables Bluetooth unless you enable 'BLE' AND 'Dev'",
"tags": "tool,system",
"storage": [

1
apps/setting/ChangeLog Normal file
View File

@ -0,0 +1 @@
0.02: Add support for 30-minute timezones.

View File

@ -98,9 +98,9 @@ function showMainMenu() {
value: settings.timezone,
min: -11,
max: 12,
step: 1,
step: 0.5,
onchange: v => {
settings.timezone = 0 | v;
settings.timezone = v;
updateSettings();
}
},