From 9314cf87c5da67fd5500078ff875464dd4ffe265 Mon Sep 17 00:00:00 2001 From: Zack Rauen Date: Wed, 1 Nov 2023 12:30:01 -0400 Subject: [PATCH] Update manifest for wider compatibility Partially fixes #920 --- src/public/manifest.webmanifest | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/src/public/manifest.webmanifest b/src/public/manifest.webmanifest index c0966987b..814b71595 100644 --- a/src/public/manifest.webmanifest +++ b/src/public/manifest.webmanifest @@ -1,14 +1,22 @@ { - "name": "Trilium", + "name": "Trilium Notes", "short_name": "Trilium", - "theme_color": "DarkGray", - "background_color": "DarkGray", + "description": "Trilium Notes is a hierarchical note taking application with focus on building large personal knowledge bases.", + "theme_color": "#333333", + "background_color": "#1F1F1F", "display": "standalone", - "scope": "./", - "start_url": "./", - "icons": [{ - "src": "assets/vX/images/app-icons/ios/apple-touch-icon.png", - "sizes": "180x180", - "type": "image/png" - }] + "scope": "/", + "start_url": "/", + "icons": [ + { + "src": "/assets/vX/images/app-icons/ios/apple-touch-icon.png", + "sizes": "180x180", + "type": "image/png" + }, + { + "src": "/assets/vX/images/app-icons/png/512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ] }