basic pwa stuff
BIN
icons/.DS_Store
vendored
Normal file
BIN
icons/icon-128x128.png
Normal file
After Width: | Height: | Size: 5.6 KiB |
BIN
icons/icon-144x144.png
Normal file
After Width: | Height: | Size: 6.3 KiB |
BIN
icons/icon-152x152.png
Normal file
After Width: | Height: | Size: 6.9 KiB |
BIN
icons/icon-192x192.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
BIN
icons/icon-384x384.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
icons/icon-512x512.png
Normal file
After Width: | Height: | Size: 38 KiB |
BIN
icons/icon-72x72.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
icons/icon-96x96.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
@ -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
@ -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"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|