mirror of
https://github.com/we-promise/sure
synced 2026-04-25 17:15:07 +02:00
* fix: Update PWA icons to use current logo (#997) Replace outdated android-chrome-192x192.png and logo-pwa.png with the current logo. The old icons showed the previous branding (cyan border / old logomark) which appeared when creating web shortcuts on smartphones. Also add the 192x192 icon entry to the PWA manifest for better Android home screen icon support. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: Replace transparent background with solid #F9F9F9 in 192x192 PWA icon The android-chrome-192x192.png had an RGBA transparent background which can cause display issues on Android home-screen shortcuts. Regenerated with a solid #F9F9F9 background to match theme_color/background_color in the PWA manifest and the 512x512 icon. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
715 B
Plaintext
31 lines
715 B
Plaintext
{
|
|
"name": "<%= j product_name %>",
|
|
"short_name": "<%= j product_name %>",
|
|
"icons": [
|
|
{
|
|
"src": "/android-chrome-192x192.png",
|
|
"type": "image/png",
|
|
"sizes": "192x192"
|
|
},
|
|
{
|
|
"src": "/logo-pwa.png",
|
|
"type": "image/png",
|
|
"sizes": "512x512"
|
|
},
|
|
{
|
|
"src": "/logo-pwa.png",
|
|
"type": "image/png",
|
|
"sizes": "512x512",
|
|
"purpose": "maskable"
|
|
}
|
|
],
|
|
"start_url": "/",
|
|
"display": "standalone",
|
|
"display_override": ["window-controls-overlay", "minimal-ui"],
|
|
"scope": "/",
|
|
"orientation": "any",
|
|
"description": "<%= j product_name %> is your personal finance assistant.",
|
|
"theme_color": "#F9F9F9",
|
|
"background_color": "#F9F9F9"
|
|
}
|