diff --git a/apps/run/ChangeLog b/apps/run/ChangeLog index af75a9aee..ba46d9d06 100644 --- a/apps/run/ChangeLog +++ b/apps/run/ChangeLog @@ -17,4 +17,3 @@ 0.16: Added ability to resume a run that was stopped previously (fix #1907) 0.17: Ensure screen redraws after "Resume run?" menu (#3044) 0.18: Minor code improvements -0.19: Fix step count bug when runs are resumed after a long time diff --git a/apps/run/metadata.json b/apps/run/metadata.json index 99296180d..3b1c42e0c 100644 --- a/apps/run/metadata.json +++ b/apps/run/metadata.json @@ -1,6 +1,6 @@ { "id": "run", "name": "Run", - "version": "0.19", + "version": "0.18", "description": "Displays distance, time, steps, cadence, pace and more for runners.", "icon": "app.png", "tags": "run,running,fitness,outdoors,gps", diff --git a/apps/runplus/ChangeLog b/apps/runplus/ChangeLog index 8e9b7385b..3c8cd0f74 100644 --- a/apps/runplus/ChangeLog +++ b/apps/runplus/ChangeLog @@ -24,5 +24,4 @@ Write to correct settings file, fixing settings not working. 0.21: Rebase on "Run" app ver. 0.16. 0.22: Ensure screen redraws after "Resume run?" menu (#3044) 0.23: Minor code improvements -0.24: Add indicators for lock,gps and pulse to karvonen screen -0.25: Fix step count bug when runs are resumed after a long time +0.24: Add indicators for lock,gps and pulse to karvonen screen \ No newline at end of file diff --git a/apps/runplus/metadata.json b/apps/runplus/metadata.json index 415194f7a..8b3703810 100644 --- a/apps/runplus/metadata.json +++ b/apps/runplus/metadata.json @@ -1,7 +1,7 @@ { "id": "runplus", "name": "Run+", - "version": "0.25", + "version": "0.24", "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", "tags": "run,running,fitness,outdoors,gps,karvonen,karvonnen", diff --git a/modules/exstats.js b/modules/exstats.js index 5cd0374a7..28879ccfe 100644 --- a/modules/exstats.js +++ b/modules/exstats.js @@ -102,7 +102,6 @@ var stats = {}; const DATA_FILE = "exstats.json"; // Load the state from a saved file if there was one state = Object.assign(state, require("Storage").readJSON(DATA_FILE,1)||{}); -state.startSteps = Bangle.getStepCount() - (state.lastSteps - state.startSteps); // force step history to a uint8array state.stepHistory = new Uint8Array(state.stepHistory); // when we exit, write the current state