diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a538f4..750baf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,16 @@ CalVer image tags (`stable-YYYY.MM.N`, `dev-YYYY.MM.N`) are produced for every C ## [Unreleased] +## [0.54.16] — 2026-05-14 + +### Fixed +- Store submit-flow wizard buttons were missing the `.btn` base class — + Next / Back / Finish on `/store/new` and Save on `/store/edit/` + carried only the `.btn-primary` / `.btn-secondary` color modifier, so + they rendered with no padding, border-radius, or proper sizing + (~18px-tall color boxes) instead of matching their sibling Cancel + links. Added the `.btn` base class on all four. + ## [0.54.15] — 2026-05-14 ### Added diff --git a/app/web/templates/store_edit.html b/app/web/templates/store_edit.html index a6fe706..16e3848 100644 --- a/app/web/templates/store_edit.html +++ b/app/web/templates/store_edit.html @@ -163,7 +163,7 @@
- Cancel
diff --git a/app/web/templates/store_upload.html b/app/web/templates/store_upload.html index b131032..0a343e0 100644 --- a/app/web/templates/store_upload.html +++ b/app/web/templates/store_upload.html @@ -418,7 +418,7 @@
- + Cancel
@@ -533,8 +533,8 @@
- - + +
diff --git a/pyproject.toml b/pyproject.toml index f658e08..a7eafa5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agnes-the-ai-analyst" -version = "0.54.15" +version = "0.54.16" description = "Agnes — AI Data Analyst platform for AI analytical systems" requires-python = ">=3.11,<3.14" license = "MIT"