From 48b99cb3a57bd3b1753c83b3084b3a5bb274b0e0 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Wed, 21 Dec 2022 20:14:14 -0600 Subject: [PATCH] public/manifest: change display to "standalone" "fullscreen" is for immersive apps like games (and is only available on Android currently which is why we didn't notice the app going fullscreen on desktop). Fixes: https://github.com/pybricks/support/issues/867 --- CHANGELOG.md | 5 +++++ public/manifest.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23df65dd..21590a5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ ### Added - Added audio and visual feedback when typing into terminal while user program is not running. +### Changed +- Changed app display from "fullscreen" to "standalone" ([support#867]). + +[support#867]: https://github.com/pybricks/support/issues/867 + ## [2.0.1] - 2022-12-21 ### Fixed diff --git a/public/manifest.json b/public/manifest.json index d3674ffd..708cc413 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -21,7 +21,7 @@ } ], "start_url": ".", - "display": "fullscreen", + "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" }