From d524cf08ecfdc67a4dcea41ad4f7f20792ff3286 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Tue, 10 May 2016 13:14:51 +0300 Subject: [PATCH] Add manifest.json for nicer mobile experience --- client/index.html | 2 ++ client/manifest.json | 27 +++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 client/manifest.json diff --git a/client/index.html b/client/index.html index 44fca1c2..e2dda726 100644 --- a/client/index.html +++ b/client/index.html @@ -9,6 +9,7 @@ + The Lounge @@ -19,6 +20,7 @@ + "> diff --git a/client/manifest.json b/client/manifest.json new file mode 100644 index 00000000..51780d6c --- /dev/null +++ b/client/manifest.json @@ -0,0 +1,27 @@ +{ + "name": "The Lounge", + "short_name": "The Lounge", + "description": "Self-hosted web IRC client", + "display": "standalone", + "orientation": "any", + "theme_color": "#455164", + "background_color": "#455164", + "icons": + [ + { + "src": "img/touch-icon-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "img/apple-touch-icon-120x120.png", + "sizes": "120x120", + "type": "image/png" + }, + { + "src": "img/favicon.png", + "sizes": "64x64", + "type": "image/png" + } + ] +}