Skip to content

Commit

Permalink
dynamic components for all motors when WritePoolMotorPositions
Browse files Browse the repository at this point in the history
  • Loading branch information
jkotan committed May 27, 2024
1 parent f6ecc04 commit da56b51
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2024-01-25 Jan Kotanski <[email protected]>
* dynamic components for all motors when WritePoolMotorPositions (#123)
* tagged as v3.40.0

2024-01-25 Jan Kotanski <[email protected]>
* change default user_data type to NXparameters (#123)
* tagged as v3.39.0
Expand Down
3 changes: 2 additions & 1 deletion nxsrecconfig/ProfileManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,8 @@ def __addPreselectedComponents(self, components):
if cp in jpcps.keys() and jpcps[cp] is False:
jpcps[cp] = None
for ds in fdss:
snpds[ds] = True
if ds not in poolds:
snpds[ds] = True
for ds, val in snpds.items():
if val is not True:
jpdss[ds] = None
Expand Down
2 changes: 1 addition & 1 deletion nxsrecconfig/Release.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
""" NeXus Sardana Recorder Settings - Release """

#: (:obj:`str`) package version
__version__ = "3.39.0"
__version__ = "3.40.0"

0 comments on commit da56b51

Please sign in to comment.