diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2024-08-22 21:36:03 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2024-08-22 22:15:26 +0200 |
commit | ff9b4f024cc7fc5747dcd0b3892da0fed7fa9072 (patch) | |
tree | 009d3b0b76c7b35a7d3f932e175b88471233ffa0 /manifest.json | |
parent | d24fc0472883cfdc3842fbacba9d084a7198ba43 (diff) | |
download | hesla-ff9b4f024cc7fc5747dcd0b3892da0fed7fa9072.tar.gz |
fix: use manifest.json with correct values instead of site.webmanifest
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 38 |
1 files changed, 22 insertions, 16 deletions
diff --git a/manifest.json b/manifest.json index 1468bd7..5bfc9d1 100644 --- a/manifest.json +++ b/manifest.json @@ -1,19 +1,25 @@ { - "version": "0.3.1", - "name": "Hesla", - "description": "Display today's Hesla (Losungen, Watchwords) from Bible.", - "icons": { - "48": "lamb-of-God.svg", - "96": "lamb-of-God.svg", - "128": "lamb-of-God.svg" - }, - "app": { - "urls": [ - "http://hesla.ceplovi.cz/" - ], - "launch": { - "web_url": "http://hesla.ceplovi.cz/" + "name": "Hesla JB", + "short_name": "Hesla", + "icons": [ + { + "src": "/icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "lamb-of-God.svg", + "sizes": "192x192", + "type": "image/svg+xml" } - }, - "manifest_version": 2 + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone", + "start_url": "/" } |