diff --git a/frontend/favicon.svg b/frontend/favicon.svg index 4cc8aa0..d771209 100644 --- a/frontend/favicon.svg +++ b/frontend/favicon.svg @@ -1,4 +1,4 @@ - + diff --git a/frontend/icons/icon-192.png b/frontend/icons/icon-192.png index d0beaf6..c9362ee 100644 Binary files a/frontend/icons/icon-192.png and b/frontend/icons/icon-192.png differ diff --git a/frontend/icons/icon-512.png b/frontend/icons/icon-512.png index d7cc4e4..80c138f 100644 Binary files a/frontend/icons/icon-512.png and b/frontend/icons/icon-512.png differ diff --git a/frontend/icons/icon-maskable-192.png b/frontend/icons/icon-maskable-192.png new file mode 100644 index 0000000..b111909 Binary files /dev/null and b/frontend/icons/icon-maskable-192.png differ diff --git a/frontend/icons/icon-maskable-512.png b/frontend/icons/icon-maskable-512.png new file mode 100644 index 0000000..c94e9f7 Binary files /dev/null and b/frontend/icons/icon-maskable-512.png differ diff --git a/frontend/icons/icon.svg b/frontend/icons/icon.svg index 0401ec2..862a8f2 100644 --- a/frontend/icons/icon.svg +++ b/frontend/icons/icon.svg @@ -1,5 +1,5 @@ - + diff --git a/frontend/index.html b/frontend/index.html index 27facd7..780b707 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -7,7 +7,8 @@ Calendarr - + + diff --git a/frontend/js/version.js b/frontend/js/version.js index 696fd13..54b4cde 100644 --- a/frontend/js/version.js +++ b/frontend/js/version.js @@ -1,2 +1,2 @@ // Increment APP_VERSION with every code change -export const APP_VERSION = 'v89'; +export const APP_VERSION = 'v90'; diff --git a/frontend/manifest.json b/frontend/manifest.json index 496cdbb..a6a2bcc 100644 --- a/frontend/manifest.json +++ b/frontend/manifest.json @@ -1,12 +1,17 @@ { + "id": "/", "name": "Calendarr", "short_name": "Calendarr", + "description": "Dein privater, selbst gehosteter Kalender.", + "lang": "de", + "dir": "ltr", "start_url": "/", "scope": "/", "display": "standalone", "orientation": "any", "background_color": "#0e0e14", - "theme_color": "#4285f4", + "theme_color": "#16713d", + "categories": ["productivity", "utilities"], "icons": [ { "src": "/icons/icon-192.png", @@ -21,10 +26,16 @@ "purpose": "any" }, { - "src": "/icons/icon.svg", - "sizes": "any", - "type": "image/svg+xml", - "purpose": "any" + "src": "/icons/icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "/icons/icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" } ] }