Merge pull request #46 from mwisnowski/maintenance/ui-user-friendliness
Some checks failed
CI / build (push) Has been cancelled

chore: prepare release v2.9.1
This commit is contained in:
mwisnowski 2025-10-17 18:51:33 -07:00 committed by GitHub
commit e9e949aae3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 40 additions and 8 deletions

View file

@ -13,7 +13,7 @@
# HOST=0.0.0.0 # Uvicorn bind host (only when APP_MODE=web).
# PORT=8080 # Uvicorn port.
# WORKERS=1 # Uvicorn worker count.
APP_VERSION=v2.9.0 # Matches dockerhub compose.
APP_VERSION=v2.9.1 # Matches dockerhub compose.
############################
# Theming

View file

@ -9,6 +9,22 @@ This format follows Keep a Changelog principles and aims for Semantic Versioning
## [Unreleased]
### Summary
_No unreleased changes yet_
### Added
_None_
### Changed
_None_
### Removed
_None_
### Fixed
_None_
## [2.9.1] - 2025-10-17
### Summary
Improved similar cards section with refresh button and reduced sidebar animation distractions.
### Added

View file

@ -1,14 +1,13 @@
# MTG Python Deckbuilder ${VERSION}
### Summary
Improved similar cards section with refresh button and reduced sidebar animation distractions.
_No unreleased changes yet_
### Added
- Similar cards now have a refresh button to see different recommendations without reloading the page
- Explanation text clarifying that similarities are based on shared themes and tags
_None_
### Changed
- Sidebar generally no longer animates during page loads and partial updates, reducing visual distractions
_None_
### Removed
_None_

View file

@ -123,7 +123,7 @@ services:
# WEB_THEME_FILTER_PREWARM: "0"
WEB_AUTO_ENFORCE: "0" # 1=auto-run compliance export after builds
WEB_CUSTOM_EXPORT_BASE: "" # Optional: custom base dir for deck export artifacts
APP_VERSION: "2.9.0" # Displayed version label (set per release/tag)
APP_VERSION: "2.9.1" # Displayed version label (set per release/tag)
# ------------------------------------------------------------------
# Misc / Land Selection (Step 7) Environment Tuning

View file

@ -125,7 +125,7 @@ services:
# WEB_THEME_FILTER_PREWARM: "0"
WEB_AUTO_ENFORCE: "0" # 1=auto-run compliance export after builds
WEB_CUSTOM_EXPORT_BASE: "" # Optional: custom base dir for deck export artifacts
APP_VERSION: "2.9.0" # Displayed version label (set per release/tag)
APP_VERSION: "2.9.1" # Displayed version label (set per release/tag)
# ------------------------------------------------------------------
# Misc / Land Selection (Step 7) Environment Tuning

17
docs/releases/v2.9.1.md Normal file
View file

@ -0,0 +1,17 @@
# MTG Python Deckbuilder v2.9.1
### Summary
Improved similar cards section with refresh button and reduced sidebar animation distractions.
### Added
- Similar cards now have a refresh button to see different recommendations without reloading the page
- Explanation text clarifying that similarities are based on shared themes and tags
### Changed
- Sidebar generally no longer animates during page loads and partial updates, reducing visual distractions
### Removed
_None_
### Fixed
_None_

View file

@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "mtg-deckbuilder"
version = "2.9.0"
version = "2.9.1"
description = "A command-line tool for building and analyzing Magic: The Gathering decks"
readme = "README.md"
license = {file = "LICENSE"}