diff --git a/app/img/icons/icon.svg b/app/img/icons/icon.svg new file mode 100644 index 00000000..2822d5ef --- /dev/null +++ b/app/img/icons/icon.svg @@ -0,0 +1,22 @@ + + + + diff --git a/app/img/icons/icon192.png b/app/img/icons/icon192.png new file mode 100644 index 00000000..b027a947 Binary files /dev/null and b/app/img/icons/icon192.png differ diff --git a/app/img/icons/icon512.png b/app/img/icons/icon512.png new file mode 100644 index 00000000..05ad6adb Binary files /dev/null and b/app/img/icons/icon512.png differ diff --git a/app/index.html b/app/index.html index 9db2902e..0d92c41c 100644 --- a/app/index.html +++ b/app/index.html @@ -15,7 +15,7 @@ - + diff --git a/app/manifest.json b/app/manifest.json index 4b2c977b..2862bed8 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -4,6 +4,9 @@ "version": "0.5.5", "short_name": "Telegram", "manifest_version": 2, + "display": "standalone", + "orientation": "portrait", + "theme_color": "#497495", "app": { "background": { "scripts": ["js/background.js"] diff --git a/app/manifest.webapp.json b/app/manifest.webapp.json new file mode 100644 index 00000000..705204d3 --- /dev/null +++ b/app/manifest.webapp.json @@ -0,0 +1,57 @@ +{ + "name": "Telegram", + "description": "Telegram Web App.\nMore info & source code here: https://github.com/zhukov/webogram", + "version": "0.5.5", + "short_name": "Telegram", + "display": "standalone", + "orientation": "portrait", + "theme_color": "#497495", + "gcm_sender_id": "122867383838", + "icons": [ + { + "src": "img/icons/icon16.png", + "type": "image/png", + "sizes": "16x16" + }, + { + "src": "img/icons/icon32.png", + "type": "image/png", + "sizes": "32x32" + }, + { + "src": "img/icons/icon60.png", + "type": "image/png", + "sizes": "60x60" + }, + { + "src": "img/icons/icon64.png", + "type": "image/png", + "sizes": "64x64" + }, + { + "src": "img/icons/icon90.png", + "type": "image/png", + "sizes": "90x90" + }, + { + "src": "img/icons/icon128.png", + "type": "image/png", + "sizes": "128x128" + }, + { + "src": "img/icons/icon192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "img/icons/icon512.png", + "type": "image/png", + "sizes": "512x512" + }, + { + "src": "img/icons/icon.svg", + "type": "image/svg", + "sizes": "513x513" + } + ] +}