chore(release): v0.4.5

Branding + custom error pages: full favicon/PWA icon set wired into both
layouts, and branded bilingual error pages (403/404/419/429/500/503) replacing
Laravel's defaults with APP_DEBUG pinned off in prod — no raw status text or
stack traces. See CHANGELOG.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
feat/v1-foundation v0.4.5
boban 2026-06-14 15:37:25 +02:00
parent 0fcfd31305
commit 75dcfc11d3
3 changed files with 26 additions and 1 deletions

View File

@ -13,6 +13,26 @@ getaggte Releases (Kanal `stable`, optional `beta`) — niemals Entwicklungs-Bui
_Keine offenen Änderungen — der nächste Stand wird hier gesammelt und als `vX.Y.Z` getaggt._
## [0.4.5] - 2026-06-14
### Hinzugefügt
- **Favicons + PWA-Manifest.** Vollständiger Icon-Satz aus dem App-Brand-Mark (oranges
Server-Glyph auf Dunkel): `favicon.svg` (skalierbar), `favicon.ico` (16/32/48),
`apple-touch-icon.png`, `icon-192/512.png` und `site.webmanifest`. In beiden Layouts via
gemeinsames `partials/head-icons` eingebunden (incl. `theme-color`); nginx liefert das
Manifest als `application/manifest+json`.
- **Eigene Fehlerseiten.** Gebrandete, zweisprachige Seiten für 403/404/419/429/500/503 auf
einem eigenständigen Fehler-Layout (Design-Tokens, Brand-Mark) — ersetzen Laravels
Standard-Fehlerseiten. Es werden nie rohe Status-Texte oder Stacktraces gezeigt; in Prod ist
`APP_DEBUG` fest auf `false` gepinnt.
### Behoben
- **Roher Fehlertext beim Datei-Download.** Der Download-Fehler zeigte die unverpackte
Exception-Meldung; jetzt eine lokalisierte Meldung (`files.download_failed`), konsistent mit
Upload/Löschen.
- **Fehlerseiten-Sprache.** Früh geworfene Fehler (CSRF 419, gematchte Aborts) berücksichtigen
jetzt die Nutzersprache (locale-Auflösung im Exception-Hook, absturzsicher gekapselt).
## [0.4.4] - 2026-06-14
### Behoben

View File

@ -3,7 +3,7 @@
return [
// First tagged release is v0.1.0 (semantic, not -dev). The live build hash
// is resolved from .git at runtime (see App\Livewire\Versions\Index).
'version' => '0.4.4',
'version' => '0.4.5',
// Default user channel. Only 'stable' and 'beta' are ever offered to users.
'channel' => 'stable',

View File

@ -25,6 +25,11 @@ original foundational decisions doc (do not overwrite it).
- `v0.4.4` — stop iOS zoom-on-focus: one unlayered `@media (pointer: coarse)` rule in `app.css`
forces 16px on `input`/`textarea`/`select` on touch devices (phone + tablet any size), desktop
sizing unchanged.
- `v0.4.5` — branding: full favicon/PWA set (`public/favicon.*`, `icon-192/512`,
`site.webmanifest`) from the orange server brand-mark, wired via `partials/head-icons`; custom
bilingual error pages (`resources/views/errors/*` + `lang/errors.php`) replacing Laravel's
defaults, prod `APP_DEBUG=false` pinned, no raw error text. NOTE: unmatched-404 + 503 render in
the DE default (no session pre-StartSession) — deliberate per R16, custom message still shows.
- **Dev stack** runs on this VM via `docker compose` (app container IP **172.18.0.6**, host
`10.10.90.136:80`). Managed fleet host = **10.10.90.162** (Debian / apt / ufw; the only
live-verified target — dnf/zypper/firewalld command strings are built but not live-tested).