diff --git a/apps/setting/ChangeLog b/apps/setting/ChangeLog index dbeea10ca..4f4196e32 100644 --- a/apps/setting/ChangeLog +++ b/apps/setting/ChangeLog @@ -70,4 +70,5 @@ of 'Select Clock' 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.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 \ No newline at end of file + Remove 'beta' label from passkey - it's been around for a while and works ok +0.64: Default to wakeOnTwist being off \ No newline at end of file diff --git a/apps/setting/metadata.json b/apps/setting/metadata.json index c94abdd82..07376468a 100644 --- a/apps/setting/metadata.json +++ b/apps/setting/metadata.json @@ -1,7 +1,7 @@ { "id": "setting", "name": "Settings", - "version": "0.63", + "version": "0.64", "description": "A menu for setting up Bangle.js", "icon": "settings.png", "tags": "tool,system", diff --git a/apps/setting/settings.js b/apps/setting/settings.js index 3c4115a2f..d19bb14d7 100644 --- a/apps/setting/settings.js +++ b/apps/setting/settings.js @@ -50,7 +50,7 @@ function resetSettings() { wakeOnBTN3: true, wakeOnFaceUp: false, wakeOnTouch: false, - wakeOnTwist: true, + wakeOnTwist: false, twistThreshold: 819.2, twistMaxY: -800, twistTimeout: 1000 diff --git a/apps/setting/settings.min.json b/apps/setting/settings.min.json index 984054c11..42d2babc4 100644 --- a/apps/setting/settings.min.json +++ b/apps/setting/settings.min.json @@ -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}} \ No newline at end of file +{"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}} \ No newline at end of file