All checks were successful
Deploy baustelle-pwa / deploy (push) Successful in 1s
Verschiedene Android-Gallery-Apps senden geteilte Bilder unter unterschiedlichen Feldnamen — photos, file, files, image, images. - Manifest listet jetzt alle drei Haupt-Feldnamen mit image/* accept - Service Worker iteriert alle bekannten Keys UND macht einen Fallback über alle FormData-Entries für unbekannte Gallery-Apps - Cache-Version v6 damit Browser Manifest neu liest Wichtig: PWA muss nach diesem Update einmal deinstalliert und neu installiert werden, damit Android das neue share_target registriert. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> [deploy]
31 lines
1 KiB
JSON
31 lines
1 KiB
JSON
{
|
|
"name": "Baustelle — Bericht-Doku",
|
|
"short_name": "Baustelle",
|
|
"description": "Mobile Doku für Baustellen — Fotos, Sprachnotizen, Skizzen",
|
|
"start_url": "./",
|
|
"scope": "./",
|
|
"display": "standalone",
|
|
"orientation": "portrait",
|
|
"background_color": "#1a1a1f",
|
|
"theme_color": "#1a1a1f",
|
|
"lang": "de",
|
|
"icons": [
|
|
{ "src": "icons/icon-192.png", "sizes": "192x192", "type": "image/png", "purpose": "any maskable" },
|
|
{ "src": "icons/icon-512.png", "sizes": "512x512", "type": "image/png", "purpose": "any maskable" }
|
|
],
|
|
"share_target": {
|
|
"action": "./share.html",
|
|
"method": "POST",
|
|
"enctype": "multipart/form-data",
|
|
"params": {
|
|
"title": "title",
|
|
"text": "text",
|
|
"url": "url",
|
|
"files": [
|
|
{ "name": "photos", "accept": ["image/*"] },
|
|
{ "name": "file", "accept": ["image/*"] },
|
|
{ "name": "files", "accept": ["image/*"] }
|
|
]
|
|
}
|
|
}
|
|
}
|