From e2f8e9e21560ba29852da58b1eabb7ff80ec42b4 Mon Sep 17 00:00:00 2001 From: Benjamin Odom Date: Wed, 1 May 2024 23:43:27 -0500 Subject: [PATCH] Fix Mobile PWA not showing in true Fullscreen adding "fullscreen" to the display attribute wasn't enough, but adding it to the start_url attribute was. This does not appear to affect PC (which is good since it shouldn't). --- public/manifest.webmanifest | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/manifest.webmanifest b/public/manifest.webmanifest index c75c70a8d45..25329cbd1b6 100644 --- a/public/manifest.webmanifest +++ b/public/manifest.webmanifest @@ -3,7 +3,7 @@ "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.", "scope": "/", - "start_url": "/", + "start_url": "https://pokerogue.net?fullscreen=true", "display": "fullscreen", "orientation": "landscape", "background_color": "#8c8c8c",