Browse Source

Feature/improve site.webmanifest (#3564)

* Separate icon purposes

* Update changelog
pull/3567/head
Thomas Kaul 8 months ago
committed by GitHub
parent
commit
0640b24290
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 12
      apps/client/src/assets/site.webmanifest

1
CHANGELOG.md

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Improved the chart of the holdings tab on the home page (experimental)
- Separated the icon purposes in the `site.webmanifest`
## 2.95.0 - 2024-07-12

12
apps/client/src/assets/site.webmanifest

@ -7,10 +7,16 @@
{
"sizes": "192x192",
"src": "/assets/android-chrome-192x192.png",
"type": "image/png",
"purpose": "any maskable"
"type": "image/png"
},
{
"purpose": "any",
"sizes": "512x512",
"src": "/assets/android-chrome-512x512.png",
"type": "image/png"
},
{
"purpose": "maskable",
"sizes": "512x512",
"src": "/assets/android-chrome-512x512.png",
"type": "image/png"
@ -21,5 +27,5 @@
"short_name": "Ghostfolio",
"start_url": "/en/",
"theme_color": "#FFFFFF",
"url": "https://www.ghostfol.io"
"url": "https://ghostfol.io"
}

Loading…
Cancel
Save