-
-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fda9ef9
commit 648ebad
Showing
2 changed files
with
25 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
v4.9.0: OpenTracks | ||
|
||
NOTE: BREAKING CHANGE | ||
|
||
This release changes how OpenTracks determines moving and not moving. | ||
Until now, the speed (GPS or sensor) was used by a applying a threshold (e.g., less than 0.3 m/s). | ||
However, this may be very noise. | ||
From now on, a timeout duration is used (i.e., no significant change of position in the last X seconds). | ||
This duration is user configurable. | ||
The events of becoming idle are stored in the database incl. a timestamp, so statistics can be re-computed. | ||
|
||
A downgrade from this version is not implemented. | ||
Please backup all before upgrading. | ||
|
||
Changes: | ||
- Idle detection uses "no movement" duration rather than speed too low | ||
- Added scooter activity | ||
|
||
Bugfix: | ||
- While recording, TrackList showed all tracks as recording | ||
|
||
Developer: | ||
- Re-enabled Github action executing tests |