From aea2bff9db64f2ed90f2d6c27c653cdec89df797 Mon Sep 17 00:00:00 2001 From: Cormac Wilson Date: Thu, 23 Apr 2026 21:39:37 +0100 Subject: [PATCH] [code] updated manifest.json with correct icon properties and also changed ordering of icons in header to ensure that more high res .svg is chosen over lower res .ico file. --- html/home.html | 2 +- html/login.html | 2 +- html/transport.html | 2 +- manifest.json | 27 +++++++++++++-------------- 4 files changed, 16 insertions(+), 17 deletions(-) diff --git a/html/home.html b/html/home.html index 8c1ac3d..4bf3378 100644 --- a/html/home.html +++ b/html/home.html @@ -4,8 +4,8 @@ Home | Kube - + diff --git a/html/login.html b/html/login.html index bf06a98..cb7bcee 100644 --- a/html/login.html +++ b/html/login.html @@ -4,8 +4,8 @@ Login | Kube - + diff --git a/html/transport.html b/html/transport.html index e05bd9b..9d4b0f3 100644 --- a/html/transport.html +++ b/html/transport.html @@ -4,8 +4,8 @@ Transport | Kube - + diff --git a/manifest.json b/manifest.json index 6f54831..3176981 100644 --- a/manifest.json +++ b/manifest.json @@ -3,20 +3,19 @@ "name": "Kube", "lang": "en-GB", "icons": [ - { - "src": "/favicon-192x192.png", - "sizes": "192x192", - "type": "image/png", - "purpose": "maskable" - }, - { - "src": "/favicon-512x512.png", - "sizes": "512x512", - "type": "image/png", - "purpose": "maskable" - } - ], - + { + "src": "/assets/images/favicon-192x192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/assets/images/favicon-512x512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } +], "id": "/", "start_url": "/", "background_color": "#000000",