Spaces:
Running
Running
Bump version to 0.2.46 and update docs for Hall refactor
Browse filesUpdated 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.
- README.md +6 -2
- battlewords/__init__.py +1 -1
- claude.md +2 -2
- pyproject.toml +1 -1
- 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.
|
| 23 |
**Branch:** `basic`
|
| 24 |
-
**Last Updated:**
|
| 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.
|
| 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.
|
| 7 |
**Branch:** `basic`
|
| 8 |
-
**Last Updated:**
|
| 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.
|
| 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.
|
| 4 |
**Branch:** `basic`
|
| 5 |
-
**Last Updated:**
|
| 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.
|