Commit Graph

19547 Commits

Author SHA1 Message Date
Zian Wen
7746f07fc4 fix: 修正多作业 H 关 OCR 替换 / correct H-stage OCR replacement (#17326)
## 说明

多作业模式进入 H10-1 关卡详情页后,OCR 可能会把关卡名识别为 `H1O-1`。现有替换规则没有将它还原为 `H10-1`,而是处理成了
`-1`,导致关卡校验失败并重新开始导航。

本 PR 将 `ClickStageName` 和 `ClickedCorrectStage` 中的 `$010` 改为
`${1}0`,明确区分捕获组 1 和后面的字符 `0`。

## 原因

原规则的本意是保留捕获组 1,再补一个 `0`:

```json
["(H\\d+)O(?=-)", "$010"],
["(-\\d+)O", "$010"]
```

OCR 后处理使用 `boost::regex_replace`。这里的 `$010` 会被解析为捕获组 10,而不是捕获组 1 后接
`0`。这两个正则都没有第 10 个捕获组,因此 `H1O-1` 最终被处理成 `-1`。

修改后的规则使用无歧义写法:

```json
["(H\\d+)O(?=-)", "${1}0"],
["(-\\d+)O", "${1}0"]
```

## 验证

- `resource/tasks/tasks.json` 可以正常解析。
- 四处相关替换均已改为 `${1}0`,`git diff --check` 通过。
- 使用 MAA `v6.14.1`、明日方舟 PC 端、2560 × 1440 分辨率测试 H10-1 多作业导航。

修复前:

```text
CharOcr: H1O-1
Proceed: -1
confirm stage name failed after retrying 3 times, stage name: H10-1
```

修复后,同样的 OCR 输入可以正确进入编队流程:

```text
[2026-07-12 14:12:08.499][TRC] CharOcr: H1O-1
[2026-07-12 14:12:08.499][TRC] Proceed: H10-1
[2026-07-12 14:12:09.545][INF] task: BattleStartPre, text: 开始行动
[2026-07-12 14:12:11.670][INF] SubTaskStart: BattleFormationTask
```

本次测试中没有再出现 `confirm stage name failed`。

<details>
<summary>English</summary>

## Summary

In multi-copilot mode, the stage name on the H10-1 detail panel may be
recognized as `H1O-1`. The existing replacement rules turn it into `-1`
instead of restoring `H10-1`, so stage confirmation fails and navigation
starts over.

This PR changes `$010` to `${1}0` in both `ClickStageName` and
`ClickedCorrectStage`, making the boundary between capture group 1 and
the literal `0` explicit.

## Root cause

The original rules were intended to preserve capture group 1 and append
a literal `0`:

```json
["(H\\d+)O(?=-)", "$010"],
["(-\\d+)O", "$010"]
```

OCR post-processing uses `boost::regex_replace`, where `$010` is parsed
as capture group 10 rather than capture group 1 followed by `0`. Since
these expressions do not contain a tenth capture group, `H1O-1` is
reduced to `-1`.

The replacement now uses the unambiguous `${1}0` form.

## Verification

- Parsed `resource/tasks/tasks.json` successfully.
- Confirmed all four affected replacements use `${1}0`; `git diff
--check` passes.
- Tested H10-1 multi-copilot navigation with MAA `v6.14.1` on the
Arknights PC client at 2560 × 1440.
- The same `H1O-1` OCR result was corrected to `H10-1`, after which MAA
clicked `BattleStartPre` and entered `BattleFormationTask`.
- No `confirm stage name failed` entry was produced during the post-fix
attempt.

</details>

Refs #16888
alpha/v6.14.2-alpha.1.d002.g7746f07fc4
2026-07-12 15:18:15 +08:00
github-actions[bot]
9de02b5988 chore: Auto update by pre-commit hooks
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/29168490922
[skip changelog]
alpha/v6.14.2-alpha.1.d001.g9de02b5988
2026-07-11 21:17:43 +00:00
uye
bad2644893 Release v6.14.1 (#17322)
## Summary by Sourcery

引入对新的 copilot ID 格式的支持,优化 UI 中 copilot
代码的路由逻辑,修复一些小的用户体验问题,刷新游戏资源数据,并添加用于分析 GitHub 发布下载统计并生成 HTML 报告的工具脚本。

New Features:
- 支持新的 `prts://` copilot 任务和任务集代码,同时兼容现有的 `maa://` 格式
- 添加发布下载统计工具,支持 HTML 报告输出以及 Windows 批处理封装

Bug Fixes:
- 确保在手动账号切换的启动流程中正确启用账号切换标记
- 禁止测试链接图片弹出窗口被调整大小

Enhancements:
- 改进 copilot 代码处理逻辑,通过集中解析、区分任务与任务集类型,并据此路由 UI 操作

Documentation:
- 更新本地化和 UI 文案,以反映新的 copilot 代码格式及相关 UI 变化

Chores:
- 更新关卡、肉鸽任务、物品和地块位置等游戏资源数据文件,包含新的活动和记忆地图
- 为发布下载统计工具添加本地 `.gitignore` 配置

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Introduce support for new copilot ID formats, refine copilot code
routing in the UI, fix small UX issues, refresh game resource data, and
add a tooling script to analyze GitHub release download statistics with
an HTML report.

New Features:
- Support new prts:// copilot job and job-set codes alongside existing
maa:// formats
- Add a release download statistics tool with HTML reporting and Windows
batch wrappers

Bug Fixes:
- Ensure manual account switch startup tasks enable account switching
flag
- Prevent test-link image popup window from being resizable

Enhancements:
- Improve copilot code handling by centralizing parsing, distinguishing
job vs job-set types, and routing UI actions accordingly

Documentation:
- Update localizations and UI strings to reflect new copilot code
formats and related UI changes

Chores:
- Update game resource data files for stages, roguelike tasks, items,
and tile positions, including new event and memory maps
- Add local .gitignore for the release download statistics tool

</details>
v6.14.1
2026-07-11 16:29:52 +08:00
uye
02f408fe7e docs: changelog 2026-07-11 16:29:24 +08:00
uye
6c205beca6 chore: 减少重复解析 2026-07-11 16:24:42 +08:00
uye
72213def33 feat: 支持 ZOOT 作业站新格式神秘代码 2026-07-11 16:15:11 +08:00
uye
a601e9adb1 chore: 统计小工具增加正式版各版本下载量 2026-07-11 15:04:15 +08:00
uye
e9e4411d6a feat: 新增下载量统计小工具 2026-07-11 15:04:15 +08:00
Saratoga-Official
9cb0ed6803 fix: 因网络原因跳过肉鸽结局剧情出错
fix #17319
2026-07-11 14:55:48 +08:00
Saratoga-Official
3f3a936508 fix: 折桠识别
fix #17317
2026-07-11 12:48:50 +08:00
github-actions[bot]
678b47531d chore: Auto Update Game Resources - 2026-07-10
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/29107560091

[skip changelog]
alpha/v6.14.1-alpha.1.d006.g678b47531d
2026-07-10 16:30:29 +00:00
Constrat
ef8cfcf316 fix: reduce size for template to fix EN 2026-07-10 15:38:49 +02:00
Manicsteiner
2dc7f5f9a5 chore: JP coppers ocr edit 2026-07-10 10:30:25 +08:00
github-actions[bot]
be41539ecb chore: Auto Update Game Resources - 2026-07-09
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/29057418750

[skip changelog]
2026-07-09 23:29:15 +00:00
status102
4dc8837b29 fix: 开始唤醒-手动切换账号运行时无法切换账号 alpha/v6.14.1-alpha.1.d002.g4dc8837b29 2026-07-09 19:47:20 +08:00
uye
dd643b809d chore: 禁用截图测试的窗口调整大小,避免 handycontrol 窗口在未启用元素时点击崩溃 alpha/v6.14.1-alpha.1.d001.gdd643b809d 2026-07-09 00:59:34 +08:00
uye
6147357bd0 Release v6.14.0 (#17291)
## Summary by Sourcery

为 6.14.0 版本发布做准备,提升配置健壮性、调整 Roguelike 任务参数,并在各语言版本中对齐文档与 schema。

Bug Fixes(错误修复):
- 防止新安装被错误标记为配置损坏,仅在从文件加载时对无效配置进行跟踪。
- 通过在列表导航后增加点击前延时,提高 Roguelike 铜币(copper)选择的可靠性。

Enhancements(增强功能):
- 当配置加载失败并初始化新的根配置时,确保会创建默认任务配置条目。
- 收紧任务设置的一般约束条件并微调控制器逻辑,以提升稳定性和可维护性。

Documentation(文档):
- 在所有支持的语言中,对齐回调 schema 和集成协议文档的格式与类型注解。

Chores(日常维护):
- 刷新全局资源数据、Roguelike 任务定义、本地化内容以及版本元数据,以适配新版本发布。
- 在控制器、视觉处理(vision)和 WPF 视图模型代码中进行小幅格式整理和日志消息清理。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Prepare 6.14.0 release with configuration robustness improvements,
roguelike task tuning, and documentation/schema alignment across
locales.

Bug Fixes:
- Prevent new installations from being marked as having broken
configuration by only tracking invalid configurations when loading from
file.
- Improve roguelike copper selection reliability by adding a delay
before clicking after list navigation.

Enhancements:
- Ensure default task configuration entries are created when
configuration load fails and a new root config is initialized.
- Tighten task settings generic constraints and minor controller logic
to improve stability and maintainability.

Documentation:
- Align callback schema and integration protocol documentation
formatting and type annotations across all supported languages.

Chores:
- Refresh global resource data, roguelike task definitions,
localizations, and version metadata for the new release.
- Apply small formatting and logging message cleanups in controller,
vision, and WPF view model code.

</details>

Bug Fixes(错误修复):
- 通过仅在从文件加载当前配置时追踪无效配置,避免在全新安装时将配置标记为损坏。

Enhancements(功能增强):
- 优化配置加载流程,以追踪设置是从主配置文件还是备份文件加载的。

Documentation(文档):
- 整理所有支持语言中的回调模式(callback schema)文档格式。

Chores(杂项):
- 为新版本更新全局资源数据、roguelike 任务定义、本地化字符串以及版本元数据。
- 在控制器和视觉组件中进行少量代码风格和格式清理。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

为 6.14.0 版本发布做准备,提升配置健壮性、调整 Roguelike 任务参数,并在各语言版本中对齐文档与 schema。

Bug Fixes(错误修复):
- 防止新安装被错误标记为配置损坏,仅在从文件加载时对无效配置进行跟踪。
- 通过在列表导航后增加点击前延时,提高 Roguelike 铜币(copper)选择的可靠性。

Enhancements(增强功能):
- 当配置加载失败并初始化新的根配置时,确保会创建默认任务配置条目。
- 收紧任务设置的一般约束条件并微调控制器逻辑,以提升稳定性和可维护性。

Documentation(文档):
- 在所有支持的语言中,对齐回调 schema 和集成协议文档的格式与类型注解。

Chores(日常维护):
- 刷新全局资源数据、Roguelike 任务定义、本地化内容以及版本元数据,以适配新版本发布。
- 在控制器、视觉处理(vision)和 WPF 视图模型代码中进行小幅格式整理和日志消息清理。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Prepare 6.14.0 release with configuration robustness improvements,
roguelike task tuning, and documentation/schema alignment across
locales.

Bug Fixes:
- Prevent new installations from being marked as having broken
configuration by only tracking invalid configurations when loading from
file.
- Improve roguelike copper selection reliability by adding a delay
before clicking after list navigation.

Enhancements:
- Ensure default task configuration entries are created when
configuration load fails and a new root config is initialized.
- Tighten task settings generic constraints and minor controller logic
to improve stability and maintainability.

Documentation:
- Align callback schema and integration protocol documentation
formatting and type annotations across all supported languages.

Chores:
- Refresh global resource data, roguelike task definitions,
localizations, and version metadata for the new release.
- Apply small formatting and logging message cleanups in controller,
vision, and WPF view model code.

</details>

</details>
v6.14.0
2026-07-09 00:49:40 +08:00
uye
70540c8037 docs: changelog 2026-07-09 00:49:02 +08:00
Manicsteiner
80909f002c chore: JP roguelike JieGarden StartWithSeed and ocr edits 2026-07-08 19:18:38 +08:00
Constrat
a11d8ca934 i18n: spacing post : 2026-07-08 13:05:28 +02:00
Constrat
b4cdd518af chore: EN IS6 StartWithSeed 2026-07-08 12:48:50 +02:00
Manicsteiner
9782dd36d9 perf: 在通宝页面滑动和选取之间添加延迟 (#17295) 2026-07-08 10:45:35 +02:00
Manicsteiner
100e6c7202 chore: JP roguelike JieGarden DLC2 edits (#17294)
* chore: JP roguelike JieGarden DLC2 edits

* chore: more edits
2026-07-08 10:45:09 +02:00
status102
f3a8a108ce fix: 首次运行时错误弹出目标配置缺失的提示 2026-07-08 14:19:46 +08:00
status102
a16f1ab5ed Revert "fix: 修复第一次启动时错误弹出目标配置缺失的提示"
This reverts commit f5ba5f50b9.
2026-07-08 14:15:12 +08:00
status102
a7f9da2345 perf: TaskConfig类型非空限定 2026-07-08 14:04:52 +08:00
Constrat
ba631144af fix: perhaps vue fix (#17296)
* fix: perhaps fix?

* fix: typo

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* fix: forgor

---------

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-07-08 13:19:24 +08:00
uye
e1b50141bc Revert "docs: fix <object> 标签"
This reverts commit 756b7d9ba5.
2026-07-08 13:18:59 +08:00
uye
756b7d9ba5 docs: fix <object> 标签 2026-07-08 13:12:54 +08:00
HX3N
45365520b3 chore: KR roguelike JieGarden StartExploreWithSeed 2026-07-08 13:44:44 +09:00
Constrat
7a1f42ff73 chore: move ancient 2 yro 153 base rotations alpha/v6.14.0-beta.2.d008.g7a1f42ff73 2026-07-07 16:38:33 +02:00
Constrat
ce6c255a11 fix: EN IS6 regex tongbao 2026-07-07 16:22:30 +02:00
Constrat
8f20181d10 perf: remove dupes EN 2026-07-07 14:43:56 +02:00
Constrat
62cd390016 chore: EN IS6 DLC2 2026-07-07 14:40:15 +02:00
HX3N
f75b1e84a9 chore: KR roguelike JieGarden DLC2 (#17290)
## Summary by Sourcery

为《JieGarden》肉鸽模式 DLC2 内容新增韩文任务定义,并更新 UI 本地化。

新特性:
- 在肉鸽任务资源文件中为《JieGarden》DLC2 引入韩文任务定义。

改进:
- 更新韩文 UI 本地化字符串,以涵盖新的《JieGarden》肉鸽内容和相关术语。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Add Korean task definitions and UI localization updates for the
JieGarden roguelike DLC2 content.

New Features:
- Introduce Korean task definitions for JieGarden DLC2 in roguelike task
resource files.

Enhancements:
- Update Korean UI localization strings to cover new JieGarden roguelike
content and terminology.

</details>

新增功能:
- 在肉鸽任务资源文件中为《节园(JieGarden)》DLC2 添加韩文任务定义。

增强改进:
- 刷新韩文 UI 本地化文案,以支持新的与肉鸽《节园(JieGarden)》相关的内容和术语。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

为《JieGarden》肉鸽模式 DLC2 内容新增韩文任务定义,并更新 UI 本地化。

新特性:
- 在肉鸽任务资源文件中为《JieGarden》DLC2 引入韩文任务定义。

改进:
- 更新韩文 UI 本地化字符串,以涵盖新的《JieGarden》肉鸽内容和相关术语。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Add Korean task definitions and UI localization updates for the
JieGarden roguelike DLC2 content.

New Features:
- Introduce Korean task definitions for JieGarden DLC2 in roguelike task
resource files.

Enhancements:
- Update Korean UI localization strings to cover new JieGarden roguelike
content and terminology.

</details>

</details>
2026-07-07 18:07:58 +08:00
uye
f5ba5f50b9 fix: 修复第一次启动时错误弹出目标配置缺失的提示 2026-07-07 16:59:38 +08:00
github-actions[bot]
bb4aaa936a chore: Auto update by pre-commit hooks
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/28824604000
[skip changelog]
alpha/v6.14.0-beta.2.d002.gbb4aaa936a
2026-07-06 21:31:59 +00:00
github-actions[bot]
dbfb58d0ab chore: Auto Update Game Resources - 2026-07-06
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/28812545808

[skip changelog]
2026-07-06 18:04:31 +00:00
uye
06f19aa25d Release v6.14.0-beta.2 (#17288)
## Summary by Sourcery

通过基于模板的关卡导航来处理活动关卡与支线关卡,当没有可用模板时回退到 OCR。

新功能:
- 添加一个辅助工具,用标准化关卡代码解析活动关卡模板路径,并在资源存在时使用模板匹配进行关卡导航。
- 为多协助作战关卡选择和支线复刻关卡选择启用基于模板的导航,以提升关卡识别的稳定性。

改进:
- 在资源加载阶段,按完整相对路径索引所有模板图片文件,以便在 C++ 代码中动态查找关卡导航模板。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Introduce template-based stage navigation for event and side-story
stages, falling back to OCR when no template is available.

New Features:
- Add a helper to resolve event stage template paths from standardized
stage codes and use template matching for stage navigation when
resources exist.
- Enable template-based navigation for multi-copilot stage selection and
side-story reopen stage selection to improve stage recognition
reliability.

Enhancements:
- Index all template image files by full relative path during resource
loading to allow dynamic lookup of stage navigation templates from C++
code.

</details>

新功能:
- 为事件关卡引入基于模板的导航机制,通过从标准化路径解析每个关卡的截图模板,并在可用时优先使用模板而不是 OCR。
- 将基于模板的导航应用于多协助器(multi-copilot)关卡选择以及支线故事重开关卡选择,以在这些流程中提供更稳健的关卡识别支持。

增强:
- 在加载模板资源时按相对路径索引所有模板图片文件,以便可以从 C++ 代码中动态查找关卡导航模板。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

通过基于模板的关卡导航来处理活动关卡与支线关卡,当没有可用模板时回退到 OCR。

新功能:
- 添加一个辅助工具,用标准化关卡代码解析活动关卡模板路径,并在资源存在时使用模板匹配进行关卡导航。
- 为多协助作战关卡选择和支线复刻关卡选择启用基于模板的导航,以提升关卡识别的稳定性。

改进:
- 在资源加载阶段,按完整相对路径索引所有模板图片文件,以便在 C++ 代码中动态查找关卡导航模板。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Introduce template-based stage navigation for event and side-story
stages, falling back to OCR when no template is available.

New Features:
- Add a helper to resolve event stage template paths from standardized
stage codes and use template matching for stage navigation when
resources exist.
- Enable template-based navigation for multi-copilot stage selection and
side-story reopen stage selection to improve stage recognition
reliability.

Enhancements:
- Index all template image files by full relative path during resource
loading to allow dynamic lookup of stage navigation templates from C++
code.

</details>

</details>

## Summary by Sourcery

引入基于模板的活动与支线关卡导航,改进仓库识别与界面行为,并为测试版添加性能遥测与配置迁移支持。

New Features:
- 为活动关卡添加基于模板的导航、多协助器关卡选择,以及支线剧情重开关卡的导航;在无模板可用时自动回退到 OCR。
- 支持从“全部”标签识别基础仓库物品,并整合最新活动内容的关卡模板与资源。
- 添加在启动任务中切换账号的开关选项,并自动迁移现有配置。

Enhancements:
- 将模拟器 FPS 检查改为异步非阻塞,同时确保安全关闭,并通过回调协议上报模拟器刷新率。
- 使用游戏定义的排序 ID 优化仓库识别顺序,并改进与仓库相关的成就追踪与缓存机制。
- 持久化并恢复 Monet 主题的主色,避免启动时的闪烁,并正确释放取色器相关资源。
- 按完整相对路径索引模板图片,以支持从 C++ 代码进行动态查找。
- 调整任务队列序列化逻辑以遵守新的账号切换标志,并改进 UI 对仓库数据变化的响应。
- 将 GitHub 发布准备工作流更新至较新的 checkout 动作版本。

CI:
- 将发布准备相关的 GitHub Actions 工作流更新为使用 `actions/checkout@v7`。

Documentation:
- 在所有支持的语言中记录新的回调消息类型,用于截图性能与模拟器 FPS。
- 扩展内部知识文档,增加关于 PC 客户端 UI 因鼠标位置导致视差问题的说明与指引。

Chores:
- 为最近的内容与界面选项(包括活动关卡与设置标签)添加新的资源与本地化条目。

<details>
<summary>Original summary in English</summary>

## Summary by Sourcery

Introduce template-based event and side-story stage navigation, improve
depot recognition and UI behavior, and add performance telemetry and
configuration migrations for a beta release.

New Features:
- Add template-based navigation for event stages, multi-copilot stage
selection, and side-story reopen stages with automatic fallback to OCR
when no template is available.
- Enable recognition of basic depot items from the "All" tab and
integrate new stage templates/resources for the latest event content.
- Add an option to toggle account switching in startup tasks with
automatic migration of existing configurations.

Enhancements:
- Make emulator FPS checks asynchronous and non-blocking while ensuring
safe shutdown, and report emulator refresh rate via callback schema.
- Refine depot recognition ordering using game-defined sort IDs and
improve depot-related achievement tracking and caching.
- Persist and restore Monet theme primary color to avoid flicker on
startup and dispose color picker resources correctly.
- Index template images by full relative path to support dynamic lookup
from C++ code.
- Adjust task queue serialization to respect the new account switching
flag and improve UI reactions to depot data changes.
- Update GitHub release-preparation workflow to a newer checkout action.

CI:
- Update the release-preparation GitHub Actions workflow to use
actions/checkout@v7.

Documentation:
- Document new callback message types for screenshot performance and
emulator FPS in all supported languages.
- Extend internal knowledge documentation with guidance on PC client UI
parallax issues caused by mouse position.

Chores:
- Add new resource and localization entries for recent content and UI
options, including event stages and settings labels.

</details>
v6.14.0-beta.2
2026-07-07 01:52:20 +08:00
github-actions[bot]
a90bd4a590 docs: Auto Update Changelogs of v6.14.0-beta.2 (#17289)
* docs: Auto Generate Changelog of Release v6.14.0-beta.2

* docs: changelog

* docs: changelog

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: uye <99072975+ABA2396@users.noreply.github.com>
2026-07-07 01:50:42 +08:00
github-actions[bot]
bc081906e8 feat: Update Submodules MAAUnified, MaaMacGui, maa-cli
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/28809480048
[skip changelog]
2026-07-06 17:11:53 +00:00
Manicsteiner
1556ecd8f8 chore: JP roguelike JieGarden DLC2 (#17286) 2026-07-07 01:10:38 +08:00
uye
8788c5b4b9 rft: DepotResult 改为 ObservableList 2026-07-07 01:04:40 +08:00
github-actions[bot]
d70cbb592f chore: Auto Update Game Resources - 2026-07-06
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/28808868165

[skip changelog]
2026-07-06 17:02:21 +00:00
HY
ffd094a5d3 chore: 繁中服「未許之地」 (#17285) 2026-07-07 00:52:13 +08:00
uye
1dda1ec985 feat: 仓库识别增加五种基础材料(源石、合成玉、龙门币、赤金以及采购凭证)识别支持 (#17287)
* feat: 增加五种基础材料识别支持

fix #17284

* chore: 移除基础物资黑名单

* chore: 注释漏改了
2026-07-07 00:38:45 +08:00
uye
90e97e1b61 perf: 帧率检查改为异步,避免阻塞截图返回 (#17277)
* perf: 帧率检查改为异步,避免阻塞截图返回

* chore: Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* chore: Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>

* chore: 将 FPS 上报所需的数据封装到异步任务的参数中,而不是依赖 this

---------

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-07-07 00:31:11 +08:00
uye
8a4ffff97b docs: 增加截图相关回调文档 2026-07-07 00:30:53 +08:00
Constrat
3cd3b7355f i18n: EN 2026-07-06 17:32:54 +02:00
Constrat
c99c4c5265 fix: EN varkaris weird accent 2026-07-06 17:24:08 +02:00