From 087d4e66d5dce92e031ba0043f9678c7b4b64e38 Mon Sep 17 00:00:00 2001 From: Tankred Hase Date: Fri, 9 Jan 2015 18:01:22 +0100 Subject: [PATCH] Add W3C app manifest and theme color to index.html --- src/index.html | 14 +++++++++++++- src/webapp.json | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 50 insertions(+), 1 deletion(-) create mode 100644 src/webapp.json diff --git a/src/index.html b/src/index.html index d381431..9092ed2 100644 --- a/src/index.html +++ b/src/index.html @@ -15,11 +15,23 @@ + - + + + + + + + + + + + + diff --git a/src/webapp.json b/src/webapp.json new file mode 100644 index 0000000..3f83d73 --- /dev/null +++ b/src/webapp.json @@ -0,0 +1,37 @@ +{ + "name": "Whiteout Mail", + "short_name": "Whiteout", + "start_url": "index.html", + "display": "standalone", + "icons": [{ + "src": "img/icon-36-android.png", + "sizes": "36x36", + "type": "image/png", + "density": "0.75" + }, { + "src": "img/icon-48-android.png", + "sizes": "48x48", + "type": "image/png", + "density": "1.0" + }, { + "src": "img/icon-72-android.png", + "sizes": "72x72", + "type": "image/png", + "density": "1.5" + }, { + "src": "img/icon-96-android.png", + "sizes": "96x96", + "type": "image/png", + "density": "2.0" + }, { + "src": "img/icon-144-android.png", + "sizes": "144x144", + "type": "image/png", + "density": "3.0" + }, { + "src": "img/icon-192-android.png", + "sizes": "192x192", + "type": "image/png", + "density": "4.0" + }] +} \ No newline at end of file