From 5fa35bfa27345c9c70d7e40cafb02fb6132e565d Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 10 Apr 2019 22:03:04 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 1 + ayanova/public/manifest.json | 59 ++++++++++++++++++++++++++++++++++-- 2 files changed, 58 insertions(+), 2 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index d64228e3..9069f79e 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -36,6 +36,7 @@ All platforms and browsers - currently widget edit doesn't have a particular look or title so if you are at the top of it on a small device you can't see the url fully or really know which page it is - A small title top left that stands out might be approprpiate, also a icon beside it? + - Application name is all lowercase "ayanova" when installed to device, must be something in the manifest files? iPad =-=- diff --git a/ayanova/public/manifest.json b/ayanova/public/manifest.json index acb82ed3..5525cbe4 100644 --- a/ayanova/public/manifest.json +++ b/ayanova/public/manifest.json @@ -1,6 +1,6 @@ { - "name": "ayanova", - "short_name": "ayanova", + "name": "AyaNova", + "short_name": "AyaNova", "icons": [ { "src": "./img/icons/android-chrome-192x192.png", @@ -11,6 +11,61 @@ "src": "./img/icons/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" + }, + { + "src": "./img/icons/apple-touch-icon.png", + "sizes": "180x180", + "type": "image/png" + }, + { + "src": "./img/icons/apple-touch-icon-60x60.png", + "sizes": "60x60", + "type": "image/png" + }, + { + "src": "./img/icons/apple-touch-icon-76x76.png", + "sizes": "76x76", + "type": "image/png" + }, + { + "src": "./img/icons/apple-touch-icon-120x120.png", + "sizes": "120x120", + "type": "image/png" + }, + { + "src": "./img/icons/apple-touch-icon-152x152.png", + "sizes": "152x152", + "type": "image/png" + }, + { + "src": "./img/icons/apple-touch-icon-180x180.png", + "sizes": "180x180", + "type": "image/png" + }, + { + "src": "./img/icons/favicon-16x16.png", + "sizes": "16x16", + "type": "image/png" + }, + { + "src": "./img/icons/favicon-32x32.png", + "sizes": "32x32", + "type": "image/png" + }, + { + "src": "./img/icons/msapplication-icon-144x144.png", + "sizes": "144x144", + "type": "image/png" + }, + { + "src": "./img/icons/mstile-150x150.png", + "sizes": "150x150", + "type": "image/png" + }, + { + "src": "safari-pinned-tab.svg", + "sizes": "any", + "type": "image/svg+xml" } ], "start_url": "./index.html",