feat: enhance PWA manifest with multi-size icons, window controls overlay, and German locale settings

Add id "/" and lang "de" fields to manifest.json. Add display_override with window-controls-overlay/standalone options and prefer_related_applications:false. Replace single media-mark.svg icon with 192x192 and 512x512 sized variants (media-mark-192.svg, media-mark-512.svg) containing gradient background, yellow strokes, and green circle with glow filter. Update service worker cache to v3 with scope "/" parameter
This commit is contained in:
2026-08-16 13:05:48 +02:00
parent c2df06dda8
commit 62d19c26a1
5 changed files with 11 additions and 3 deletions
+6 -1
View File
@@ -1,14 +1,19 @@
{
"name": "Media Max",
"short_name": "Media Max",
"id": "/",
"lang": "de",
"description": "Media Max: Radarr, Sonarr und SABnzbd im Überblick",
"start_url": "/",
"scope": "/",
"display": "standalone",
"display_override": ["window-controls-overlay", "standalone"],
"prefer_related_applications": false,
"background_color": "#151619",
"theme_color": "#1f252d",
"orientation": "any",
"icons": [
{"src": "/static/media-mark.svg", "sizes": "any", "type": "image/svg+xml", "purpose": "any maskable"}
{"src": "/static/media-mark-192.svg", "sizes": "192x192", "type": "image/svg+xml", "purpose": "any maskable"},
{"src": "/static/media-mark-512.svg", "sizes": "512x512", "type": "image/svg+xml", "purpose": "any maskable"}
]
}