Skip to content

Commit

Permalink
Version bump, patch dimensions (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
kjy5 authored Apr 11, 2024
1 parent a95e147 commit 598b2fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ephys_link/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0b0"
__version__ = "1.3.0b1"
2 changes: 1 addition & 1 deletion src/ephys_link/platforms/new_scale_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def __init__(self) -> None:
super().__init__()

self.num_axes = 3
self.dimensions = Vector4(x=20, y=20, z=20, w=0)
self.dimensions = Vector4(x=15, y=15, z=15, w=0)

self.ctrl = NstCtrlHostIntf()

Expand Down
2 changes: 1 addition & 1 deletion src/ephys_link/platforms/new_scale_pathfinder_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __init__(self, port: int = 8080) -> None:
super().__init__()

self.num_axes = -1
self.dimensions = [15, 15, 15]
self.dimensions = Vector4(x=15, y=15, z=15, w=0)

self.port = port

Expand Down

0 comments on commit 598b2fb

Please sign in to comment.