Skip to content

Commit

Permalink
Add maskable PWA icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Jud committed May 19, 2024
1 parent e37e113 commit 5e71317
Show file tree
Hide file tree
Showing 14 changed files with 22 additions and 4 deletions.
Binary file modified public/images/favicon.ico
Binary file not shown.
Binary file removed public/images/icon-192x192.png
Binary file not shown.
Binary file removed public/images/icon-256x256.png
Binary file not shown.
Binary file removed public/images/icon-384x384.png
Binary file not shown.
Binary file removed public/images/icon-512x512.png
Binary file not shown.
Binary file modified public/images/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icon_x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icon_x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icon_x384.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icon_x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icon_x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/icon_x96.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/maskable_icon_x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 22 additions & 4 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,41 @@
"background_color": "#f8eeed",
"icons": [
{
"src": "/images/icon-192x192.png",
"src": "/images/icon_x72.png",
"sizes": "72x72",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/images/icon_x96.png",
"sizes": "96x96",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/images/icon_x128.png",
"sizes": "128x128",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/images/icon_x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/images/icon-256x256.png",
"src": "/images/ico_x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "/images/icon-384x384.png",
"src": "/images/icon_x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "/images/icon-512x512.png",
"src": "/images/icon_x512.png",
"sizes": "512x512",
"type": "image/png"
}
Expand Down

0 comments on commit 5e71317

Please sign in to comment.