add web manifest

This commit is contained in:
Azgaar 2022-05-13 19:56:00 +03:00
parent bcdffca14e
commit 9afe76f01a
9 changed files with 46 additions and 2 deletions

View file

Before

Width:  |  Height:  |  Size: 740 B

After

Width:  |  Height:  |  Size: 740 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

Before After
Before After

BIN
images/icons/icon_x512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

View file

@ -11,9 +11,11 @@
<meta property="og:title" content="Azgaar's Fantasy Map Generator" />
<meta property="og:description" content="Web application generating interactive and customizable maps" />
<meta property="og:image" content="images/preview.png" />
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="images/icons/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/icons/favicon-16x16.png" sizes="16x16" />
<link rel="apple-touch-icon" href="images/icons/maskable_icon_x192" />
<link rel="canonical" href="https://azgaar.github.io/Fantasy-Map-Generator/" />
<link rel="manifest" href="manifest.webmanifest" />
<!-- inline css for loading screen -->
<style type="text/css">

42
manifest.webmanifest Normal file
View file

@ -0,0 +1,42 @@
{
"theme_color": "#466eab",
"background_color": "#fff",
"display": "standalone",
"orientation": "landscape",
"scope": "/",
"start_url": "/",
"name": "Azgaar's Fantansy Map Generator",
"short_name": "Azgaar's Fantansy Map Generator",
"description": "Web application generating interactive and highly customizable maps",
"icons": [
{
"src": "images/icons/icon_x512",
"sizes": "512x512",
"type": "image/png"
},
{
"src": "images/icons/maskable_icon_x512",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "images/icons/maskable_icon_x384",
"sizes": "384x384",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "images/icons/maskable_icon_x192",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "images/icons/maskable_icon_x128",
"sizes": "128x128",
"type": "image/png",
"purpose": "maskable"
}
]
}