release v0.5.1

This commit is contained in:
Christian Beutel
2024-05-05 16:26:30 +02:00
parent 756a9fa79f
commit 24cec4e42a
13 changed files with 14 additions and 13 deletions

4
web/package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "wanderer",
"version": "0.5.0",
"version": "0.5.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "wanderer",
"version": "0.5.0",
"version": "0.5.1",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@sveltejs/adapter-node": "^4.0.1",

View File

@@ -1,6 +1,6 @@
{
"name": "wanderer",
"version": "0.5.0",
"version": "0.5.1",
"private": true,
"scripts": {
"dev": "vite dev",

View File

@@ -95,5 +95,5 @@
d="M43.857 43.3045C44.0569 43.0652 44.4246 43.0652 44.6245 43.3045L46.6259 45.7008C46.8978 46.0263 46.6663 46.5213 46.2421 46.5213H42.2394C41.8152 46.5213 41.5837 46.0263 41.8556 45.7008L43.857 43.3045Z"
fill="#242734"
/>
<text x="178" y="64" fill="white" font-size="0.75rem">v0.5.0</text>
<text x="178" y="64" fill="white" font-size="0.75rem">v0.5.1</text>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View File

@@ -40,7 +40,6 @@
"display-as": "Anzeigen als",
"distance": "Distanz",
"documentation": "Dokumentation",
"download-gpx": "GPX herunterladen",
"draw-a-route": "Route zeichnen",
"driving": "Auto",
"dutch": "Niederländisch",

View File

@@ -40,7 +40,6 @@
"display-as": "Display as",
"distance": "Distance",
"documentation": "Documentation",
"download-gpx": "Download GPX",
"draw-a-route": "Draw a route",
"driving": "Driving",
"dutch": "Dutch",

View File

@@ -40,7 +40,6 @@
"display-as": "Afficher en tant que",
"distance": "Distance",
"documentation": "Documentation",
"download-gpx": "Télécharger le GPX",
"draw-a-route": "",
"driving": "",
"dutch": "Néerlandais",

View File

@@ -40,7 +40,6 @@
"display-as": "Megjelenítés mint",
"distance": "Távolság",
"documentation": "Dokumentáció",
"download-gpx": "GPX letöltése",
"draw-a-route": "",
"driving": "",
"dutch": "Holland",

View File

@@ -40,7 +40,6 @@
"display-as": "Tonen als",
"distance": "Afstand",
"documentation": "Documentatie",
"download-gpx": "GPX-bestand downloaden",
"draw-a-route": "",
"driving": "",
"dutch": "Nederlands",

View File

@@ -40,7 +40,6 @@
"display-as": "Wyświetl jako",
"distance": "Dystans",
"documentation": "Dokumentacja",
"download-gpx": "Popierz GPX",
"draw-a-route": "",
"driving": "",
"dutch": "Niderlandzki",

View File

@@ -40,7 +40,6 @@
"display-as": "Exibir como",
"distance": "Distância",
"documentation": "Documentação",
"download-gpx": "Baixar GPX",
"draw-a-route": "",
"driving": "",
"dutch": "Holandês",

View File

@@ -40,7 +40,6 @@
"display-as": "显示方式",
"distance": "距离",
"documentation": "文档",
"download-gpx": "下载 GPX",
"draw-a-route": "",
"driving": "",
"dutch": "荷兰语",

View File

@@ -42,7 +42,7 @@ export async function gpx2trail(gpxString: string) {
const startTime = trackPoints?.at(0)?.time;
const endTime = trackPoints?.at((trackPoints?.length ?? 1) - 1)?.time
if (startTime && endTime && !trail.date) {
if (startTime && endTime) {
trail.date = startTime.toISOString()
.substring(0, 10);
}