Make the manifest pass installability criteria in Chrome (#263)

Former-commit-id: 35b0adb51057f543116c2e2c9f76734da802a0c1
Former-commit-id: 7b8b6bec46930f10da718161646490f5f9a051ca [formerly 58ac2609f6c6410d619627b0eafe3161cd844531 [formerly 75dd34899f4d2918e33e54f56257c580f79e6ac9]]
Former-commit-id: 801c02f9bf63137bb3cbfa81b652cfe917b57eb3 [formerly 0106e6e5dfbcd6caccdebc40f3cf0f2250678afb]
Former-commit-id: 6f2c0e5c6e17b2567e9ff07bc863b43f9a611ad6
This commit is contained in:
Thomas Steiner 2022-05-12 17:27:30 +02:00 committed by GitHub
parent 2558fc5046
commit 4117ff82d2

View File

@ -3,25 +3,24 @@
"lang": "en", "lang": "en",
"name": "Kiwix JS PWA Edition", "name": "Kiwix JS PWA Edition",
"display": "standalone", "display": "standalone",
"display_override": ["tabbed"], "display_override": ["standalone", "tabbed"],
"start_url": ".", "start_url": ".",
"short_name": "Kiwix PWA", "short_name": "Kiwix PWA",
"theme_color": "black", "theme_color": "black",
"description": "Offline Wikipedia reader", "description": "Offline Wikipedia reader",
"orientation": "any", "orientation": "any",
"background_color": "transparent", "background_color": "transparent",
"relatedapplications": "", "related_applications": [],
"preferrelated_applications": "false", "prefer_related_applications": false,
"generated": "true",
"icons": [ "icons": [
{ {
"src": "www/img/icons/kiwix-48.png", "src": "www/img/icons/kiwix-48.png",
"sizes": "48x48 96x96", "sizes": "48x48",
"type": "image/png" "type": "image/png"
}, },
{ {
"src": "www/img/icons/kiwix-64.ico", "src": "www/img/icons/kiwix-64.ico",
"sizes": "64x64 128x128", "sizes": "64x64",
"type": "image/ico" "type": "image/ico"
}, },
{ {
@ -31,7 +30,7 @@
}, },
{ {
"src": "www/img/icons/kiwix-256.png", "src": "www/img/icons/kiwix-256.png",
"sizes": "256x256 512x512", "sizes": "256x256",
"type": "image/png" "type": "image/png"
} }
], ],
@ -44,4 +43,4 @@
"launch_type": "single-client" "launch_type": "single-client"
} }
] ]
} }