From 9c28e8c0f61844cf2f37cc1488753c1a10e8edcf Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:13:16 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Add=20aria-live?= =?UTF-8?q?=20to=20dynamic=20score=20display?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds `aria-live="polite"` and `aria-atomic="true"` to the `#score` element in `src/views/mario-game.njk` to ensure screen readers correctly and unintrusively announce score updates to users. Co-authored-by: EiJackGH <172181576+EiJackGH@users.noreply.github.com> --- src/views/mario-game.njk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/mario-game.njk b/src/views/mario-game.njk index 67b6bd7..bcab8ab 100644 --- a/src/views/mario-game.njk +++ b/src/views/mario-game.njk @@ -58,7 +58,7 @@
-
Score: 0
+
Score: 0
From 5a21885358fa6cbd742aed1a62ed76435c81ef6a Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Thu, 9 Apr 2026 13:18:59 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Fix=20CI=20by=20r?= =?UTF-8?q?emoving=20invalid=20venv=20dependency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Removes the standard library module `venv` from `requirements.txt` which was causing `pip install -r requirements.txt` to fail during the GitHub Actions CI build due to "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