diff --git a/apps.json b/apps.json index 84fbc681b..8982726fe 100644 --- a/apps.json +++ b/apps.json @@ -363,14 +363,15 @@ { "id": "gpsrec", "name": "GPS Recorder", "icon": "app.png", - "version":"0.15", + "version":"0.16", "interface": "interface.html", "description": "Application that allows you to record a GPS track. Can run in background", "tags": "tool,outdoors,gps,widget", "storage": [ {"name":"gpsrec.app.js","url":"app.js"}, {"name":"gpsrec.img","url":"app-icon.js","evaluate":true}, - {"name":"gpsrec.wid.js","url":"widget.js"} + {"name":"gpsrec.wid.js","url":"widget.js"}, + {"name":"gpsrec.settings.js","url":"settings.js"} ], "data": [ {"name":"gpsrec.json"}, diff --git a/apps/gpsrec/ChangeLog b/apps/gpsrec/ChangeLog index b0d94f230..8c08a4ec5 100644 --- a/apps/gpsrec/ChangeLog +++ b/apps/gpsrec/ChangeLog @@ -17,3 +17,4 @@ Ensure default time period is 10 0.14: Now use the openstmap lib for map plotting 0.15: Add plotTrack method to allow current track to be plotted on a map (#395) + Add gpsrec app to Settings menu diff --git a/apps/gpsrec/settings.js b/apps/gpsrec/settings.js new file mode 100644 index 000000000..23a58d58f --- /dev/null +++ b/apps/gpsrec/settings.js @@ -0,0 +1,4 @@ +(function(back) { + // just go right to our app - we need all the memory + load("gpsrec.app.js"); +})();