From 9fbfb2a4d313e74480a70ecd88ea7849765944ac Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 13:42:19 +0000 Subject: [PATCH 1/2] feat(ux): improve keyboard accessibility and add ARIA attributes to mario game Adds a visible keyboard control hint for players to jump and `aria-live` and `aria-atomic` attributes to the `#score` element for proper screen reader announcements. Co-authored-by: EiJackGH <172181576+EiJackGH@users.noreply.github.com> --- src/views/mario-game.njk | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/views/mario-game.njk b/src/views/mario-game.njk index 67b6bd7..e8ba76b 100644 --- a/src/views/mario-game.njk +++ b/src/views/mario-game.njk @@ -52,13 +52,23 @@ font-size: 20px; font-family: Arial; } + + #controls-hint { + position: absolute; + top: 40px; + left: 10px; + color: rgba(255, 255, 255, 0.8); + font-size: 14px; + font-family: Arial; + }
-
Score: 0
+
Score: 0
+
Press Space or Up Arrow to jump
From 00618f142b312cf8d2e383151cd7467dbf32fd53 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 6 Apr 2026 13:46:31 +0000 Subject: [PATCH 2/2] fix: remove venv from requirements to fix CI Removing the built-in python module `venv` from `requirements.txt` fixes the CI pipeline failing on `pip install` with 'No matching distribution found for venv'. 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