From 4117ff82d298563562de3abbd2f391a5055147cc Mon Sep 17 00:00:00 2001 From: Thomas Steiner Date: Thu, 12 May 2022 17:27:30 +0200 Subject: [PATCH] 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 --- manifest.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/manifest.json b/manifest.json index 65796336..7a8deffd 100644 --- a/manifest.json +++ b/manifest.json @@ -3,25 +3,24 @@ "lang": "en", "name": "Kiwix JS PWA Edition", "display": "standalone", - "display_override": ["tabbed"], + "display_override": ["standalone", "tabbed"], "start_url": ".", "short_name": "Kiwix PWA", "theme_color": "black", "description": "Offline Wikipedia reader", "orientation": "any", "background_color": "transparent", - "relatedapplications": "", - "preferrelated_applications": "false", - "generated": "true", + "related_applications": [], + "prefer_related_applications": false, "icons": [ { "src": "www/img/icons/kiwix-48.png", - "sizes": "48x48 96x96", + "sizes": "48x48", "type": "image/png" }, { "src": "www/img/icons/kiwix-64.ico", - "sizes": "64x64 128x128", + "sizes": "64x64", "type": "image/ico" }, { @@ -31,7 +30,7 @@ }, { "src": "www/img/icons/kiwix-256.png", - "sizes": "256x256 512x512", + "sizes": "256x256", "type": "image/png" } ], @@ -44,4 +43,4 @@ "launch_type": "single-client" } ] -} \ No newline at end of file +}