1
0
Fork 0

Add gpsrec app to Settings menu

master
Gordon Williams 2020-12-08 16:10:23 +00:00
parent 4caa6786f5
commit 30f66a8775
3 changed files with 8 additions and 2 deletions

View File

@ -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"},

View File

@ -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

4
apps/gpsrec/settings.js Normal file
View File

@ -0,0 +1,4 @@
(function(back) {
// just go right to our app - we need all the memory
load("gpsrec.app.js");
})();