waypoints: mark this as 0.05 version

pull/3659/head
Pavel Machek 2024-11-13 12:53:52 +01:00
parent 5219dc25df
commit 93076f12d5
3 changed files with 4 additions and 4 deletions

View File

@ -3,3 +3,4 @@
0.03: Do not register as type waypoint - show in launcher
Fixes for Bangle.js 1 & not installed textinput
0.04: Minor code improvements
0.05: Implement navigation to waypoint

View File

@ -1,6 +1,6 @@
{ "id": "waypoints",
"name": "Waypoints",
"version": "0.04",
"version": "0.05",
"description": "Provides 'waypoints.json' used by various navigation apps, as well as a way to edit it from the App Loader or from the device",
"icon": "app.png",
"tags": "tool,outdoors,gps",

View File

@ -502,7 +502,7 @@ function goTo() {
Bangle.setGPSPower(1, "waypoints");
gps.gps_start = getTime();
gps_start = getTime();
var la = new Layout (
{type:"v", c: [
{type:"txt", font:"15%", pad:1, fillx:1, filly:1, label:""},
@ -515,7 +515,6 @@ function goTo() {
g.clear();
la.render();
updateGoto();
}
@ -524,7 +523,7 @@ function show(pin) {
var l = fmt.fmtPos(i);
arrow.name = i.name;
arrow.waypoint = i;
var la = new Layout (
{type:"v", c: [
{type:"txt", font:"15%", pad:1, fillx:1, filly:1, label:arrow.name },