1
0
mirror of https://github.com/Luzifer/mediatimeline.git synced 2024-09-18 23:42:56 +00:00

Add App-Manifest

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-04-24 20:26:41 +02:00
parent d9eb76d889
commit 7e0f71c9ad
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
5 changed files with 26 additions and 0 deletions

BIN
frontend/camera_192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
frontend/camera_512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB

BIN
frontend/camera_600.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 KiB

View File

@ -17,6 +17,7 @@
<link rel="stylesheet" href="app.css">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div id="app">

25
frontend/manifest.json Normal file
View File

@ -0,0 +1,25 @@
{
"short_name": "MediaTimeline",
"name": "MediaTimeline Viewer",
"icons": [
{
"src": "camera_192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "camera_512.png",
"type": "image/png",
"sizes": "512x512"
},
{
"src": "camera_600.png",
"type": "image/png",
"sizes": "600x600"
}
],
"start_url": "/",
"background-color": "#222222",
"display": "standalone",
"theme_color": "#222222"
}