Compare commits

...

2 Commits

Author SHA1 Message Date
semantic-release 5fde0c6efc 3.15.1
Automatically generated by python-semantic-release
2026-06-13 14:37:22 +00:00
wakonig_k 68903fc6ae fix(curve_tree): update header labels to reflect device and signal columns 2026-06-13 16:36:36 +02:00
3 changed files with 11 additions and 2 deletions
+8
View File
@@ -1,6 +1,14 @@
# CHANGELOG
## v3.15.1 (2026-06-13)
### Bug Fixes
- **curve_tree**: Update header labels to reflect device and signal columns
([`68903fc`](https://github.com/bec-project/bec_widgets/commit/68903fc6ae2ffd3ac7b5394ba6cf9a4b2ce745e5))
## v3.15.0 (2026-06-12)
### Bug Fixes
@@ -552,7 +552,7 @@ class CurveTree(BECWidget, QWidget):
self.tree = QTreeWidget()
self.tree.setColumnCount(8)
self.tree.setHeaderLabels(
["Actions", "Name", "Entry", "Scan #", "Color", "Style", "Width", "Symbol"]
["Actions", "Device", "Signal", "Scan #", "Color", "Style", "Width", "Symbol"]
)
header = self.tree.header()
+2 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "bec_widgets"
version = "3.15.0"
version = "3.15.1"
description = "BEC Widgets"
requires-python = ">=3.11"
classifiers = [
@@ -76,6 +76,7 @@ qtermwidget = ["pyside6_qtermwidget"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"