diff --git a/apps.json b/apps.json index 148120854..cc21f3115 100644 --- a/apps.json +++ b/apps.json @@ -470,7 +470,7 @@ { "id": "gpsrec", "name": "GPS Recorder", "icon": "app.png", - "version":"0.21", + "version":"0.22", "interface": "interface.html", "description": "Application that allows you to record a GPS track. Can run in background", "tags": "tool,outdoors,gps,widget", diff --git a/apps/gpsrec/ChangeLog b/apps/gpsrec/ChangeLog index e3360d67b..289fb38d6 100644 --- a/apps/gpsrec/ChangeLog +++ b/apps/gpsrec/ChangeLog @@ -23,3 +23,4 @@ 0.19: Fix memory usage issues inside track viewer app 0.20: Add documentation to explain time needed for getting a time fix 0.21: Fix issue where a period of 1s recorded every 2s, 5s every 6s, and so on +0.22: Ensure Bangle.setGPSPower uses 'gpsrec' as a tag diff --git a/apps/gpsrec/widget.js b/apps/gpsrec/widget.js index cbc244a96..3d22373ec 100644 --- a/apps/gpsrec/widget.js +++ b/apps/gpsrec/widget.js @@ -69,7 +69,7 @@ gpsTrack = undefined; } if (gOn != gpsOn) { - Bangle.setGPSPower(gOn); + Bangle.setGPSPower(gOn,"gpsrec"); gpsOn = gOn; } }