- Fixed splash screen centering.
- Much improved onscreen keyboard for touch screen operation. #292
- Handle pause duing seeking operation correctly.
+ - Default Wifi config to internal.
## v0.4.16
- Improved axis under/over warning tooltip.
import json
templ = json.load(open('src/resources/config-template.json', 'r'))
-vars = json.load(open('avr/build/vars.json', 'r'))
+vars = json.load(open('src/avr/build/vars.json', 'r'))
def check(section):
api.get('wifi').done(function (config) {
this.wifi_mode = config.mode;
- this.wifi_internal = config.internal;
+ this.wifi_internal = config.internal == undefined || config.internal;
this.wifi_ssid = config.ssid;
this.wifi_ch = config.channel;
}.bind(this));