Gestern wurden nur icon.png und icon.icns getauscht; Windows (.ico) und der
Web-Client (res/vector-icons/, manifest.json) trugen weiter das Element-Icon.
Dazu ein echter Fehler behoben: die Icons wurden mit PIL.thumbnail() erzeugt -
das skaliert NUR nach unten. Das 277px-Motiv wurde in 1024er-Icons daher nie
vergroessert und fuellte ueberall bloss 54% x 38% der Flaeche. Jetzt mit resize()
aus dem 1024er-Original: 81% Breite statt 54%.
Ersetzt: web/res/vector-icons/{24,120,144,152,180,512,1024}.png, manifest.json
(name/short_name -> ThreadNet), desktop/build/icon.{png,ico,icns}.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01PKhFj1S3UdD6xL2fbWPeYj
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "ThreadNet",
|
|
"short_name": "ThreadNet",
|
|
"display": "standalone",
|
|
"theme_color": "#76CFA6",
|
|
"start_url": "index.html",
|
|
"icons": [
|
|
{
|
|
"src": "/vector-icons/24.png",
|
|
"sizes": "24x24",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/vector-icons/120.png",
|
|
"sizes": "120x120",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/vector-icons/144.png",
|
|
"sizes": "144x144",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/vector-icons/152.png",
|
|
"sizes": "152x152",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/vector-icons/180.png",
|
|
"sizes": "180x180",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/vector-icons/512.png",
|
|
"sizes": "512x512",
|
|
"type": "image/png"
|
|
},
|
|
{
|
|
"src": "/vector-icons/1024.png",
|
|
"sizes": "1024x1024",
|
|
"type": "image/png"
|
|
}
|
|
],
|
|
"related_applications": [
|
|
{
|
|
"platform": "play",
|
|
"url": "https://play.google.com/store/apps/details?id=im.vector.app",
|
|
"id": "im.vector.app"
|
|
},
|
|
{
|
|
"platform": "f-droid",
|
|
"url": "https://f-droid.org/repository/browse/?fdid=im.vector.app",
|
|
"id": "im.vector.app"
|
|
},
|
|
{
|
|
"platform": "itunes",
|
|
"url": "https://apps.apple.com/app/vector/id1083446067"
|
|
}
|
|
]
|
|
}
|