diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2026-02-11 23:53:08 +0100 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2026-02-11 23:54:02 +0100 |
| commit | 3f8fb6fda07f97c9fd676cff67c637c0df0f7029 (patch) | |
| tree | 7f14827280b29c00b3f07cc5f2a19aa576fa90ef /src/frontend/public/manifest.webmanifest | |
| parent | 732ce7369344aadcd2f8d05b891bbbea9a5ca46d (diff) | |
Add new icons and SVG assets for the frontend
- Added icon-maskable-192.png and icon-maskable-512.png for application icons.
- Introduced icon-monochrome-256.png for monochrome icon representation.
- Created icon.svg for scalable vector graphics representation of the icon.
Diffstat (limited to 'src/frontend/public/manifest.webmanifest')
| -rw-r--r-- | src/frontend/public/manifest.webmanifest | 36 |
1 files changed, 30 insertions, 6 deletions
diff --git a/src/frontend/public/manifest.webmanifest b/src/frontend/public/manifest.webmanifest index 9df5a44..c487e4c 100644 --- a/src/frontend/public/manifest.webmanifest +++ b/src/frontend/public/manifest.webmanifest @@ -4,10 +4,16 @@ "name": "EnMarcha", "description": "Aplicación de transporte pública para Galicia. Consulta horarios, llegadas y rutas de trenes, autobuses interurbanos y distintos urbanos.", "short_name": "EnMarcha", - "start_url": "/", + "start_url": "https://enmarcha.app/", "display": "standalone", + "display_override": [ + "window-controls-overlay", + "standalone", + "browser" + ], "orientation": "portrait", "lang": "es", + "dir": "ltr", "background_color": "#27187D", "theme_color": "#27187D", "scope": "/", @@ -17,21 +23,39 @@ "prefer_related_applications": false, "icons": [ { - "src": "/icon-splash.png", + "src": "/icon-192.png", "type": "image/png", - "sizes": "any", + "sizes": "192x192", "purpose": "any" }, { - "src": "/icon-square.png", + "src": "/icon-512.png", + "type": "image/png", + "sizes": "512x512", + "purpose": "any" + }, + { + "src": "/icon.svg", + "type": "image/svg+xml", "sizes": "any", + "purpose": "any" + }, + { + "src": "/icon-maskable-192.png", "type": "image/png", + "sizes": "192x192", "purpose": "maskable" }, { - "src": "/icon-inverse.png", + "src": "/icon-maskable-512.png", "type": "image/png", - "sizes": "any", + "sizes": "512x512", + "purpose": "maskable" + }, + { + "src": "/icon-monochrome-256.png", + "type": "image/png", + "sizes": "256x256", "purpose": "monochrome" } ], |
