Bump iOS PWA icon filename
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 10s
All checks were successful
Build & Push Docker Image to Gitea Registry / build-and-push (push) Successful in 10s
This commit is contained in:
3
Brain.md
3
Brain.md
@@ -92,7 +92,8 @@ mischlabs/
|
||||
- `background_color`: #0a0a0f
|
||||
- Icons:
|
||||
- `icons/app-icon-source.png` (1024x1024, quadratischer Ausschnitt aus dem MischLabs-Bild)
|
||||
- `icons/apple-touch-icon.png` (180x180)
|
||||
- `icons/apple-touch-icon-v2.png` (180x180, frischer Dateiname gegen iOS-Icon-Cache)
|
||||
- `icons/apple-touch-icon.png` (180x180, alte Kompatibilitaetskopie)
|
||||
- `icons/icon-192.png` (192x192)
|
||||
- `icons/icon-512.png` (512x512)
|
||||
- `icons/maskable-512.png` (512x512, maskable)
|
||||
|
||||
BIN
icons/apple-touch-icon-v2.png
Normal file
BIN
icons/apple-touch-icon-v2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
@@ -9,8 +9,8 @@
|
||||
<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">
|
||||
<link rel="apple-touch-icon" href="/icons/apple-touch-icon.png">
|
||||
<link rel="manifest" href="/manifest.webmanifest?v=2">
|
||||
<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="stylesheet" href="style.css?v=8">
|
||||
|
||||
@@ -12,23 +12,22 @@
|
||||
"categories": ["productivity", "utilities"],
|
||||
"icons": [
|
||||
{
|
||||
"src": "/icons/icon-192.png",
|
||||
"src": "/icons/icon-192.png?v=2",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/icons/icon-512.png",
|
||||
"src": "/icons/icon-512.png?v=2",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "any"
|
||||
},
|
||||
{
|
||||
"src": "/icons/maskable-512.png",
|
||||
"src": "/icons/maskable-512.png?v=2",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png",
|
||||
"purpose": "maskable"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
|
||||
7
sw.js
7
sw.js
@@ -1,12 +1,12 @@
|
||||
const CACHE_NAME = 'mischlabs-pwa-v1';
|
||||
const CACHE_NAME = 'mischlabs-pwa-v2';
|
||||
const APP_SHELL = [
|
||||
'/',
|
||||
'/index.html',
|
||||
'/style.css?v=8',
|
||||
'/manifest.webmanifest',
|
||||
'/manifest.webmanifest?v=2',
|
||||
'/icons/icon-192.png',
|
||||
'/icons/icon-512.png',
|
||||
'/icons/apple-touch-icon.png'
|
||||
'/icons/apple-touch-icon-v2.png'
|
||||
];
|
||||
|
||||
self.addEventListener('install', (event) => {
|
||||
@@ -53,4 +53,3 @@ self.addEventListener('fetch', (event) => {
|
||||
))
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user