bec-widgets 2.10.3__py3-none-any.whl → 2.11.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
CHANGELOG.md CHANGED
@@ -1,6 +1,57 @@
1
1
  # CHANGELOG
2
2
 
3
3
 
4
+ ## v2.11.0 (2025-06-04)
5
+
6
+ ### Bug Fixes
7
+
8
+ - **image item**: Propagate remove call to parent class
9
+ ([`e211e4d`](https://github.com/bec-project/bec_widgets/commit/e211e4d7161cc4fc4b2f7cd18f058e070f5b4b7a))
10
+
11
+ - **image layer**: Add layer main if it does not exist
12
+ ([`7eb2f54`](https://github.com/bec-project/bec_widgets/commit/7eb2f54e0ed556e0c30a4e14ded75e32dcf3d531))
13
+
14
+ - **image_item**: Do not disconnect the monitor from within the image item
15
+ ([`4c0bd97`](https://github.com/bec-project/bec_widgets/commit/4c0bd977fc2b82680bbace763f5ffb19ed664f72))
16
+
17
+ ### Features
18
+
19
+ - **image_layer**: Add default name for image layers
20
+ ([`4a343b2`](https://github.com/bec-project/bec_widgets/commit/4a343b204112c53e593e9bb43642d21f268dfa85))
21
+
22
+ ### Refactoring
23
+
24
+ - **image**: Disconnect when layer is removed
25
+ ([`8a299a8`](https://github.com/bec-project/bec_widgets/commit/8a299a8268f3c21bbdc6629ad1f1f50a0aa0948b))
26
+
27
+ - **image**: Introduce image base and image layer; rename vrange to v_range
28
+ ([`10f292d`](https://github.com/bec-project/bec_widgets/commit/10f292def9d1551bca0d8f63c0a94799c08ff507))
29
+
30
+ - **image**: Move image item creation to layer manager
31
+ ([`c2b0c8c`](https://github.com/bec-project/bec_widgets/commit/c2b0c8c4336302ec4a7807c31b3f3b78a413c1aa))
32
+
33
+ - **image**: Removed access to image item config
34
+ ([`99ecf6a`](https://github.com/bec-project/bec_widgets/commit/99ecf6a18f2e87d68f3de3abf56d97f7e6467912))
35
+
36
+ - **image_base**: Move default color map to image layer
37
+ ([`92b89e7`](https://github.com/bec-project/bec_widgets/commit/92b89e72750fc0ab72ea51f865032133c49a7f18))
38
+
39
+ - **image_base**: Renamed layers to layer_manager and added public methods for accessing the layer
40
+ manager
41
+ ([`92dade0`](https://github.com/bec-project/bec_widgets/commit/92dade09508ff3940e0b5dc99917302d61b03bc8))
42
+
43
+ - **image_item**: Emit object name with removed signal
44
+ ([`a4f3117`](https://github.com/bec-project/bec_widgets/commit/a4f311794132c6c24370cb2f5b5e0725b12587fd))
45
+
46
+ - **image_item**: Removed outdated image item config
47
+ ([`3e789ca`](https://github.com/bec-project/bec_widgets/commit/3e789ca35b6d0cf2d8ae9677bc65b7f0ca4eabc7))
48
+
49
+ ### Testing
50
+
51
+ - Improve error message for widgets that are not properly cleaned up
52
+ ([`7c47505`](https://github.com/bec-project/bec_widgets/commit/7c47505c5a147885ca2e854e13c1eb3fddaf5489))
53
+
54
+
4
55
  ## v2.10.3 (2025-06-04)
5
56
 
6
57
  ### Bug Fixes
PKG-INFO CHANGED
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bec_widgets
3
- Version: 2.10.3
3
+ Version: 2.11.0
4
4
  Summary: BEC Widgets
5
5
  Project-URL: Bug Tracker, https://gitlab.psi.ch/bec/bec_widgets/issues
6
6
  Project-URL: Homepage, https://gitlab.psi.ch/bec/bec_widgets
bec_widgets/cli/client.py CHANGED
@@ -1252,16 +1252,16 @@ class Image(RPCBase):
1252
1252
 
1253
1253
  @property
1254
1254
  @rpc_call
1255
- def vrange(self) -> "tuple":
1255
+ def v_range(self) -> "QPointF":
1256
1256
  """
1257
- Get the vrange of the image.
1257
+ Set the v_range of the main image.
1258
1258
  """
1259
1259
 
1260
- @vrange.setter
1260
+ @v_range.setter
1261
1261
  @rpc_call
1262
- def vrange(self) -> "tuple":
1262
+ def v_range(self) -> "QPointF":
1263
1263
  """
1264
- Get the vrange of the image.
1264
+ Set the v_range of the main image.
1265
1265
  """
1266
1266
 
1267
1267
  @property