übersicht: bei Arcane die Zahl der Images nennen („11 Images“ statt „Images“); frontend: dist gebaut

Co-Authored-By: Claude Opus 5.5 <noreply@anthropic.com>
This commit is contained in:
Hitonabi
2026-09-25 10:35:19 +02:00
co-authored by Claude Opus 5.5
parent 67ed0458a9
commit 5fcac05642
20 changed files with 27 additions and 24 deletions
+2 -2
View File
@@ -21,7 +21,7 @@ function wartetText(b: BausteinStand): string | null {
return null
}
/** „App → 0.79.0 (ab 26.09. 08:06)“, „48 Pakete“, „Images“ — was an einem Gerät ansteht. */
/** „App → 0.79.0 (ab 26.09. 08:06)“, „48 Pakete“, „11 Images“ — was an einem Gerät ansteht. */
export function kurzform(ziel: ZielStand): KurzZeile | null {
const neu = ziel.bausteine.filter((b) => b.zustand === "neu")
if (neu.length === 0) return null
@@ -32,7 +32,7 @@ export function kurzform(ziel: ZielStand): KurzZeile | null {
teile.push(`App → ${app.verfuegbar ?? "neu"}${w ? ` (${w})` : ""}`)
}
const sys = systemBaustein(ziel)
if (sys?.zustand === "neu") teile.push(sys.id === "docker" ? "Images" : sys.kurz || "Pakete")
if (sys?.zustand === "neu") teile.push(sys.kurz || (sys.id === "docker" ? "Images" : "Pakete"))
// KI-Box: Bausteine heißen selbst (Betriebssystem, Hermes, Motor …).
for (const b of neu) {
if (b === app || b === sys) continue