From 918a93108cc1e19e70719c0e71a7db9785cde935 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Mon, 7 Aug 2017 17:37:23 -0400 Subject: [PATCH] Added manifest, browserconfig --- icons/browserconfig.xml => browserconfig.xml | 0 icons/manifest.json | 18 ------ manifest.webmanifest | 64 ++++++++++++++++++++ 3 files changed, 64 insertions(+), 18 deletions(-) rename icons/browserconfig.xml => browserconfig.xml (100%) delete mode 100644 icons/manifest.json create mode 100644 manifest.webmanifest diff --git a/icons/browserconfig.xml b/browserconfig.xml similarity index 100% rename from icons/browserconfig.xml rename to browserconfig.xml diff --git a/icons/manifest.json b/icons/manifest.json deleted file mode 100644 index 7099702..0000000 --- a/icons/manifest.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "name": "Streetmap Me", - "icons": [ - { - "src": "/icons/android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "/icons/android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#da532c", - "background_color": "#da532c", - "display": "standalone" -} \ No newline at end of file diff --git a/manifest.webmanifest b/manifest.webmanifest new file mode 100644 index 0000000..92068d8 --- /dev/null +++ b/manifest.webmanifest @@ -0,0 +1,64 @@ +{ + "name": "Streetmap Me", + "short_name": "Streetmap Me", + "author": "Keith Irwin", + "description": "A streetview image of your GPS location", + "homepage_url": "https://streetmap.me", + + "theme_color": "#da532c", + "background_color": "#da532c", + "display": "standalone", + "icons": [{ + "src": "icons/apple-touch-icon-114x114.png", + "sizes": "114x114", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-120x120.png", + "sizes": "120x120", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-144x144.png", + "sizes": "144x144", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-152x152.png", + "sizes": "152x152", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-180x180.png", + "sizes": "180x180", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-57x57.png", + "sizes": "57x57", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-60x60.png", + "sizes": "60x60", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-72x72.png", + "sizes": "72x72", + "type": "image/png" + }, { + "src": "icons/apple-touch-icon-76x76.png", + "sizes": "76x76", + "type": "image/png" + }, { + "src": "icons/favicon-16x16.png", + "sizes": "16x16", + "type": "image/png" + }, { + "src": "icons/favicon-32x32.png", + "sizes": "32x32", + "type": "image/png" + }, { + "src": "icons/favicon.ico", + "sizes": "48x48", + "type": "image/ico" + }, { + "src": "icons/mstile-150x150.png", + "sizes": "150x150", + "type": "image/png" + }] +} \ No newline at end of file