Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
75b2931
feat: add Lode Runner Level 1 game to the arcade
Copilot Apr 4, 2026
069b6ae
docs: Add GitHub CLI alternative for contributing workflow (#420)
Copilot Apr 4, 2026
25b00af
Add push trigger for main branch to manual, audit, and standards hook…
Copilot Apr 4, 2026
f153754
markdownlint: replace MD033 global disable with element allowlist (#422)
Copilot Apr 4, 2026
fb8e9b7
Add push trigger on main branch to super-linter workflow (#425)
Copilot Apr 4, 2026
5b9d692
Pin README status badges to main branch (#424)
Copilot Apr 4, 2026
d6c57cd
Update branch naming instructions in README (#426)
jbampton Apr 4, 2026
ffd8456
Bump esbuild from 0.25.12 to 0.27.4 in the npm-dependencies group (#433)
dependabot[bot] Apr 6, 2026
99d7c6e
Bump super-linter/super-linter in the github-actions-dependencies gro…
dependabot[bot] Apr 8, 2026
4f13a4d
Bump liquidjs from 10.25.0 to 10.25.5 (#435)
dependabot[bot] Apr 9, 2026
268c33b
Bump actions/upload-pages-artifact (#437)
dependabot[bot] Apr 15, 2026
6d33863
Bump the npm-dependencies group across 1 directory with 2 updates (#438)
dependabot[bot] Apr 15, 2026
7e6f931
Remove pre-start animations for Space Invaders (#439)
Copilot Apr 19, 2026
bf607c7
docs: move contribution and troubleshooting above git sections in REA…
Copilot Apr 19, 2026
bddb285
Space Invaders: reclaim off-screen bullets, enforce black playfield, …
Copilot Apr 19, 2026
268e39b
Add invader-hit SFX on bullet collisions in Space Invaders (#443)
Copilot Apr 19, 2026
2b69432
Merge branch 'main' into copilot/create-first-level-load-runner
jbampton Apr 19, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/_includes/scripts.njk
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
<script src="/assets/js/games/space-invaders.js"></script>
<script src="/assets/js/games/code-breaker.js"></script>
<script src="/assets/js/games/dev-duel.js"></script>
<script src="/assets/js/games/lode-runner.js"></script>
<script src="/assets/js/eggs.js"></script>
6 changes: 6 additions & 0 deletions src/assets/js/games/game-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,12 @@ const GameManager = (() => {
desc: "Played 5 Developer Duels!",
xp: 75,
},
lode_runner_win: {
emoji: "🏃",
name: "Lode Star",
desc: "Collected all gold in Lode Runner Level 1!",
xp: 75,
},
};

/** Returns the full achievements object stored in localStorage. */
Expand Down
Loading
Loading