Commit Graph

18425 Commits

Author SHA1 Message Date
uye
d2c2989f4e feat: 增加更新数据任务 (#16026)
* feat: 增加更新数据任务

* chore: 仅在立即启动时更新提示

* perf: 只解析一次 json

* feat: 按完成度优先级显示状态

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

* fix: typo

* rft: 多taskId支持 part.1

* rft: 多taskId支持 part.2

* rft: 多taskId支持 part.2.5

* rft: 多taskId支持 part.3

* fix: 错误设置标签状态

* feat: 统一命名

* chore: 注释

---------

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: status102 <102887808+status102@users.noreply.github.com>
2026-03-20 02:10:38 +08:00
github-actions[bot]
c8ad17dba0 chore: Auto Update Game Resources - 2026-03-19
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/23305870614

[skip changelog]
2026-03-19 16:40:39 +00:00
uye
ae0a3c4871 feat: 同时启动多个模拟器时使用自动检测连接时提供弹窗选择 (#16020)
feat: 同时启动多个模拟器时使用自动检测连接时提供弹窗选择


https://github.com/user-attachments/assets/0b424e4d-6704-4d63-84dc-64916df6220b

## Summary by Sourcery

添加通用的项目选择对话框,并使用它在自动检测期间处理多个已检测到的模拟器和连接地址。

New Features:
- 引入可复用的项目选择对话框和视图模型,可以显示带有可自定义标题和提示语的项目列表,并返回所选项目。
- 当检测到多个模拟器或多个 ADB 路径时,允许用户选择要连接的模拟器实例。
- 当检测到多个非默认的 ADB 连接地址时,允许用户选择要使用的连接地址。

Bug Fixes:
- 当发现多个候选项时,通过明确要求用户进行选择,防止产生含糊不清或错误的模拟器/ADB 选择。
- 当不存在有效目录时,将已配置路径初始化为空,避免强制使用硬编码的默认模拟器安装路径。
- 确保选择对话框始终在 UI 线程调度器上创建和显示,以避免潜在的线程问题。

Enhancements:
- 优化模拟器检测逻辑,以同时跟踪模拟器名称和解析后的 ADB 路径,对结果去重,并在选择界面中展示这些信息。
- 使用通用项目选择对话框替换特定于模拟器路径的对话框,并简化相关视图模型的职责。
- 通过可在不同选择场景中复用的通用选择与提示字符串,改进本地化支持。

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

## Summary by Sourcery

Add generic item selection dialog and use it to handle multiple detected
emulators and connection addresses during auto-detection.

New Features:
- Introduce a reusable item selection dialog and view model that can
display a list of items with customizable title and prompt and return
the selected item.
- Allow users to choose which emulator instance to connect to when
multiple emulators or ADB paths are detected.
- Allow users to choose which connection address to use when multiple
non-default ADB addresses are detected.

Bug Fixes:
- Prevent ambiguous or incorrect emulator/ADB selection by explicitly
requiring a user choice when multiple candidates are found.
- Avoid forcing hard-coded default emulator installation paths by
initializing configured paths as empty when no valid directory exists.
- Ensure selection dialogs are always created and shown on the UI thread
dispatcher to avoid potential threading issues.

Enhancements:
- Refine emulator detection to track both emulator name and resolved ADB
path, deduplicate results, and surface this information in the selection
UI.
- Replace the emulator-path-specific dialog with a generic item
selection dialog and simplify related view model responsibilities.
- Improve localization support with generic selection and prompt strings
that can be reused across different selection scenarios.

</details>
2026-03-19 22:56:50 +08:00
uye
42c0d75e89 build: 改为 SelfContained 发布模式 (#16019)
<img width="3190" height="208" alt="07832262dcc66157005c08cc95a03fd1"
src="https://github.com/user-attachments/assets/84630506-c595-4999-ac7b-9c79f200bb16"
/>
<img width="1753" height="91" alt="b8ee23114f21ed1047697a77e713f1e5"
src="https://github.com/user-attachments/assets/6d781864-9c65-4774-85c7-8c22a1210285"
/>

完整包体积 +67 M
更新包第一次也会大差不多这么多,后面因为增量的原因不会影响

## Summary by Sourcery

记录迁移到自包含(self-contained)的 .NET 部署方式,并相应更新运行时和操作系统支持要求。

新功能:
- 通过自包含部署,将 .NET 运行时打包进 Windows GUI 构建中,从而不再需要单独安装 .NET。

增强改进:
- 在所有支持的语言中明确说明:安装时仅需要 Visual C++ 运行时,因为 .NET 现在已随程序一同提供。
- 更新 Linux/Wine 使用文档,以反映 Windows 构建已包含 .NET 运行时这一事实。
- 重新措辞操作系统支持说明,解释由于运行时和系统组件依赖,MAA 需要 Windows 10 或更高版本。

构建:
- 调整 WPF GUI 项目和依赖设置脚本以使用自包含发布模式,并停止安装外部的 .NET Desktop Runtime。

文档:
- 更新所有语言的常见问题(FAQ)、安装说明和新手指南,使其与新的自包含部署方式和运行时要求保持一致。

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

## Summary by Sourcery

Document the switch to self-contained .NET deployment and update runtime
and OS support requirements accordingly.

New Features:
- Bundle the .NET runtime into the Windows GUI build via self-contained
deployment to remove the need for a separate .NET installation.

Enhancements:
- Clarify across all supported languages that only the Visual C++
runtime is required at install time, as .NET is now included.
- Update Linux/Wine usage docs to reflect that the Windows build already
contains the .NET runtime.
- Reword OS support notes to explain that MAA requires Windows 10 or
later due to its runtime and system component dependencies.

Build:
- Adjust the WPF GUI project and dependency setup script to use
self-contained publish mode and stop installing the external .NET
Desktop Runtime.

Documentation:
- Refresh FAQ, installation, and newbie guides in all languages to match
the new self-contained deployment and runtime requirements.

</details>
2026-03-19 22:56:07 +08:00
MistEO
f1fb998a27 ai: Optimize English Output 2026-03-19 16:27:13 +08:00
MistEO
b60589a868 ci: 放弃帕拉斯风格恢复
Updated initial comment body for AI analysis and modified prompt template.
2026-03-19 16:12:09 +08:00
MistEO
b9d417b4a7 ai: Add English translation section to SKILL.md
Added a section for English translation of conclusions.
2026-03-19 16:09:28 +08:00
MistEO
5113bde926 ai: 调整输出格式
Removed the attachment overview section and added a section for AI suggestions.
2026-03-19 16:06:39 +08:00
github-actions[bot]
76fc48f8fe chore: Auto Update Game Resources - 2026-03-19
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/23284653205

[skip changelog]
2026-03-19 07:37:39 +00:00
MistEO
ca3bbedfd4 ai: 优化bot提示词,输出行号和中文任务名 2026-03-19 15:21:53 +08:00
uye
f8b64ef908 feat: 运行结束后保留上次运行结果 2026-03-19 05:34:05 +08:00
uye
eb0b730160 perf(wpf): TaskQueueList 自适应高度 2026-03-19 04:12:37 +08:00
uye
d9400ab1e0 rft: 更新后第一次重启只进行文件更新不加载多余数据 2026-03-19 03:41:40 +08:00
uye
4474384897 feat: 支持雷电14注册表查询 2026-03-19 00:56:55 +08:00
uye
ab73311ff8 chore: 使用本地缓存数据时不显示 Growl 2026-03-19 00:21:12 +08:00
Status102
fa981af0ac perf(wpf): wpf下载框样式遵循是否使用卡片设置 (#16029) 2026-03-19 00:09:50 +08:00
status102
730aea7fa2 fix: 9e846609aa 中的错误 2026-03-18 20:18:43 +08:00
Frog Chen
1a13932f05 feat: AVD截图增强 (#15608)
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
2026-03-18 16:11:58 +08:00
status102
9a130994ed rft(wpf): 空配置默认任务拆分 2026-03-18 14:10:19 +08:00
status102
9e846609aa rft(wpf): 添加任务/修改任务设置时返回taskId 2026-03-18 10:55:26 +08:00
github-actions[bot]
00cd985907 chore: Auto Templates Optimization
Triggered by bdd748e1f0

[skip changelog]
2026-03-17 23:39:02 +00:00
Manicsteiner
bdd748e1f0 chore: JP ocr fix (#16027)
部分修复 #16024 
继o和a有概率识别为西里尔字母后,c也有概率识别为西里尔字母
BattleQuickFormationCollapseRole.png 对应内容似乎更改了文字大小

## 由 Sourcery 提供的总结

更新日文 OCR 配置和相关任务资源,以提升字符识别效果,并反映更新后的 UI 资源。

错误修复:
- 调整 OCR 字符映射,减少在日文客户端中将拉丁字符误识别为西里尔字符的情况。

功能改进:
- 更新任务配置,以匹配 `BattleQuickFormationCollapseRole` UI 资源的变更,包括重新调整的文字尺寸。

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

## Summary by Sourcery

Update Japanese OCR configuration and related task resources to improve
character recognition and reflect updated UI assets.

Bug Fixes:
- Adjust OCR character mappings to reduce misrecognition of Latin
characters as Cyrillic in the Japanese client.

Enhancements:
- Update task configuration to match changes in the
BattleQuickFormationCollapseRole UI asset, including revised text
sizing.

</details>
2026-03-18 00:38:38 +01:00
github-actions[bot]
4461b158be feat: Update Submodules MaaMacGui, maa-cli
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/23218398226
[skip changelog]
alpha/v6.5.3-alpha.1.d030.g4461b158b
2026-03-17 22:04:47 +00:00
MistEO
6ccfc69fb4 ai: 帕拉斯固定称呼“博士” 2026-03-18 02:10:59 +08:00
MistEO
bfd6c27bdd ai: 牛牛! 2026-03-18 01:51:59 +08:00
status102
1dd4715f8e perf(wpf): TaskQueueList Height 2026-03-17 21:22:16 +08:00
status102
2d39d5385c rft: 移除手动触发切换账号时的启动流程逻辑, 统一使用LinkStart 2026-03-17 21:13:58 +08:00
Status102
d6601334f2 perf(wpf): 移除自动战斗的页签检查, 改为检查作业关卡 (#16025)
* perf(wpf): 移除自动战斗的页签检查, 改为检查作业关卡

* fix: tye and i18n
2026-03-17 20:37:04 +08:00
status102
0e01d7d9c1 fix: 自定干员技能范围检查 2026-03-17 20:20:44 +08:00
MistEO
e5ebb49d94 ci: 加点注释 2026-03-17 16:49:34 +08:00
MistEO
e2db506bca ci: 同步AI ISSUE BOT更改 2026-03-17 15:00:46 +08:00
status102
eec4679a9c fix: 在使用空图片进行匹配时输出错误Log alpha/v6.5.3-alpha.1.d021.geec4679a9c 2026-03-17 10:22:28 +08:00
github-actions[bot]
50ce19910f chore: Auto Update Game Resources - 2026-03-16
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/23164003143

[skip changelog]
alpha/v6.5.3-alpha.1.d020.g50ce19910f
2026-03-16 20:19:14 +00:00
uye
5ce8df552e fix: 勾选手动输入关卡名时无法拖动候选关卡 2026-03-17 03:26:42 +08:00
Constrat
95f000fc9c style: add rainbow to yostaren 1080p + recolor rainbow for readability 2026-03-16 19:23:29 +01:00
uye
af1d35422c chore: 赠送线索后多等待一段时间,避免赠送线索后的弹窗挡住自己新线索的图标 2026-03-17 02:20:59 +08:00
status102
639a67b30e fix: 在使用空图片进行匹配时输出错误Log 2026-03-17 01:32:10 +08:00
MistEO
437e99e069 ci: 流式 AI 分析
Added environment variables for initial comment and action link in the GitHub Actions workflow. Updated the comment body to use these variables and improved the AI analysis process with streaming updates.
2026-03-16 23:43:29 +08:00
status102
f7ae271a2b fix: 地图名查找 2026-03-16 21:01:39 +08:00
status102
6349d68f8c perf: 作业列表解析按钮icon 2026-03-16 20:35:55 +08:00
MistEO
9b49b6a53a ci(chore): 注释给的地址没改 2026-03-16 20:34:43 +08:00
github-actions[bot]
fd65e8abdb chore: Auto Update Game Resources - 2026-03-16
https://github.com/MaaAssistantArknights/MaaAssistantArknights/actions/runs/23142396593

[skip changelog]
2026-03-16 11:56:26 +00:00
travellerse
56be6361ee fix: 处理通宝置换/投钱后可能出现的藏品/通宝获得弹窗 (#15993) 2026-03-16 19:47:41 +08:00
Aliothmoon
0195feb03c perf: hoist image-side cvtColor out of template loop in Matcher (#16018) 2026-03-16 19:46:22 +08:00
MistEO
e20dd9f3ad ai: add issue analysis 2026-03-16 16:08:57 +08:00
MistEO
2df0d7516a ai: 添加log分析skill 2026-03-16 16:06:59 +08:00
status102
cd0c24eab0 perf: 刷理智任务使用理智药前进行药品数量检查 2026-03-16 14:42:58 +08:00
status102
1d75af4412 fix: LevelKey 中的空属性导致误匹配 2026-03-16 14:15:47 +08:00
status102
a43718c019 fix: 当LevelKey中部分属性为空时, 会忽略该属性 2026-03-16 14:14:45 +08:00
status102
5574bc69e7 fix(wpf): 刷理智任务不再返回未开放关卡 2026-03-16 14:08:52 +08:00