From 3f8fb6fda07f97c9fd676cff67c637c0df0f7029 Mon Sep 17 00:00:00 2001 From: Ariel Costas Guerrero Date: Wed, 11 Feb 2026 23:53:08 +0100 Subject: 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. --- src/frontend/public/manifest.webmanifest | 36 ++++++++++++++++++++++++++------ 1 file changed, 30 insertions(+), 6 deletions(-) (limited to 'src/frontend/public/manifest.webmanifest') 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" } ], -- cgit v1.3