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
@@ -12,6 +12,7 @@ COPY admin.js /app/public/
|
||||
COPY services.json /app/public/
|
||||
COPY manifest.webmanifest /app/public/
|
||||
COPY sw.js /app/public/
|
||||
COPY favicon.ico /app/public/
|
||||
COPY icons/ /app/public/icons/
|
||||
|
||||
ENV NODE_ENV=production
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
<title>MischLabs Admin</title>
|
||||
<meta name="description" content="MischLabs dashboard administration.">
|
||||
<meta name="theme-color" content="#0f172a">
|
||||
<link rel="manifest" href="/manifest.webmanifest?v=4">
|
||||
<link rel="shortcut icon" href="/favicon.ico?v=4">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32-v4.png">
|
||||
<link rel="icon" type="image/png" sizes="48x48" href="/icons/favicon-48-v4.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/icons/favicon-192-v4.png">
|
||||
<link rel="apple-touch-icon" href="/icons/apple-touch-icon-v4.png">
|
||||
<link rel="stylesheet" href="/style.css?v=27">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
BIN
favicon.ico
Normal file
|
After Width: | Height: | Size: 768 B |
BIN
icons/apple-touch-icon-v4.png
Normal file
|
After Width: | Height: | Size: 48 KiB |
BIN
icons/favicon-192-v4.png
Normal file
|
After Width: | Height: | Size: 54 KiB |
BIN
icons/favicon-32-v4.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
icons/favicon-48-v4.png
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
BIN
icons/favicon-512-v4.png
Normal file
|
After Width: | Height: | Size: 352 KiB |
BIN
icons/maskable-512-v4.png
Normal file
|
After Width: | Height: | Size: 352 KiB |
10
index.html
@@ -9,10 +9,12 @@
|
||||
<meta name="apple-mobile-web-app-capable" content="yes">
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
|
||||
<meta name="apple-mobile-web-app-title" content="MischLabs">
|
||||
<link rel="manifest" href="/manifest.webmanifest?v=3">
|
||||
<link rel="apple-touch-icon" href="/icons/apple-touch-icon-v2.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/icons/icon-192.png">
|
||||
<link rel="icon" type="image/png" sizes="512x512" href="/icons/icon-512.png">
|
||||
<link rel="manifest" href="/manifest.webmanifest?v=4">
|
||||
<link rel="shortcut icon" href="/favicon.ico?v=4">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32-v4.png">
|
||||
<link rel="icon" type="image/png" sizes="48x48" href="/icons/favicon-48-v4.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/icons/favicon-192-v4.png">
|
||||
<link rel="apple-touch-icon" href="/icons/apple-touch-icon-v4.png">
|
||||
<link rel="stylesheet" href="style.css?v=27">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
@@ -12,19 +12,19 @@
|
||||
"categories": ["productivity", "utilities"],
|
||||
"icons": [
|
||||
{
|
||||
"src": "/icons/icon-192.png?v=2",
|
||||
"src": "/icons/favicon-192-v4.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/icons/icon-512.png?v=2",
|
||||
"src": "/icons/favicon-512-v4.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/icons/maskable-512.png?v=2",
|
||||
"src": "/icons/maskable-512-v4.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
|
||||
@@ -5,6 +5,12 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>MischLabs - Offline</title>
|
||||
<meta name="theme-color" content="#0f172a">
|
||||
<link rel="manifest" href="/manifest.webmanifest?v=4">
|
||||
<link rel="shortcut icon" href="/favicon.ico?v=4">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/icons/favicon-32-v4.png">
|
||||
<link rel="icon" type="image/png" sizes="48x48" href="/icons/favicon-48-v4.png">
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/icons/favicon-192-v4.png">
|
||||
<link rel="apple-touch-icon" href="/icons/apple-touch-icon-v4.png">
|
||||
<link rel="stylesheet" href="/style.css?v=13">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
13
sw.js
@@ -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) => {
|
||||
|
||||