forked from FOSS/BangleApps
write to correct settings file
parent
a735433652
commit
0db11e5707
|
@ -15,3 +15,4 @@
|
||||||
0.14: Fix Bangle.js 1 issue where after the 'overwrite track' menu, the start/stop button stopped working
|
0.14: Fix Bangle.js 1 issue where after the 'overwrite track' menu, the start/stop button stopped working
|
||||||
0.15: Diverge from the standard "Run" app. Swipe to intensity interface a la Karvonen (curtesy of FTeacher at https://github.com/f-teacher)
|
0.15: Diverge from the standard "Run" app. Swipe to intensity interface a la Karvonen (curtesy of FTeacher at https://github.com/f-teacher)
|
||||||
0.16: Don't clear zone 2b indicator segment when updating HRM reading.
|
0.16: Don't clear zone 2b indicator segment when updating HRM reading.
|
||||||
|
Write to correct settings file, fixing settings not working.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
(function(back) {
|
(function(back) {
|
||||||
const SETTINGS_FILE = "run.json";
|
const SETTINGS_FILE = "runplus.json";
|
||||||
var ExStats = require("exstats");
|
var ExStats = require("exstats");
|
||||||
var statsList = ExStats.getList();
|
var statsList = ExStats.getList();
|
||||||
statsList.unshift({name:"-",id:""}); // add blank menu item
|
statsList.unshift({name:"-",id:""}); // add blank menu item
|
||||||
|
|
Loading…
Reference in New Issue