Web App Manifest Impovements (#12)

* Added more icon sizes

* Added legacy icon links

* Added links to native apps to manifest

* Added icons for apple devices
This commit is contained in:
Jorys Paulin
2018-08-06 02:13:38 +02:00
committed by Cameron Gutman
parent 80e6225101
commit e0d3f3bf8c
17 changed files with 48 additions and 1 deletions
+36 -1
View File
@@ -2,6 +2,31 @@
"short_name": "Moonlight",
"name": "Moonlight Game Streaming",
"icons": [
{
"src": "/images/manifest/icons-36.png",
"type": "image/png",
"sizes": "36x36"
},
{
"src": "/images/manifest/icons-48.png",
"type": "image/png",
"sizes": "48x48"
},
{
"src": "/images/manifest/icons-72.png",
"type": "image/png",
"sizes": "72x72"
},
{
"src": "/images/manifest/icons-96.png",
"type": "image/png",
"sizes": "96x96"
},
{
"src": "/images/manifest/icons-144.png",
"type": "image/png",
"sizes": "144x144"
},
{
"src": "/images/manifest/icons-192.png",
"type": "image/png",
@@ -16,5 +41,15 @@
"start_url": "/?source=homescreen",
"background_color": "#434343",
"display": "browser",
"theme_color": "#3367D6"
"theme_color": "#3367D6",
"prefer_related_applications": true,
"related_applications": [
{
"platform": "play",
"url": "https://play.google.com/store/apps/details?id=com.limelight",
"id": "com.limelight"
}, {
"platform": "itunes",
"url": "https://itunes.apple.com/us/app/moonlight-game-streaming/id1000551566"
}]
}