Add manifest.json, extra icons to support modern Android Home Screen apps

This commit is contained in:
Junior 2024-05-18 15:47:55 +00:00
parent a4dcc0e0af
commit d63be7afdd
4 changed files with 20 additions and 0 deletions

BIN
img/ic_MobileHA_192x192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

BIN
img/ic_MobileHA_512x512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 101 KiB

View File

@ -18,6 +18,7 @@ $queues = Queue::getList();
<link rel="apple-touch-icon" sizes="76x76" href="img/ic_MobileHA_ipad.png" />
<link rel="apple-touch-icon" sizes="120x120" href="img/ic_MobileHA_iphone.png" />
<link rel="apple-touch-icon" sizes="152x152" href="img/ic_MobileHA_ipad-retina.png" />
<link rel="manifest" href="/manifest.json" />
<link rel='stylesheet' href='jquery-ui-1.11.2/jquery-ui.min.css' />
<link rel='stylesheet' href='minimal.css' media='screen' />
<link rel='stylesheet' href='tf201.css' media='screen and (width: 800px) and (orientation: portrait)' />

19
manifest.json Normal file
View File

@ -0,0 +1,19 @@
{
"short_name": "JAJ Jukebox",
"description": "JAJ Jukebox: Whole House Audio Control",
"icons": [
{
"src": "/img/ic_MobileHA_512x512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "/img/ic_MobileHA_192x192.png",
"type": "image/png",
"sizes": "192x192"
}
],
"start_url": "/index.php",
"display": "fullscreen",
"scope": "/"
}