Add gpsrec app to Settings menu
parent
4caa6786f5
commit
30f66a8775
|
|
@ -363,14 +363,15 @@
|
||||||
{ "id": "gpsrec",
|
{ "id": "gpsrec",
|
||||||
"name": "GPS Recorder",
|
"name": "GPS Recorder",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"version":"0.15",
|
"version":"0.16",
|
||||||
"interface": "interface.html",
|
"interface": "interface.html",
|
||||||
"description": "Application that allows you to record a GPS track. Can run in background",
|
"description": "Application that allows you to record a GPS track. Can run in background",
|
||||||
"tags": "tool,outdoors,gps,widget",
|
"tags": "tool,outdoors,gps,widget",
|
||||||
"storage": [
|
"storage": [
|
||||||
{"name":"gpsrec.app.js","url":"app.js"},
|
{"name":"gpsrec.app.js","url":"app.js"},
|
||||||
{"name":"gpsrec.img","url":"app-icon.js","evaluate":true},
|
{"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": [
|
"data": [
|
||||||
{"name":"gpsrec.json"},
|
{"name":"gpsrec.json"},
|
||||||
|
|
|
||||||
|
|
@ -17,3 +17,4 @@
|
||||||
Ensure default time period is 10
|
Ensure default time period is 10
|
||||||
0.14: Now use the openstmap lib for map plotting
|
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)
|
0.15: Add plotTrack method to allow current track to be plotted on a map (#395)
|
||||||
|
Add gpsrec app to Settings menu
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,4 @@
|
||||||
|
(function(back) {
|
||||||
|
// just go right to our app - we need all the memory
|
||||||
|
load("gpsrec.app.js");
|
||||||
|
})();
|
||||||
Loading…
Reference in New Issue