runplus - Fix typo in variable name preventing starting a run

pull/2624/head
Martin Boonk 2023-03-01 12:01:13 +01:00
parent a030f607cc
commit 59d252de8f
3 changed files with 3 additions and 2 deletions

View File

@ -17,3 +17,4 @@
Keep run state between runs (allowing you to exit and restart the app) Keep run state between runs (allowing you to exit and restart the app)
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. Write to correct settings file, fixing settings not working.
0.17: Fix typo in variable name preventing starting a run

View File

@ -124,7 +124,7 @@ lc.push({ type:"h", filly:1, c:[
// Now calculate the layout // Now calculate the layout
let layout = new Layout( { let layout = new Layout( {
type:"v", c: lc type:"v", c: lc
},{lazy:true, btns:[{ label:"---", cb: ()=>{if (karvonnenActive) {stopKarvonnenUI();run();} onStartStop();}, id:"button"}]}); },{lazy:true, btns:[{ label:"---", cb: (()=>{if (karvonenActive) {stopKarvonnenUI();run();} onStartStop();}), id:"button"}]});
delete lc; delete lc;
setStatus(exs.state.active); setStatus(exs.state.active);
layout.render(); layout.render();

View File

@ -1,7 +1,7 @@
{ {
"id": "runplus", "id": "runplus",
"name": "Run+", "name": "Run+",
"version": "0.16", "version": "0.17",
"description": "Displays distance, time, steps, cadence, pace and more for runners. Based on the Run app, but extended with additional screen for heart rate interval training.", "description": "Displays distance, time, steps, cadence, pace and more for runners. Based on the Run app, but extended with additional screen for heart rate interval training.",
"icon": "app.png", "icon": "app.png",
"tags": "run,running,fitness,outdoors,gps,karvonen,karvonnen", "tags": "run,running,fitness,outdoors,gps,karvonen,karvonnen",