From 0dcf7abb8700937d7e878249e3606d5ad4765ac7 Mon Sep 17 00:00:00 2001 From: Junior Date: Sat, 15 Jun 2024 11:00:00 -0400 Subject: [PATCH] Add manifest for making homescreen app --- htmlheader.php | 1 + manifest.json | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 manifest.json diff --git a/htmlheader.php b/htmlheader.php index 87a0b80..56e75e4 100644 --- a/htmlheader.php +++ b/htmlheader.php @@ -13,6 +13,7 @@ + diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..b083883 --- /dev/null +++ b/manifest.json @@ -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": "/" +}