Fix PWA setup

pull/109/head
João Santos 2024-04-13 00:11:44 +02:00 committed by Samuel H
parent f6770b83b5
commit 40cdd6ace2
4 changed files with 7 additions and 12 deletions

View File

@ -8,7 +8,9 @@
<meta property="og:title" content="PokéRogue" /> <meta property="og:title" content="PokéRogue" />
<meta property="og:type" content="website" /> <meta property="og:type" content="website" />
<meta property="og:description" content="A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible." /> <meta property="og:description" content="A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible." />
<meta property="og:image" content="https://pokerogue.net/logo.png" /> <meta property="og:image" content="https://pokerogue.net/logo512.png" />
<link rel="apple-touch-icon" href="/logo512.png" />
<link rel="shortcut icon" type="image/png" href="/logo512.png" />
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<style type="text/css"> <style type="text/css">
@ -23,7 +25,7 @@
} }
</style> </style>
<link rel="stylesheet" type="text/css" href="index.css" /> <link rel="stylesheet" type="text/css" href="index.css" />
<link rel="manifest" href="manifest.json" /> <link rel="manifest" href="/manifest.webmanifest">
<script> <script>
if ("serviceWorker" in navigator) { if ("serviceWorker" in navigator) {
window.addEventListener("load", function () { window.addEventListener("load", function () {

View File

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

@ -2,20 +2,13 @@
"name": "PokéRogue", "name": "PokéRogue",
"short_name": "PokéRogue", "short_name": "PokéRogue",
"description": "A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible.", "description": "A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible.",
"scope": "/",
"start_url": "/", "start_url": "/",
"display": "standalone", "display": "standalone",
"background_color": "#8c8c8c", "background_color": "#8c8c8c",
"theme_color": "#8c8c8c", "theme_color": "#8c8c8c",
"icons": [ "icons": [
{ { "src": "logo128.png", "sizes": "128x128", "type": "image/png" },
"src": "./logo.png", { "src": "logo512.png", "sizes": "512x512", "type": "image/png" }
"sizes": "128x128",
"type": "image/png"
},
{
"src": "./logo512.png",
"sizes": "512x512",
"type": "image/png"
}
] ]
} }