diff --git a/companion-app/src/screens/Einstellungen.tsx b/companion-app/src/screens/Einstellungen.tsx index 7ce61c3..0d70ca2 100644 --- a/companion-app/src/screens/Einstellungen.tsx +++ b/companion-app/src/screens/Einstellungen.tsx @@ -848,14 +848,7 @@ export function Einstellungen({ ) : ( <> - {integrationUpdate && ( - - aktuell - {integrationUpdate.geprueft_am && ( - geprüft {datumZeit(integrationUpdate.geprueft_am)} - )} - - )} + {integrationUpdate && aktuell} )} {updateAktionFehler &&

{updateAktionFehler}

} @@ -932,6 +925,15 @@ export function Einstellungen({ {updatePruefenLaeuft ? "Prüfe …" : "Auf Update prüfen"} + {/* Der Zeitpunkt gehört zum Suchvorgang, nicht zu einem der beiden + Abschnitte - er stand bis zum 05.09.2026 an der grünen Marke der + Integration und sah dort aus, als gälte er nur für sie, obwohl der + Knopf für die ganze Kachel steht (vom Eigentümer bemerkt). */} + {integrationUpdate?.geprueft_am && ( + + Zuletzt geprüft {datumZeit(integrationUpdate.geprueft_am)} + + )} {/* Debug-Mode: Zugaenge, Dongle und der letzte Datensatz des Geraets. diff --git a/custom_components/audi_dashboard/frontend/app/bundle.json b/custom_components/audi_dashboard/frontend/app/bundle.json index d520c8c..8486c88 100644 --- a/custom_components/audi_dashboard/frontend/app/bundle.json +++ b/custom_components/audi_dashboard/frontend/app/bundle.json @@ -1 +1 @@ -{"version":"2026.9.5.33","sha256":"e3a92c96b285cead31164f0c91562e6d951c547cf15f1a70095d297a0be6e343","bytes":324618,"gebaut":"2026-09-05T14:27:56Z"} \ No newline at end of file +{"version":"2026.9.5.34","sha256":"0de4c2af3534ef74c4bda98de122419e2f4d4c2741a175e73722d757344a3f6b","bytes":324629,"gebaut":"2026-09-05T14:40:28Z"} \ No newline at end of file diff --git a/custom_components/audi_dashboard/frontend/app/bundle.zip b/custom_components/audi_dashboard/frontend/app/bundle.zip index a894ac8..e546fcf 100644 Binary files a/custom_components/audi_dashboard/frontend/app/bundle.zip and b/custom_components/audi_dashboard/frontend/app/bundle.zip differ diff --git a/custom_components/audi_dashboard/frontend/audi-dashboard-app.js b/custom_components/audi_dashboard/frontend/audi-dashboard-app.js index 505db4b..d77a870 100644 --- a/custom_components/audi_dashboard/frontend/audi-dashboard-app.js +++ b/custom_components/audi_dashboard/frontend/audi-dashboard-app.js @@ -3778,8 +3778,7 @@ function vEinst() {
${esc(u.version)}${u.geprueft_am ? `geprüft ${dezeitpunkt(new Date(u.geprueft_am))}` : ""}
`; } - return u ? `aktuell${u.geprueft_am - ? `geprüft ${dedat(new Date(u.geprueft_am))}` : ""}` : ""; + return u ? `aktuell` : ""; })()} ${INTEGRATION_UPDATE && INTEGRATION_UPDATE.fehler && !INTEGRATION_UPDATE_LAEUFT ? `${esc(INTEGRATION_UPDATE.fehler)}` @@ -3790,6 +3789,11 @@ function vEinst() { ueberhaupt auffrischen liess, solange ein Update angeboten wurde. Das eruebrigt sich so. Wortgleich mit der App (Einstellungen.tsx). --> + + ${INTEGRATION_UPDATE && INTEGRATION_UPDATE.geprueft_am + ? `Zuletzt geprüft ${dezeitpunkt(new Date(INTEGRATION_UPDATE.geprueft_am))}` + : ""}