From d7b2069aada25a5ae64547e4dac4ed8de49edd44 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 13:43:25 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Add=20accessibili?= =?UTF-8?q?ty=20and=20keyboard=20instructions=20to=20Mario=20game?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added aria-live and aria-atomic to the score indicator. * Added on-screen text letting users know they can press Space or Arrow up to jump. Co-authored-by: EiJackGH <172181576+EiJackGH@users.noreply.github.com> --- src/views/mario-game.njk | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/views/mario-game.njk b/src/views/mario-game.njk index 67b6bd7..0d7d28c 100644 --- a/src/views/mario-game.njk +++ b/src/views/mario-game.njk @@ -52,13 +52,24 @@ font-size: 20px; font-family: Arial; } + + #instructions { + position: absolute; + top: 40px; + left: 10px; + color: white; + font-size: 16px; + font-family: Arial; + opacity: 0.8; + }
-
Score: 0
+
Score: 0
+
Press Space or ↑ Arrow to jump
From ee3edf8bd965f84cbcc9dbc9690fc5330a2560cb Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 13:49:00 +0000 Subject: [PATCH 2/2] Fix CI build failure by removing venv from requirements.txt * Removed `venv` from requirements.txt because it's a standard library module and breaks GitHub Actions pip installations. Co-authored-by: EiJackGH <172181576+EiJackGH@users.noreply.github.com> --- requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cfaa995..4ad1501 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,3 @@ numpy pandas requests -venv