From a898de3bb7852dfbad91b16ff1a8d30c26681d32 Mon Sep 17 00:00:00 2001 From: maziggy Date: Fri, 24 Jul 2026 11:10:11 +0200 Subject: [PATCH] Bumped version --- CHANGELOG.md | 2 +- backend/app/core/config.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e923151e5..415a69c0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to Bambuddy will be documented in this file. -## [1.2.5b2] - Unreleased +## [1.2.5] - 2026-07-24 ### Added - **Skip Objects can now be selected directly on the top-down build plate** — The skip dialog pairs the plate preview with the slicer's exact per-object pick mask, so clicking a model selects the same object id the printer firmware expects. Multiple objects can be selected before one confirmation, selected and already-skipped items are highlighted on the plate, and the checklist remains available when a pick mask is missing. Selecting every remaining object keeps the printer's existing stop-print warning, and the dialog closes once the skip is confirmed. Confirming names the object when one is selected and counts them when several are, which is what plates of identically-named clones need. The existing layer, permission, and printer-command guards are unchanged. diff --git a/backend/app/core/config.py b/backend/app/core/config.py index 946de14c3..0943b6a4d 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -7,7 +7,7 @@ from pydantic import Field from pydantic_settings import BaseSettings # Application version - single source of truth -APP_VERSION = "1.2.5b2" +APP_VERSION = "1.2.5" GITHUB_REPO = "maziggy/bambuddy" BUG_REPORT_RELAY_URL = os.environ.get("BUG_REPORT_RELAY_URL", "https://bambuddy.cool/api/bug-report")