PWA #264 Manifest does not have:

* PNG icon of at least 512px
* `background_color`
* `theme_color`
* maskable icon
* `<meta name="theme-color">` tag
This commit is contained in:
the-djmaze 2022-03-15 16:02:58 +01:00
parent 57673384e9
commit 7468268e1a
3 changed files with 8 additions and 0 deletions

BIN
assets/logo-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

View file

@ -3,6 +3,8 @@
"short_name": "SnappyMail", "short_name": "SnappyMail",
"description": "Simple, modern & fast web-based email client", "description": "Simple, modern & fast web-based email client",
"display": "standalone", "display": "standalone",
"background_color": "white",
"theme_color": "black",
"icons": [{ "icons": [{
"src": "apple-touch-icon.png", "src": "apple-touch-icon.png",
"sizes": "64x64", "sizes": "64x64",
@ -11,6 +13,11 @@
"src": "android-icon.png", "src": "android-icon.png",
"sizes": "192x192", "sizes": "192x192",
"type": "image/png" "type": "image/png"
}, {
"src": "logo-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}], }],
"start_url": "../../../../" "start_url": "../../../../"
} }

View file

@ -10,6 +10,7 @@
<meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes">
<meta name="google" content="notranslate"> <meta name="google" content="notranslate">
<meta name="robots" content="noindex,nofollow,noodp"> <meta name="robots" content="noindex,nofollow,noodp">
<meta name="theme-color" content="black">
<title></title> <title></title>
<style id="app-boot-css">{{BaseAppBootCss}}</style> <style id="app-boot-css">{{BaseAppBootCss}}</style>
<link type="text/css" rel="stylesheet" href="{{BaseAppMainCssLink}}"> <link type="text/css" rel="stylesheet" href="{{BaseAppMainCssLink}}">