PartyJukebox/Server/static/manifest.json
Kristy Fournier f95ecc78d4 Multiple fixes
- Fixed pwa location in manifest.json
- made database generator check the .env for location rather than runtime attribute
- fixed dark mode preference based on cookie/browser preference
- changed to socketio.sleep for compatibility
2026-03-06 17:05:32 -05:00

35 lines
No EOL
863 B
JSON

{
"name": "Jukebox Remote",
"short_name": "Jukebox Remote",
"description": "Controller for the PartyJukebox server app.",
"start_url": "/",
"display": "standalone",
"background_color": "#eeeeee",
"theme_color": "#eeeeee",
"orientation": "portrait-primary",
"icons": [
{
"src": "/favicon.ico",
"type": "image/ico", "sizes": "100x100"
},
{
"src":"images/Icon-144.png",
"type": "image/png",
"sizes": "144x144"
}
],
"screenshots": [
{
"src": "images/Screenshot-Main-Desktop.png",
"sizes" : "1919x1199",
"type": "image/png",
"form_factor": "wide"
},
{
"src": "images/Screenshot-Main-Mobile.png",
"type": "image/png",
"sizes": "485x859",
"form_factor": "narrow"
}
]
}