From: Jérémy Benoist Date: Mon, 15 Oct 2018 08:30:26 +0000 (+0000) Subject: Merge pull request #3606 from mritzmann/master X-Git-Tag: 2.3.4~11 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=fbdc665487bc5ea9fd46502be06a13ebc3e2fb4f;hp=0ebf595c11031474260ba0874c7973c91163e958 Merge pull request #3606 from mritzmann/master add manifest.json for android pwa --- diff --git a/src/Wallabag/CoreBundle/Resources/views/base.html.twig b/src/Wallabag/CoreBundle/Resources/views/base.html.twig index 2499bb88..aa388bcb 100644 --- a/src/Wallabag/CoreBundle/Resources/views/base.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/base.html.twig @@ -38,6 +38,8 @@ + + {% block css %} {% endblock %} {% block scripts %} diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 00000000..72638eef --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,48 @@ +{ + "short_name": "wallabag", + "name": "Save and classify articles. Read them later. Freely.", + "icons": [ + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-57.png", + "type": "image/png", + "sizes": "57x57" + }, + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-72.png", + "type": "image/png", + "sizes": "72x72" + }, + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-76.png", + "type": "image/png", + "sizes": "76x76" + }, + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-114.png", + "type": "image/png", + "sizes": "114x114" + }, + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-120.png", + "type": "image/png", + "sizes": "120x120" + }, + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-144.png", + "type": "image/png", + "sizes": "144x144" + }, + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-152.png", + "type": "image/png", + "sizes": "152x152" + }, + { + "src": "wallassets/themes/_global/img/appicon/apple-touch-icon-512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "display": "standalone", + "background_color": "#FFFFFF" +} diff --git a/web/wallassets/themes/_global/img/appicon/apple-touch-icon-512.png b/web/wallassets/themes/_global/img/appicon/apple-touch-icon-512.png new file mode 100644 index 00000000..7385c256 Binary files /dev/null and b/web/wallassets/themes/_global/img/appicon/apple-touch-icon-512.png differ