fix: use current logo for all favicons
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 14s

This commit is contained in:
Kroonk
2026-05-21 22:59:55 +02:00
parent cde4035eb3
commit 705374cacd
13 changed files with 30 additions and 12 deletions

13
sw.js
View File

@@ -1,4 +1,4 @@
const CACHE_NAME = 'mischlabs-pwa-v12';
const CACHE_NAME = 'mischlabs-pwa-v13';
const APP_SHELL = [
'/',
'/index.html',
@@ -6,10 +6,13 @@ const APP_SHELL = [
'/style.css?v=27',
'/app.js?v=30',
'/services.json?v=1',
'/manifest.webmanifest?v=3',
'/icons/icon-192.png',
'/icons/icon-512.png',
'/icons/apple-touch-icon-v2.png'
'/manifest.webmanifest?v=4',
'/favicon.ico?v=4',
'/icons/favicon-32-v4.png',
'/icons/favicon-192-v4.png',
'/icons/favicon-512-v4.png',
'/icons/apple-touch-icon-v4.png',
'/icons/maskable-512-v4.png'
];
self.addEventListener('install', (event) => {