Add manifest for making homescreen app

This commit is contained in:
Junior 2024-06-15 11:00:00 -04:00
parent 17995b1487
commit 0dcf7abb87
2 changed files with 20 additions and 0 deletions

View File

@ -13,6 +13,7 @@
<link rel="apple-touch-icon" sizes="152x152" href="img/ic_LEDColors_152x152.png" />
<link rel="apple-touch-icon" sizes="167x167" href="img/ic_LEDColors_167x167.png" />
<link rel="apple-touch-icon" sizes="180x180" href="img/ic_LEDColors_180x180.png" />
<link rel="manifest" href="manifest.json" />
<link rel='stylesheet' href='core/jquery-ui-1.11.2/jquery-ui.min.css' />
<link rel='stylesheet' href='css/wheelcolorpicker.css' />
<link rel='stylesheet' href='css/main.css' />

19
manifest.json Normal file
View File

@ -0,0 +1,19 @@
{
"short_name": "JAJ LEDs",
"description": "JAJ LEDs: Whole House LED Control",
"icons": [
{
"src": "img/ic_LEDColors_512x512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "img/ic_LEDColors_192x192.png",
"type": "image/png",
"sizes": "192x192"
}
],
"start_url": "index.php",
"display": "standalone",
"scope": "/"
}