bec-widgets 0.92.1__py3-none-any.whl → 0.92.2__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 +6 -4
- PKG-INFO +1 -1
- bec_widgets/examples/plugin_example_pyside/main.py +2 -1
- bec_widgets/examples/plugin_example_pyside/registertictactoe.py +3 -2
- bec_widgets/examples/plugin_example_pyside/tictactoeplugin.py +2 -2
- bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py +1 -1
- {bec_widgets-0.92.1.dist-info → bec_widgets-0.92.2.dist-info}/METADATA +1 -1
- {bec_widgets-0.92.1.dist-info → bec_widgets-0.92.2.dist-info}/RECORD +12 -12
- pyproject.toml +1 -1
- {bec_widgets-0.92.1.dist-info → bec_widgets-0.92.2.dist-info}/WHEEL +0 -0
- {bec_widgets-0.92.1.dist-info → bec_widgets-0.92.2.dist-info}/entry_points.txt +0 -0
- {bec_widgets-0.92.1.dist-info → bec_widgets-0.92.2.dist-info}/licenses/LICENSE +0 -0
CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## v0.92.2 (2024-07-28)
|
4
|
+
|
5
|
+
### Fix
|
6
|
+
|
7
|
+
* fix(widgets): fixed import for tictactoe example ([`995a795`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/995a795060bebe25c17108d80ae0fa30463f03b1))
|
8
|
+
|
3
9
|
## v0.92.1 (2024-07-28)
|
4
10
|
|
5
11
|
### Build
|
@@ -126,8 +132,6 @@ This reverts commit 3798714369adf4023f833b7749d2f46a0ec74eee ([`fd6ae91`](https:
|
|
126
132
|
|
127
133
|
* feat(waveform_widget): autorange button ([`8df6b00`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8df6b003e5c6a942fa2e875d9790e492c087bf26))
|
128
134
|
|
129
|
-
* feat(waveform_widget): dap parameter window ([`1e551d6`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/1e551d6e9696f79ea2e0a179d13a4fc6c2a128b2))
|
130
|
-
|
131
135
|
### Fix
|
132
136
|
|
133
137
|
* fix(waveform_widget): plot API unified with BECFigure ([`2c8764a`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/2c8764a27de89b39b717032b58465e120ec57fbc))
|
@@ -138,8 +142,6 @@ This reverts commit 3798714369adf4023f833b7749d2f46a0ec74eee ([`fd6ae91`](https:
|
|
138
142
|
|
139
143
|
* fix(waveform_widget): temporary disabled save/load config ([`7089cf3`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/7089cf356a43d805241d5621952e544d690e65e0))
|
140
144
|
|
141
|
-
* fix(waveform_widget): use @SafeSlot decorator for automatic error message ([`8e588d7`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8e588d79c86e950f6915e89c08fa9415c4bd8033))
|
142
|
-
|
143
145
|
### Test
|
144
146
|
|
145
147
|
* test(waveform_widget): test added ([`8d764e2`](https://gitlab.psi.ch/bec/bec_widgets/-/commit/8d764e2d46a1e017dadc3c4630648c1ca708afc2))
|
PKG-INFO
CHANGED
@@ -7,7 +7,8 @@ import sys
|
|
7
7
|
|
8
8
|
from bec_ipython_client.main import BECIPythonClient
|
9
9
|
from qtpy.QtWidgets import QApplication
|
10
|
-
|
10
|
+
|
11
|
+
from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
|
11
12
|
|
12
13
|
if __name__ == "__main__": # pragma: no cover
|
13
14
|
app = QApplication(sys.argv)
|
@@ -2,8 +2,9 @@
|
|
2
2
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
3
3
|
|
4
4
|
from qtpy.QtDesigner import QPyDesignerCustomWidgetCollection
|
5
|
-
|
6
|
-
from
|
5
|
+
|
6
|
+
from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
|
7
|
+
from bec_widgets.examples.plugin_example_pyside.tictactoeplugin import TicTacToePlugin
|
7
8
|
|
8
9
|
# Set PYSIDE_DESIGNER_PLUGINS to point to this directory and load the plugin
|
9
10
|
|
@@ -4,10 +4,10 @@ import os
|
|
4
4
|
|
5
5
|
from qtpy.QtDesigner import QDesignerCustomWidgetInterface
|
6
6
|
from qtpy.QtGui import QIcon
|
7
|
-
from tictactoe import TicTacToe
|
8
|
-
from tictactoetaskmenu import TicTacToeTaskMenuFactory
|
9
7
|
|
10
8
|
import bec_widgets
|
9
|
+
from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
|
10
|
+
from bec_widgets.examples.plugin_example_pyside.tictactoetaskmenu import TicTacToeTaskMenuFactory
|
11
11
|
|
12
12
|
DOM_XML = """
|
13
13
|
<ui language='c++'>
|
@@ -4,8 +4,8 @@
|
|
4
4
|
from qtpy.QtDesigner import QExtensionFactory, QPyDesignerTaskMenuExtension
|
5
5
|
from qtpy.QtGui import QAction
|
6
6
|
from qtpy.QtWidgets import QDialog, QDialogButtonBox, QVBoxLayout
|
7
|
-
from tictactoe import TicTacToe
|
8
7
|
|
8
|
+
from bec_widgets.examples.plugin_example_pyside.tictactoe import TicTacToe
|
9
9
|
from bec_widgets.qt_utils.error_popups import SafeSlot as Slot
|
10
10
|
|
11
11
|
|
@@ -2,11 +2,11 @@
|
|
2
2
|
.gitlab-ci.yml,sha256=BtKhZI3dhK09En1BfpglYi-ZJwG6ZdC-iJr7kXFVfCg,8346
|
3
3
|
.pylintrc,sha256=eeY8YwSI74oFfq6IYIbCqnx3Vk8ZncKaatv96n_Y8Rs,18544
|
4
4
|
.readthedocs.yaml,sha256=aSOc277LqXcsTI6lgvm_JY80lMlr69GbPKgivua2cS0,603
|
5
|
-
CHANGELOG.md,sha256
|
5
|
+
CHANGELOG.md,sha256=yyhloKzh2l7OgXZ4X5OBnzG8g3VKiBywSRdOBSenhqo,7153
|
6
6
|
LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
7
|
-
PKG-INFO,sha256=
|
7
|
+
PKG-INFO,sha256=pDOIzaft9uc0DAZl-rmYhq9iDQ4kluGhwySTUtha2iE,1308
|
8
8
|
README.md,sha256=Od69x-RS85Hph0-WwWACwal4yUd67XkEn4APEfHhHFw,2649
|
9
|
-
pyproject.toml,sha256=
|
9
|
+
pyproject.toml,sha256=c2dy1NZ5PLPAKqaVN5Rh64ApvvZa-HmoMcCUAZ34wlc,2357
|
10
10
|
.git_hooks/pre-commit,sha256=n3RofIZHJl8zfJJIUomcMyYGFi_rwq4CC19z0snz3FI,286
|
11
11
|
.gitlab/issue_templates/bug_report_template.md,sha256=gAuyEwl7XlnebBrkiJ9AqffSNOywmr8vygUFWKTuQeI,386
|
12
12
|
.gitlab/issue_templates/documentation_update_template.md,sha256=FHLdb3TS_D9aL4CYZCjyXSulbaW5mrN2CmwTaeLPbNw,860
|
@@ -95,12 +95,12 @@ bec_widgets/examples/general_app/web_links.py,sha256=d5OgzgI9zb-NAC0pOGanOtJX3nZ
|
|
95
95
|
bec_widgets/examples/jupyter_console/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
96
96
|
bec_widgets/examples/jupyter_console/jupyter_console_window.py,sha256=zzeSE4SS-B6p7LTqS91oGbEmYEtEQHewndVscJywL8I,6766
|
97
97
|
bec_widgets/examples/plugin_example_pyside/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
98
|
-
bec_widgets/examples/plugin_example_pyside/main.py,sha256=
|
99
|
-
bec_widgets/examples/plugin_example_pyside/registertictactoe.py,sha256=
|
98
|
+
bec_widgets/examples/plugin_example_pyside/main.py,sha256=zDP5wO7wb3BVsQ15HOCRT1nNmCujIVRvSXZ3Txje8L0,549
|
99
|
+
bec_widgets/examples/plugin_example_pyside/registertictactoe.py,sha256=cVhBnP0qx5j9Jft-VeKvlTFE-bX58hbP45CX0f4r5pM,535
|
100
100
|
bec_widgets/examples/plugin_example_pyside/taskmenuextension.pyproject,sha256=O_PSMFJlXxQuf55gIOfkpfZIZGpX8W1SfUVZ-mvtI_E,119
|
101
101
|
bec_widgets/examples/plugin_example_pyside/tictactoe.py,sha256=byR7mTiIXFaA9igPTH04pzm0yfikNB5KgISwvNiRPd8,4940
|
102
|
-
bec_widgets/examples/plugin_example_pyside/tictactoeplugin.py,sha256=
|
103
|
-
bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py,sha256=
|
102
|
+
bec_widgets/examples/plugin_example_pyside/tictactoeplugin.py,sha256=Hj-04Y3u_0HvPUrIYv0-tSdCN48S9f5pcfcElSAJVmw,2004
|
103
|
+
bec_widgets/examples/plugin_example_pyside/tictactoetaskmenu.py,sha256=V6OVnBTS-60zjQ2FAs88Ldjm1MfoMROfiQZZu6Guav8,2379
|
104
104
|
bec_widgets/qt_utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
105
105
|
bec_widgets/qt_utils/error_popups.py,sha256=y9gKKWaafp468ioHr96nBhf02ZpEgjDc-BAVOTWh-e8,7680
|
106
106
|
bec_widgets/qt_utils/settings_dialog.py,sha256=8eGDV3XCYCUXLougnRM_k1JnYQVG23HfmjrbhRzlsRc,3408
|
@@ -369,8 +369,8 @@ tests/unit_tests/test_configs/config_device_no_entry.yaml,sha256=hdvue9KLc_kfNzG
|
|
369
369
|
tests/unit_tests/test_configs/config_scan.yaml,sha256=vo484BbWOjA_e-h6bTjSV9k7QaQHrlAvx-z8wtY-P4E,1915
|
370
370
|
tests/unit_tests/test_msgs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
371
371
|
tests/unit_tests/test_msgs/available_scans_message.py,sha256=m_z97hIrjHXXMa2Ex-UvsPmTxOYXfjxyJaGkIY6StTY,46532
|
372
|
-
bec_widgets-0.92.
|
373
|
-
bec_widgets-0.92.
|
374
|
-
bec_widgets-0.92.
|
375
|
-
bec_widgets-0.92.
|
376
|
-
bec_widgets-0.92.
|
372
|
+
bec_widgets-0.92.2.dist-info/METADATA,sha256=pDOIzaft9uc0DAZl-rmYhq9iDQ4kluGhwySTUtha2iE,1308
|
373
|
+
bec_widgets-0.92.2.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
374
|
+
bec_widgets-0.92.2.dist-info/entry_points.txt,sha256=3otEkCdDB9LZJuBLzG4pFLK5Di0CVybN_12IsZrQ-58,166
|
375
|
+
bec_widgets-0.92.2.dist-info/licenses/LICENSE,sha256=YRKe85CBRyP7UpEAWwU8_qSIyuy5-l_9C-HKg5Qm8MQ,1511
|
376
|
+
bec_widgets-0.92.2.dist-info/RECORD,,
|
pyproject.toml
CHANGED
File without changes
|
File without changes
|
File without changes
|