Merge pull request #1213 from mijorus/develop

Add manifest.json to make the app installable on mobile devices
This commit is contained in:
Steve Seguin
2025-10-21 14:37:22 -04:00
committed by GitHub
5 changed files with 32 additions and 0 deletions

View File

@@ -32,6 +32,7 @@
<link rel="canonical" href="https://vdo.ninja/">
<link rel="author" href="/about" />
<link rel="me" href="https://vdo.ninja/about" />
<link rel="manifest" href="/manifest.json">
<!-- Primary Meta Tags -->
<title>VDO.Ninja</title>

31
manifest.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "VDO.Ninja",
"short_name": "VDO.Ninja",
"description": "Bring live video from your smartphone, computer, or friends directly into your Studio. 100% free.",
"start_url": "/",
"scope": "/",
"display": "standalone",
"background_color": "#fff",
"theme_color": "#1a1a1a",
"orientation": "any",
"icons": [
{
"src": "/media/icon-144x144.png",
"sizes": "144x144",
"type": "image/png",
"purpose": "any monochrome"
},
{
"src": "/media/icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any monochrome"
},
{
"src": "/media/icon-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any monochrome"
}
]
}

BIN
media/icon-144x144.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
media/icon-192x192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
media/icon-512x512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB