ezgo 0.0.10__tar.gz → 0.0.11__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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ezgo
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: 宇树Go2机器狗Python控制库
5
5
  Author-email: ezgo <noreply@example.com>
6
6
  License: MIT
@@ -417,6 +417,15 @@ pip install opencv-python numpy Pillow netifaces
417
417
 
418
418
  ## 更新日志
419
419
 
420
+ ### v0.0.11 (2025-12-11)
421
+ **修复**:
422
+ - 🐛 修复Go2错误码映射,添加错误码0的描述信息
423
+ - 🐛 改进错误状态显示,提供更清晰的状态反馈
424
+
425
+ **改进**:
426
+ - 🔧 完善错误码字典,包含"检查设备状态"描述
427
+ - 🔧 优化状态码处理逻辑
428
+
420
429
  ### v0.0.10 (2025-12-09)
421
430
  **修复**:
422
431
  - 🐛 修复懒加载模块导入错误,解决TypeError问题
@@ -382,6 +382,15 @@ pip install opencv-python numpy Pillow netifaces
382
382
 
383
383
  ## 更新日志
384
384
 
385
+ ### v0.0.11 (2025-12-11)
386
+ **修复**:
387
+ - 🐛 修复Go2错误码映射,添加错误码0的描述信息
388
+ - 🐛 改进错误状态显示,提供更清晰的状态反馈
389
+
390
+ **改进**:
391
+ - 🔧 完善错误码字典,包含"检查设备状态"描述
392
+ - 🔧 优化状态码处理逻辑
393
+
385
394
  ### v0.0.10 (2025-12-09)
386
395
  **修复**:
387
396
  - 🐛 修复懒加载模块导入错误,解决TypeError问题
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ezgo"
7
- version = "0.0.10"
7
+ version = "0.0.11"
8
8
  description = "宇树Go2机器狗Python控制库"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
@@ -8,7 +8,7 @@ ezgo - 宇树Go2机器狗Python控制库
8
8
  支持运动控制、视频流获取、UI界面等功能。
9
9
  """
10
10
 
11
- __version__ = "0.0.10"
11
+ __version__ = "0.0.11"
12
12
  __author__ = "ezgo"
13
13
  __email__ = ""
14
14
  __license__ = "MIT"
@@ -11,6 +11,7 @@ from unitree_sdk2py.idl.unitree_go.msg.dds_ import SportModeState_
11
11
 
12
12
 
13
13
  error_code = {
14
+ 0: "检查设备状态",
14
15
  100: "灵动",
15
16
  1001: "阻尼",
16
17
  1002: "站立锁定",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ezgo
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: 宇树Go2机器狗Python控制库
5
5
  Author-email: ezgo <noreply@example.com>
6
6
  License: MIT
@@ -417,6 +417,15 @@ pip install opencv-python numpy Pillow netifaces
417
417
 
418
418
  ## 更新日志
419
419
 
420
+ ### v0.0.11 (2025-12-11)
421
+ **修复**:
422
+ - 🐛 修复Go2错误码映射,添加错误码0的描述信息
423
+ - 🐛 改进错误状态显示,提供更清晰的状态反馈
424
+
425
+ **改进**:
426
+ - 🔧 完善错误码字典,包含"检查设备状态"描述
427
+ - 🔧 优化状态码处理逻辑
428
+
420
429
  ### v0.0.10 (2025-12-09)
421
430
  **修复**:
422
431
  - 🐛 修复懒加载模块导入错误,解决TypeError问题
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes