mirror of https://github.com/espruino/BangleApps
0.64: Default to wakeOnTwist being off
parent
a180895ad1
commit
213ac33faa
|
@ -70,4 +70,5 @@ of 'Select Clock'
|
||||||
0.61: Permit temporary bypass of the BLE whitelist
|
0.61: Permit temporary bypass of the BLE whitelist
|
||||||
0.62: Fix whitelist showing as 'on' by default when it's not after 0.59
|
0.62: Fix whitelist showing as 'on' by default when it's not after 0.59
|
||||||
0.63: Whitelist: Try to resolve peer addresses using NRF.resolveAddress() - for 2v19 or 2v18 cutting edge builds
|
0.63: Whitelist: Try to resolve peer addresses using NRF.resolveAddress() - for 2v19 or 2v18 cutting edge builds
|
||||||
Remove 'beta' label from passkey - it's been around for a while and works ok
|
Remove 'beta' label from passkey - it's been around for a while and works ok
|
||||||
|
0.64: Default to wakeOnTwist being off
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "setting",
|
"id": "setting",
|
||||||
"name": "Settings",
|
"name": "Settings",
|
||||||
"version": "0.63",
|
"version": "0.64",
|
||||||
"description": "A menu for setting up Bangle.js",
|
"description": "A menu for setting up Bangle.js",
|
||||||
"icon": "settings.png",
|
"icon": "settings.png",
|
||||||
"tags": "tool,system",
|
"tags": "tool,system",
|
||||||
|
|
|
@ -50,7 +50,7 @@ function resetSettings() {
|
||||||
wakeOnBTN3: true,
|
wakeOnBTN3: true,
|
||||||
wakeOnFaceUp: false,
|
wakeOnFaceUp: false,
|
||||||
wakeOnTouch: false,
|
wakeOnTouch: false,
|
||||||
wakeOnTwist: true,
|
wakeOnTwist: false,
|
||||||
twistThreshold: 819.2,
|
twistThreshold: 819.2,
|
||||||
twistMaxY: -800,
|
twistMaxY: -800,
|
||||||
twistTimeout: 1000
|
twistTimeout: 1000
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
{"ble":true,"blerepl":true,"log":false,"timeout":10,"vibrate":true,"beep":"vib","timezone":0,"HID":false,"clock":null,"12hour":false,"brightness":1,"options":{"wakeOnBTN1":true,"wakeOnBTN2":true,"wakeOnBTN3":true,"wakeOnFaceUp":false,"wakeOnTouch":false,"wakeOnTwist":true,"twistThreshold":819.2,"twistMaxY":-800,"twistTimeout":1000}}
|
{"ble":true,"blerepl":true,"log":false,"timeout":10,"vibrate":true,"beep":"vib","timezone":0,"HID":false,"clock":null,"12hour":false,"brightness":1,"options":{"wakeOnBTN1":true,"wakeOnBTN2":true,"wakeOnBTN3":true,"wakeOnFaceUp":false,"wakeOnTouch":false,"wakeOnTwist":false,"twistThreshold":819.2,"twistMaxY":-800,"twistTimeout":1000}}
|
Loading…
Reference in New Issue