Update web app manifest; fix type errors
All checks were successful
Deploy to Server / deploy (push) Successful in 18s

This commit is contained in:
Joakim Hellsén 2026-03-19 19:39:27 +01:00
commit 79fb9b09c1
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
12 changed files with 135 additions and 72 deletions

View file

@ -1,19 +1,28 @@
{
"name": "ttvdrops",
"short_name": "ttvdrops",
"name": "ttvdrops.lovinator.space",
"short_name": "TTVDrops",
"description": "Track Twitch and Kick drops.",
"start_url": "/",
"scope": "/",
"display": "standalone",
"categories": [
"games",
"utilities"
],
"theme_color": "#0c227f",
"background_color": "#000000",
"icons": [
{
"src": "/android-chrome-192x192.png",
"src": "web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/android-chrome-512x512.png",
"src": "web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
]
}