Skip to content

Commit

Permalink
fix: improve pwa icons and color
Browse files Browse the repository at this point in the history
  • Loading branch information
seriousm4x committed Sep 7, 2024
1 parent 93f97c7 commit e160b28
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 87 deletions.
80 changes: 8 additions & 72 deletions backend/go.sum

Large diffs are not rendered by default.

Binary file removed frontend/static/icon512_maskable.png
Binary file not shown.
Binary file removed frontend/static/icon512_rounded.png
Binary file not shown.
Binary file added frontend/static/icon_192.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 frontend/static/icon_512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 33 additions & 15 deletions frontend/static/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -1,24 +1,42 @@
{
"theme_color": "#1d232a",
"background_color": "#1d232a",
"name": "UpSnap",
"short_name": "UpSnap",
"description": "A simple wake on lan web app written with SvelteKit, Go and PocketBase.",
"theme_color": "#55BCD9",
"background_color": "#55BCD9",
"display": "standalone",
"orientation": "any",
"scope": "/",
"start_url": "/",
"icons": [
{
"purpose": "maskable",
"src": "/icon_192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any"
},
{
"src": "/icon_512.png",
"sizes": "512x512",
"src": "icon512_maskable.png",
"type": "image/png"
"type": "image/png",
"purpose": "any"
},
{
"src": "/maskable_192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"purpose": "any",
"src": "/maskable_512.png",
"sizes": "512x512",
"src": "icon512_rounded.png",
"type": "image/png"
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/gopher.svg",
"type": "image/svg+xml",
"sizes": "any"
}
],
"orientation": "any",
"display": "standalone",
"name": "UpSnap",
"short_name": "UpSnap",
"start_url": "/",
"description": "A simple wake on lan web app written with SvelteKit, Go and PocketBase."
]
}
Binary file added frontend/static/maskable_192.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 frontend/static/maskable_512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e160b28

Please sign in to comment.