basic pwa stuff

This commit is contained in:
remi 2022-06-11 23:27:17 +02:00
parent 65aec63e12
commit 2c1164a6bc
12 changed files with 60 additions and 0 deletions

BIN
icons/.DS_Store vendored Normal file

Binary file not shown.

BIN
icons/icon-128x128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

BIN
icons/icon-144x144.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

BIN
icons/icon-152x152.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
icons/icon-192x192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

BIN
icons/icon-384x384.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

BIN
icons/icon-512x512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

BIN
icons/icon-72x72.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
icons/icon-96x96.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -6,6 +6,14 @@
<meta name="description" content="now with 50% less unix requirement"> <meta name="description" content="now with 50% less unix requirement">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./main.css"> <link rel="stylesheet" href="./main.css">
<link rel="manifest" href="./manifest.json">
<meta name="apple-mobile-web-app-title" content="hisho">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<link rel="apple-touch-icon" href="./icons/icon-512x512.png" />
<link rel="apple-touch-icon" sizes="72x72" href="./icons/icon-72x72.png" />
<link rel="apple-touch-icon" sizes="144x144" href="./icons/icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="./icons/icon-152x152.png" />
<!-- <link rel="preload" href="./heonian-resources/wordlist.json" as="fetch"> this doesnt seem to do shit so /shrug --> <!-- <link rel="preload" href="./heonian-resources/wordlist.json" as="fetch"> this doesnt seem to do shit so /shrug -->
</head> </head>
<body> <body>

52
manifest.json Normal file
View File

@ -0,0 +1,52 @@
{
"name": "hisho",
"short_name": "hisho",
"theme_color": "#fff",
"background_color": "#fff",
"display": "fullScreen",
"orientation": "portrait",
"scope": "/hw/",
"start_url": "/hw/",
"icons": [
{
"src": "icons/icon-72x72.png",
"sizes": "72x72",
"type": "image/png"
},
{
"src": "icons/icon-96x96.png",
"sizes": "96x96",
"type": "image/png"
},
{
"src": "icons/icon-128x128.png",
"sizes": "128x128",
"type": "image/png"
},
{
"src": "icons/icon-144x144.png",
"sizes": "144x144",
"type": "image/png"
},
{
"src": "icons/icon-152x152.png",
"sizes": "152x152",
"type": "image/png"
},
{
"src": "icons/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "icons/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
},
{
"src": "icons/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
]
}

BIN
temp.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB