From: Ruben Beltran del Rio Date: Mon, 5 Feb 2024 19:47:09 +0000 (+0100) Subject: Make images maskable X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/commitdiff_plain/6b7f16757157c4e99c9764ee715832e7e838715b Make images maskable --- diff --git a/_layout.html b/_layout.html index 54b2a24..5810f2d 100644 --- a/_layout.html +++ b/_layout.html @@ -6,12 +6,13 @@ + Unlimited Pizza, {{ title }} - + diff --git a/img/touch/homescreen144.png b/img/touch/homescreen144.png index 2800522..d317519 100644 Binary files a/img/touch/homescreen144.png and b/img/touch/homescreen144.png differ diff --git a/img/touch/homescreen168.png b/img/touch/homescreen168.png index d4cb1aa..62097e8 100644 Binary files a/img/touch/homescreen168.png and b/img/touch/homescreen168.png differ diff --git a/img/touch/homescreen192.png b/img/touch/homescreen192.png index 258b4f1..a550edc 100644 Binary files a/img/touch/homescreen192.png and b/img/touch/homescreen192.png differ diff --git a/img/touch/homescreen256.png b/img/touch/homescreen256.png index 46bad52..29d1dfd 100644 Binary files a/img/touch/homescreen256.png and b/img/touch/homescreen256.png differ diff --git a/img/touch/homescreen48.png b/img/touch/homescreen48.png index 16d3131..95e6144 100644 Binary files a/img/touch/homescreen48.png and b/img/touch/homescreen48.png differ diff --git a/img/touch/homescreen512.png b/img/touch/homescreen512.png index 3dc7409..7f15267 100644 Binary files a/img/touch/homescreen512.png and b/img/touch/homescreen512.png differ diff --git a/img/touch/homescreen72.png b/img/touch/homescreen72.png index ffd9819..f50cdd2 100644 Binary files a/img/touch/homescreen72.png and b/img/touch/homescreen72.png differ diff --git a/img/touch/homescreen96.png b/img/touch/homescreen96.png index cc8b6b1..8320f13 100644 Binary files a/img/touch/homescreen96.png and b/img/touch/homescreen96.png differ diff --git a/manifest.webmanifest b/manifest.webmanifest index 7602699..fbfda13 100644 --- a/manifest.webmanifest +++ b/manifest.webmanifest @@ -11,42 +11,50 @@ { "src": "img/touch/homescreen48.png", "sizes": "48x48", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" }, { "src": "img/touch/homescreen72.png", "sizes": "72x72", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" }, { "src": "img/touch/homescreen96.png", "sizes": "96x96", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" }, { "src": "img/touch/homescreen144.png", "sizes": "144x144", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" }, { "src": "img/touch/homescreen168.png", "sizes": "168x168", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" }, { "src": "img/touch/homescreen192.png", "sizes": "192x192", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" }, { "src": "img/touch/homescreen256.png", "sizes": "256x256", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" }, { "src": "img/touch/homescreen512.png", "sizes": "512x512", - "type": "image/png" + "type": "image/png", + "purpose": "any maskable" } ] }