From 35ce4d5e5f0281a129e1679c12636bac99024f48 Mon Sep 17 00:00:00 2001 From: mritzmann Date: Sun, 18 Mar 2018 19:58:34 +0100 Subject: add manifest.json for android pwa --- web/manifest.json | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 web/manifest.json (limited to 'web') diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 00000000..cd46d6ba --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,43 @@ +{ + "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" + } + ], + "display": "standalone", + "background_color": "#FFFFFF" +} -- cgit v1.2.3 From ed148f668583b1d502b4981cd212797b7d69ce5c Mon Sep 17 00:00:00 2001 From: mritzmann Date: Tue, 20 Mar 2018 08:43:46 +0100 Subject: add 512x512 appicon --- web/manifest.json | 5 +++++ .../themes/_global/img/appicon/apple-touch-icon-512.png | Bin 0 -> 28102 bytes 2 files changed, 5 insertions(+) create mode 100644 web/wallassets/themes/_global/img/appicon/apple-touch-icon-512.png (limited to 'web') diff --git a/web/manifest.json b/web/manifest.json index cd46d6ba..72638eef 100644 --- a/web/manifest.json +++ b/web/manifest.json @@ -36,6 +36,11 @@ "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", 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 -- cgit v1.2.3