From c234b87dea2f6137930f7ad95387ebea00c60041 Mon Sep 17 00:00:00 2001 From: Tobi G Date: Mon, 24 Aug 2026 22:43:04 +0200 Subject: [PATCH] Einzelfahrt: Dauer in Std./Min. statt roher Minutenzahl vTrip() zeigte "75 min" statt der bereits vorhandenen dauerText()-Formatierung ("1 Std. 15 Min."), die jede andere Dauer im Panel schon verwendet. Co-Authored-By: Claude Sonnet 5 --- custom_components/audi_dashboard/frontend/audi-dashboard-app.js | 2 +- custom_components/audi_dashboard/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/audi_dashboard/frontend/audi-dashboard-app.js b/custom_components/audi_dashboard/frontend/audi-dashboard-app.js index 0e51238..8bf7cf1 100644 --- a/custom_components/audi_dashboard/frontend/audi-dashboard-app.js +++ b/custom_components/audi_dashboard/frontend/audi-dashboard-app.js @@ -3057,7 +3057,7 @@ function vTrip(id) {
Zielort
${esc(t.end_address || "unbekannt")}
Startkilometer
${t.odo_start != null ? de(t.odo_start) + " km" : "noch offen"}
Endkilometer
${t.odo_end != null ? de(t.odo_end) + " km" : "noch offen"}
-
Dauer
${Math.round(t.duration_s / 60)} min
+
Dauer
${dauerText(t.duration_s)}
Verbrauch
${fahrtVerbrauch(t) != null ? de(fahrtVerbrauch(t), 1) + " l/100 km" : "liegt nicht vor"}vom Fahrzeug gemeldet
Status
${t.status}Quelle: ${t.km_quelle || "–"}
diff --git a/custom_components/audi_dashboard/manifest.json b/custom_components/audi_dashboard/manifest.json index e82d40b..3f1175e 100644 --- a/custom_components/audi_dashboard/manifest.json +++ b/custom_components/audi_dashboard/manifest.json @@ -1,7 +1,7 @@ { "domain": "audi_dashboard", "name": "Audi Dashboard", - "version": "2026.8.24.14", + "version": "2026.8.24.15", "documentation": "https://gitea.nothaft.cloud/paul/audi-app/src/branch/main/README.md", "issue_tracker": "https://gitea.nothaft.cloud/paul/audi-app/issues", "codeowners": ["@paul"],