rust-rpa 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -587,6 +587,12 @@ if (targetWindow) {
587
587
 
588
588
  ## 更新日志
589
589
 
590
+ ### 0.2.3
591
+
592
+ #### 修复
593
+
594
+ - **OCR `recognizeText` 多区域识别修复**: 修复了 `recognizeText` 在指定多个 `regions` 时坐标转换错误的问题
595
+
590
596
  ### 0.2.2
591
597
 
592
598
  #### 新功能
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rust-rpa",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Rust-based RPA automation library for Node.js",
5
5
  "type": "commonjs",
6
6
  "main": "index.js",
@@ -67,9 +67,9 @@
67
67
  "commander": "^14.0.3"
68
68
  },
69
69
  "optionalDependencies": {
70
- "@alibot/rust-rpa-win32-x64-msvc": "0.2.2",
71
- "@alibot/rust-rpa-win32-ia32-msvc": "0.2.2",
72
- "@alibot/rust-rpa-darwin-x64": "0.2.2",
73
- "@alibot/rust-rpa-darwin-arm64": "0.2.2"
70
+ "@alibot/rust-rpa-win32-x64-msvc": "0.2.3",
71
+ "@alibot/rust-rpa-win32-ia32-msvc": "0.2.3",
72
+ "@alibot/rust-rpa-darwin-x64": "0.2.3",
73
+ "@alibot/rust-rpa-darwin-arm64": "0.2.3"
74
74
  }
75
75
  }