Compare commits

...

2 Commits

Author SHA1 Message Date
0dcf7abb87 Add manifest for making homescreen app 2024-06-15 11:00:00 -04:00
17995b1487 Fix file modes. Add 512x icon size. 2024-06-15 09:15:52 -04:00
12 changed files with 20 additions and 0 deletions

0
.htaccess Executable file → Normal file
View File

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' />

0
img/ic_LEDColors_120x120.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 7.8 KiB

After

Width:  |  Height:  |  Size: 7.8 KiB

0
img/ic_LEDColors_128x128.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

0
img/ic_LEDColors_152x152.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

0
img/ic_LEDColors_167x167.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 9.9 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

0
img/ic_LEDColors_180x180.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

0
img/ic_LEDColors_192x192.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

0
img/ic_LEDColors_57x57.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

0
img/ic_LEDColors_76x76.png Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

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": "/"
}