mirror of https://github.com/espruino/BangleApps
0.22: Ensure Bangle.setGPSPower uses 'gpsrec' as a tag
parent
fcc6a234d7
commit
3979665634
|
@ -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",
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -69,7 +69,7 @@
|
|||
gpsTrack = undefined;
|
||||
}
|
||||
if (gOn != gpsOn) {
|
||||
Bangle.setGPSPower(gOn);
|
||||
Bangle.setGPSPower(gOn,"gpsrec");
|
||||
gpsOn = gOn;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue