Surn commited on
Commit
be3bbf0
·
1 Parent(s): 482ed53

Bump version to 0.2.46 and update docs for Hall refactor

Browse files

Updated version to 0.2.46 BASIC in all relevant files. Changed "Last Updated" date to 2025-07-12 in documentation. Added release notes for Hall of Legends/Fantastics refactor and UI improvements in README.

Files changed (5) hide show
  1. README.md +6 -2
  2. battlewords/__init__.py +1 -1
  3. claude.md +2 -2
  4. pyproject.toml +1 -1
  5. specs/specs.mdx +2 -2
README.md CHANGED
@@ -19,13 +19,17 @@ tags:
19
 
20
  > **This project is used by [huggingface.co](https://huggingface.co/spaces/Surn/Battlewords) as a demonstration of interactive word games in Python.**
21
 
22
- **Current Version:** 0.2.45 BASIC
23
  **Branch:** `basic`
24
- **Last Updated:** 2026-05-26
25
 
26
  Battlewords is a vocabulary learning game inspired by classic Battleship mechanics.
27
 
28
  ## Recent Changes
 
 
 
 
29
  version 0.2.45 (basic)
30
  - UI updates: leaderboard navigation in footer menu, game over dialog integrates leaderboard submission and qualification results, footer links to Leaderboard/Play/Settings pages
31
  - Minimal documentation and version bumps
 
19
 
20
  > **This project is used by [huggingface.co](https://huggingface.co/spaces/Surn/Battlewords) as a demonstration of interactive word games in Python.**
21
 
22
+ **Current Version:** 0.2.46 BASIC
23
  **Branch:** `basic`
24
+ **Last Updated:** 2025-07-12
25
 
26
  Battlewords is a vocabulary learning game inspired by classic Battleship mechanics.
27
 
28
  ## Recent Changes
29
+ version 0.2.46 (basic)
30
+ - Refactored Hall of Legends and Hall of Fantastics into dedicated module (hall_of_legends.py) with improved styling, week navigation, and summary cards
31
+ - Updated documentation to reflect latest UI changes
32
+
33
  version 0.2.45 (basic)
34
  - UI updates: leaderboard navigation in footer menu, game over dialog integrates leaderboard submission and qualification results, footer links to Leaderboard/Play/Settings pages
35
  - Minimal documentation and version bumps
battlewords/__init__.py CHANGED
@@ -1,2 +1,2 @@
1
- __version__ = "0.2.45 BASIC"
2
  __all__ = ["models", "generator", "logic", "ui", "modules"]
 
1
+ __version__ = "0.2.46 BASIC"
2
  __all__ = ["models", "generator", "logic", "ui", "modules"]
claude.md CHANGED
@@ -3,9 +3,9 @@
3
  ## Project Overview
4
  Battlewords is a vocabulary learning game inspired by Battleship mechanics, built with Streamlit and Python. Players reveal cells on a 12×12 grid to discover hidden words.
5
 
6
- **Current Version:** 0.2.45 BASIC
7
  **Branch:** `basic`
8
- **Last Updated:** 2026-05-26
9
  **Repository:** https://github.com/Oncorporation/Battlewords.git
10
 
11
  This file describes the intended scope of the `basic` branch only.
 
3
  ## Project Overview
4
  Battlewords is a vocabulary learning game inspired by Battleship mechanics, built with Streamlit and Python. Players reveal cells on a 12×12 grid to discover hidden words.
5
 
6
+ **Current Version:** 0.2.46 BASIC
7
  **Branch:** `basic`
8
+ **Last Updated:** 2025-07-12
9
  **Repository:** https://github.com/Oncorporation/Battlewords.git
10
 
11
  This file describes the intended scope of the `basic` branch only.
pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
  [project]
2
  name = "battlewords"
3
- version = "0.2.45"
4
  description = "Battlewords vocabulary game (basic branch)"
5
  readme = "README.md"
6
  requires-python = ">=3.12,<3.13"
 
1
  [project]
2
  name = "battlewords"
3
+ version = "0.2.46"
4
  description = "Battlewords vocabulary game (basic branch)"
5
  readme = "README.md"
6
  requires-python = ">=3.12,<3.13"
specs/specs.mdx CHANGED
@@ -1,8 +1,8 @@
1
  # Battlewords Game Requirements
2
 
3
- **Current Version:** 0.2.45 BASIC
4
  **Branch:** `basic`
5
- **Last Updated:** 2026-05-26
6
 
7
  ## Overview
8
  Battlewords is inspired by the classic Battleship game, but uses words instead of ships. The objective is to discover hidden words on a grid, earning points for strategic guessing before all letters are revealed.
 
1
  # Battlewords Game Requirements
2
 
3
+ **Current Version:** 0.2.46 BASIC
4
  **Branch:** `basic`
5
+ **Last Updated:** 2025-07-12
6
 
7
  ## Overview
8
  Battlewords is inspired by the classic Battleship game, but uses words instead of ships. The objective is to discover hidden words on a grid, earning points for strategic guessing before all letters are revealed.