Properly Fix GPS time display in gpsrec app (fix #98)
parent
2775693936
commit
cea2c9f7ba
|
|
@ -247,7 +247,7 @@
|
|||
{ "id": "gpsrec",
|
||||
"name": "GPS Recorder",
|
||||
"icon": "app.png",
|
||||
"version":"0.03",
|
||||
"version":"0.04",
|
||||
"interface": "interface.html",
|
||||
"description": "Application that allows you to record a GPS track. Can run in background",
|
||||
"tags": "tool,outdoors,gps,widget",
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
0.01: New App!
|
||||
0.02: Fix GPS time logging
|
||||
0.03: Fix GPS time display in gpsrec app
|
||||
0.04: Properly 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(c[0]);
|
||||
trackTime = new Date(parseInt(c[0]));
|
||||
}
|
||||
while (l!==undefined) {
|
||||
trackCount++;
|
||||
|
|
@ -104,7 +104,6 @@ function viewTrack(n) {
|
|||
});
|
||||
};
|
||||
menu['< Back'] = viewTracks;
|
||||
print(menu);
|
||||
return E.showMenu(menu);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue