diff --git a/apps.json b/apps.json index 1a974340e..451ccf75c 100644 --- a/apps.json +++ b/apps.json @@ -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", diff --git a/apps/gpsrec/ChangeLog b/apps/gpsrec/ChangeLog index 37e74fb8b..668ce1991 100644 --- a/apps/gpsrec/ChangeLog +++ b/apps/gpsrec/ChangeLog @@ -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 diff --git a/apps/gpsrec/app.js b/apps/gpsrec/app.js index 962d63df4..3c0da22e2 100644 --- a/apps/gpsrec/app.js +++ b/apps/gpsrec/app.js @@ -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); }