aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/manifest.json
diff options
context:
space:
mode:
authorLucas Teixeira <ltx16@hotmail.com>2018-02-08 06:52:35 -0200
committerChocobozzz <me@florianbigard.com>2018-02-08 09:52:35 +0100
commit9ccf111912cae2a345d8ca0cf412703e59d19cf8 (patch)
tree2efc9e8b18be17d30667619bcf55e6cae887d1aa /client/src/manifest.json
parent00336945ce75c04d603ed7950e18b699a606ac8b (diff)
downloadPeerTube-9ccf111912cae2a345d8ca0cf412703e59d19cf8.tar.gz
PeerTube-9ccf111912cae2a345d8ca0cf412703e59d19cf8.tar.zst
PeerTube-9ccf111912cae2a345d8ca0cf412703e59d19cf8.zip
Include Web Manifest (#273)
* Include Web Manifest Now we need to fix the path, which shouldn't be hard. * Delete unused icon * Remove Thumbs.db That file was automatically generated * Fixed icon path * Fixed typo
Diffstat (limited to 'client/src/manifest.json')
-rw-r--r--client/src/manifest.json40
1 files changed, 40 insertions, 0 deletions
diff --git a/client/src/manifest.json b/client/src/manifest.json
new file mode 100644
index 000000000..3a0c58b96
--- /dev/null
+++ b/client/src/manifest.json
@@ -0,0 +1,40 @@
1{
2 "background_color": "gray",
3 "description": "A federated decentralized video streaming platform",
4 "display": "fullscreen",
5 "icons": [
6 {
7 "src": "/client/assets/images/icons/hdpi.png",
8 "sizes": "72x72",
9 "type": "image/png"
10 },
11 {
12 "src": "/client/assets/images/icons/ldpi.png",
13 "sizes": "36x36",
14 "type": "image/png"
15 },
16 {
17 "src": "/client/assets/images/icons/mdpi.png",
18 "sizes": "48x48",
19 "type": "image/png"
20 },
21 {
22 "src": "/client/assets/images/icons/xhdpi.png",
23 "sizes": "96x96",
24 "type": "image/png"
25 },
26 {
27 "src": "/client/assets/images/icons/xxhdpi.png",
28 "sizes": "144x144",
29 "type": "image/png"
30 },
31 {
32 "src": "/client/assets/images/icons/xxxhdpi.png",
33 "sizes": "192x192",
34 "type": "image/png"
35 }
36 ],
37 "name": "PeerTube",
38 "short_name": "PeerTube",
39 "start_url": "/videos/recently-added"
40} \ No newline at end of file