Fix GPS time display in gpsrec app (fix #98)
parent
39c23d0654
commit
f7024407de
|
|
@ -247,7 +247,7 @@
|
|||
{ "id": "gpsrec",
|
||||
"name": "GPS Recorder",
|
||||
"icon": "app.png",
|
||||
"version":"0.01",
|
||||
"version":"0.03",
|
||||
"interface": "interface.html",
|
||||
"description": "Application that allows you to record a GPS track. Can run in background",
|
||||
"tags": "tool,outdoors,gps,widget",
|
||||
|
|
|
|||
|
|
@ -1,2 +1,3 @@
|
|||
0.01: New App!
|
||||
0.02: Fix GPS time logging
|
||||
0.03: Fix GPS time display in gpsrec app
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@ function viewTrack(n) {
|
|||
var l = f.readLine();
|
||||
if (l!==undefined) {
|
||||
var c = l.split(",");
|
||||
trackTime = new Date(0|c[0]);
|
||||
trackTime = new Date(c[0]);
|
||||
}
|
||||
while (l!==undefined) {
|
||||
trackCount++;
|
||||
|
|
|
|||
Loading…
Reference in New Issue