mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-03-28 17:42:45 +01:00
The "purpose": "any maskable" property caused Android to apply adaptive icon treatment (circular/rounded square mask) to icons that were not designed with safe zones for maskable display. This resulted in the icon being incorrectly cropped on Android home screen. Removed maskable purpose while keeping useful PWA enhancements: - description field - categories - start_url and scope Icons now display correctly without cropping. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
24 lines
565 B
JSON
24 lines
565 B
JSON
{
|
|
"name": "mc-webui",
|
|
"short_name": "mc-webui",
|
|
"description": "Lightweight web interface for MeshCore mesh network chat",
|
|
"categories": ["communication", "utilities"],
|
|
"icons": [
|
|
{
|
|
"src": "/static/images/android-chrome-192x192.png",
|
|
"sizes": "192x192",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/static/images/android-chrome-512x512.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png"
|
|
}
|
|
],
|
|
"theme_color": "#0d6efd",
|
|
"background_color": "#ffffff",
|
|
"display": "standalone",
|
|
"start_url": "/",
|
|
"scope": "/"
|
|
}
|