From: Adam Dullage Date: Tue, 29 Aug 2023 10:05:00 +0000 (+0100) Subject: Fixed issues with site.webmanifest file. Resolves #116. X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=449304df1bf5a75a8230e30477aab656408a2d9a;p=flatnotes.git Fixed issues with site.webmanifest file. Resolves #116. --- diff --git a/flatnotes/src/assets/site.webmanifest b/flatnotes/src/assets/site.webmanifest deleted file mode 100644 index 11a4b98..0000000 --- a/flatnotes/src/assets/site.webmanifest +++ /dev/null @@ -1,19 +0,0 @@ -{ - "name": "flatnotes", - "short_name": "flatnotes", - "icons": [ - { - "src": "./android-chrome-192x192.png", - "sizes": "192x192", - "type": "image/png" - }, - { - "src": "./android-chrome-512x512.png", - "sizes": "512x512", - "type": "image/png" - } - ], - "theme_color": "#F8A66B", - "background_color": "#ffffff", - "display": "standalone" -} diff --git a/flatnotes/src/index.html b/flatnotes/src/index.html index 2b30f26..d6f3e11 100644 --- a/flatnotes/src/index.html +++ b/flatnotes/src/index.html @@ -9,7 +9,7 @@ - + diff --git a/flatnotes/src/site.webmanifest b/flatnotes/src/site.webmanifest new file mode 100644 index 0000000..996d404 --- /dev/null +++ b/flatnotes/src/site.webmanifest @@ -0,0 +1,20 @@ +{ + "name": "flatnotes", + "short_name": "flatnotes", + "start_url": "/", + "icons": [ + { + "src": "/assets/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/assets/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#F8A66B", + "background_color": "#ffffff", + "display": "standalone" +}