added favicons and webapp metadata (#211)

This commit is contained in:
Kevin Papst
2018-07-15 21:15:24 +02:00
committed by GitHub
parent 5160b640c4
commit 2d2525cff2
15 changed files with 51 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 24 KiB

12
public/browserconfig.xml Normal file
View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="favicon/mstile-small.jpg"/>
<square150x150logo src="favicon/mstile-medium.jpg"/>
<wide310x150logo src="favicon/mstile-wide.jpg"/>
<square310x310logo src="favicon/mstile-large.jpg"/>
<TileColor>#00a300</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
public/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
public/favicon/mstile-large.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

BIN
public/favicon/mstile-medium.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 KiB

BIN
public/favicon/mstile-small.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
public/favicon/mstile-wide.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

21
public/manifest.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "Kimai Time-Tracker",
"short_name": "Kimai 2",
"icons": [
{
"src": "favicon-32x32.png",
"sizes": "32x32",
"type": "image/png",
"density": "0.75"
},
{
"src": "touch-icon-192x192.png",
"sizes": "192x192",
"type": "image/png",
"density": "4.0"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB