From 18af21fdd48adda5232d9a775439757b7f49e93e Mon Sep 17 00:00:00 2001 From: Robert Kaiser Date: Thu, 2 Nov 2017 23:01:25 +0100 Subject: [PATCH] add a PWA manifest --- index.html | 1 + pwa.manifest | 31 +++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 pwa.manifest diff --git a/index.html b/index.html index 3ca9752..e321252 100644 --- a/index.html +++ b/index.html @@ -15,6 +15,7 @@ + diff --git a/pwa.manifest b/pwa.manifest new file mode 100644 index 0000000..c89bc9f --- /dev/null +++ b/pwa.manifest @@ -0,0 +1,31 @@ +{ + "name": "Lantea Maps", + "short_name": "Lantea", + "description": "Display maps and record (GPS) tracks of your location.", + "start_url": "/index.html", + "display": "standalone", + "background_color": "#CCCCCC", + "icons": { + "16": "/style/lanteaIcon16.png", + "32": "/style/lanteaIcon32.png", + "64": "/style/lanteaIcon64.png", + "128": "/style/lanteaIcon128.png" + } + "icons": [{ + "src": "/style/lanteaIcon16.png", + "sizes": "16x16", + "type": "image/png" + }, { + "src": "/style/lanteaIcon32.png", + "sizes": "32x32", + "type": "image/png" + }, { + "src": "/style/lanteaIcon64.png", + "sizes": "64x64", + "type": "image/png" + }, { + "src": "/style/lanteaIcon128.png", + "sizes": "128x128", + "type": "image/png" + }] +} -- 2.35.3