chore(version): 更新版本号至 0.0.4 (#3040)

- 将 manifest.json 中的版本号从 0.0.3 更新为 0.0.4
- 在 README.md 的兼容性表格中添加 0.0.4 版本记录
- 在版本历史中新增 0.0.4 版本的发布日期和变更说明
- 记录修复识别异常的变更内容

fix(AutoPlan): 修复物理识别错误处理逻辑

- 注释掉异常情况下的ESC按键操作避免意外退出
- 保持错误日志记录功能
- 维持异常抛出机制确保错误状态传递
This commit is contained in:
云端客
2026-03-26 15:02:46 +08:00
committed by GitHub
parent 5e105ca206
commit 74549fdbda
3 changed files with 5 additions and 2 deletions

View File

@@ -302,8 +302,11 @@
| 0.0.1 | oiJbmjU2R0NniiwiZxh | 0.0.4+ |
| 0.0.2 | oiJbmjU2R0NniiwiZxh | 0.0.5+ |
| 0.0.3 | oiJbmjU2R0NniiwiZxh | 0.0.6+ |
| 0.0.4 | oiJbmjU2R0NniiwiZxh | 0.0.6+ |
## 版本历史(简要)
### 0.0.4 2026.03.25
- 修复识别异常
### 0.0.3 2026.03.13
- 健全体力识别(双重识别兜底)
### 0.0.2 2026.03.07

View File

@@ -1,6 +1,6 @@
{
"name": "自动体力计划",
"version": "0.0.3",
"version": "0.0.4",
"description": "",
"settings_ui": "settings.json",
"main": "main.js",

View File

@@ -349,7 +349,7 @@ async function countOriginalResin(tryOriginalMode, opToMainUi, openMap) {
return ocr_physical?.current;
} else {
//异常 退出至地图 尝试使用原始模式
await keyPress("VK_ESCAPE")
// await keyPress("VK_ESCAPE")
log.error(`ocrPhysical error`);
throw new Error("ocrPhysical error");
}