Skip to content

Commit

Permalink
Merge pull request #4371 from rauenzi/pwa-manifest
Browse files Browse the repository at this point in the history
Update webmanifest for wider compatibility
  • Loading branch information
zadam authored Nov 3, 2023
2 parents 612e440 + 9314cf8 commit 4db0427
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions src/public/manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit 4db0427

Please sign in to comment.