mirror of https://github.com/espruino/BangleApps
0.62: Fix whitelist showing as 'on' by default when it's not after 0.59
parent
7ba94c100d
commit
f384aa244c
|
@ -68,3 +68,4 @@ of 'Select Clock'
|
||||||
0.60: Moved LCD calibration to top of menu, and use 12 taps (not 8)
|
0.60: Moved LCD calibration to top of menu, and use 12 taps (not 8)
|
||||||
LCD calibration will now error if the calibration is obviously wrong
|
LCD calibration will now error if the calibration is obviously wrong
|
||||||
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
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"id": "setting",
|
"id": "setting",
|
||||||
"name": "Settings",
|
"name": "Settings",
|
||||||
"version": "0.61",
|
"version": "0.62",
|
||||||
"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",
|
||||||
|
|
|
@ -193,7 +193,7 @@ function showBLEMenu() {
|
||||||
/*LANG*/'Whitelist': {
|
/*LANG*/'Whitelist': {
|
||||||
value:
|
value:
|
||||||
(
|
(
|
||||||
settings.whitelist_disabled ? /*LANG*/"off" : /*LANG*/"on"
|
(settings.whitelist_disabled || !settings.whitelist) ? /*LANG*/"off" : /*LANG*/"on"
|
||||||
) + (
|
) + (
|
||||||
settings.whitelist
|
settings.whitelist
|
||||||
? " (" + settings.whitelist.length + ")"
|
? " (" + settings.whitelist.length + ")"
|
||||||
|
|
Loading…
Reference in New Issue