moteus-gui 0.3.76__tar.gz → 0.3.78__tar.gz

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.
@@ -1,13 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: moteus-gui
3
- Version: 0.3.76
3
+ Version: 0.3.78
4
4
  Summary: moteus brushless controller graphical user interfaces
5
5
  Home-page: https://github.com/mjbots/moteus
6
6
  Author: mjbots Robotic Systems
7
7
  Author-email: info@mjbots.com
8
- License: UNKNOWN
9
8
  Keywords: moteus
10
- Platform: UNKNOWN
11
9
  Classifier: Development Status :: 3 - Alpha
12
10
  Classifier: Intended Audience :: Developers
13
11
  Classifier: License :: OSI Approved :: Apache Software License
@@ -26,5 +24,3 @@ To install and run:
26
24
  pip3 install moteus-gui
27
25
  python3 -m moteus_gui.tview
28
26
  ```
29
-
30
-
@@ -449,7 +449,6 @@ class EditDelegate(QtWidgets.QStyledItemDelegate):
449
449
  options = list(maybe_schema.enum_class)
450
450
  options_text = [repr(x) for x in options]
451
451
  editor.setEditable(True)
452
- editor.lineEdit().editingFinished.connect(self.commitAndCloseEditor)
453
452
  elif isinstance(maybe_schema, reader.BooleanType):
454
453
  options_text = ['False', 'True']
455
454
  editor.activated.connect(self.commitAndCloseEditor)
@@ -1136,7 +1135,7 @@ class TviewMainWindow():
1136
1135
 
1137
1136
  async def _run_user_command(self, command):
1138
1137
  delay_re = re.search(r"^:(\d+)$", command)
1139
- device_re = re.search(r"^(A|\d+)>(.*)$", command)
1138
+ device_re = re.search(r"^(A|\d+)>\s*(.*)$", command)
1140
1139
  traj_re = re.search(r"^(\?(\d+)?)$", command)
1141
1140
 
1142
1141
  device_nums = [self.devices[0].number]
@@ -12,4 +12,4 @@
12
12
  # See the License for the specific language governing permissions and
13
13
  # limitations under the License.
14
14
 
15
- VERSION="0.3.76"
15
+ VERSION="0.3.78"
@@ -1,13 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: moteus-gui
3
- Version: 0.3.76
3
+ Version: 0.3.78
4
4
  Summary: moteus brushless controller graphical user interfaces
5
5
  Home-page: https://github.com/mjbots/moteus
6
6
  Author: mjbots Robotic Systems
7
7
  Author-email: info@mjbots.com
8
- License: UNKNOWN
9
8
  Keywords: moteus
10
- Platform: UNKNOWN
11
9
  Classifier: Development Status :: 3 - Alpha
12
10
  Classifier: Intended Audience :: Developers
13
11
  Classifier: License :: OSI Approved :: Apache Software License
@@ -26,5 +24,3 @@ To install and run:
26
24
  pip3 install moteus-gui
27
25
  python3 -m moteus_gui.tview
28
26
  ```
29
-
30
-
@@ -1,3 +1,2 @@
1
1
  [console_scripts]
2
2
  tview = moteus_gui.tview:main
3
-
@@ -24,7 +24,7 @@ long_description = (here / 'README.md').read_text(encoding='utf-8')
24
24
 
25
25
  setuptools.setup(
26
26
  name = 'moteus-gui',
27
- version = "0.3.76",
27
+ version = "0.3.78",
28
28
  description = 'moteus brushless controller graphical user interfaces',
29
29
  long_description = long_description,
30
30
  long_description_content_type = 'text/markdown',
File without changes
File without changes