Properly Fix GPS time display in gpsrec app (fix #98)

master
Gordon Williams 2020-02-25 14:01:40 +00:00
parent 2775693936
commit cea2c9f7ba
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

@ -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);
}