bump version, fix typo

pull/2620/head
thyttan 2023-03-01 15:49:23 +01:00
parent d5c85f1654
commit b365159f2b
3 changed files with 5 additions and 3 deletions

View File

@ -17,4 +17,6 @@
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 0.17: Fix typo in variable name preventing starting a run.
0.18: Tweak HRM min/max defaults. Extend min/max intervals in settings. Fix
another typo.

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 (karvonenActive) {stopKarvonnenUI();run();} onStartStop();}), id:"button"}]}); },{lazy:true, btns:[{ label:"---", cb: (()=>{if (karvonenActive) {stopKarvonenUI();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.17", "version": "0.18",
"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",