mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 17:57:01 +08:00
Release v4.14.0 (#4300)
This commit is contained in:
41
CHANGELOG.md
41
CHANGELOG.md
@@ -1,32 +1,59 @@
|
||||
## v4.14.0-rc.1
|
||||
## v4.14.0
|
||||
|
||||
### 新增
|
||||
|
||||
- 将退出时不释放adb作为独立选项 @MistEO
|
||||
- 添加主线第十二章导航 @zzyyyl
|
||||
- 关卡列表添加 "R8-11" 与 "12-17-HARD" @ABA2396
|
||||
- 启动 MAA 后直接最小化选项 (#4193) @moomiji
|
||||
- 退出时不释放 adb 作为独立选项,并默认关闭 @MistEO
|
||||
- 任务出错时单独弹出通知提醒 fix #4274 @ABA2396
|
||||
|
||||
### 改进
|
||||
|
||||
- 绝大部分资源改为惰性加载,大幅提高启动速度和并优化内存占用 @MistEO
|
||||
- 新增肉鸽不期而遇插件,优化招募与战斗策略 (#4241) @LingXii
|
||||
- 更新技能识别模型,优化最上面一排干员技能的识别 @MistEO
|
||||
- 重构界面部分样式,改用 HandyControls (#4200) @moomiji
|
||||
- 简化肉鸽编队界面的选中识别 (#4246) @horror-proton
|
||||
- 企鹅 id 无条件同步到界面 @MistEO
|
||||
- 规避第十二章三倍掉落被上传的可能性 @MistEO
|
||||
- 为夜神的截图错误增加检查 @MistEO
|
||||
- 增加开始行动前置延迟 @ABA2396
|
||||
|
||||
### 修复
|
||||
|
||||
- 修复傀影肉鸽招募错误 (#4241) @LingXii
|
||||
- 修复战斗中狂点 cooling 干员的问题 @MistEO
|
||||
- 修复重连时 minitouch 不可用的问题 (#4280) @aa889788
|
||||
- 修复部分视频识别错误 @MistEO
|
||||
- 修复 iOS 识别不到战斗干员 @hguandl @MistEO
|
||||
- 修复会客室偶现送完线索卡住的问题 @MistEO
|
||||
- 修复一个罕见的肉鸽崩溃情况 @horror-proton
|
||||
- 修改主线导航替换文本 #4226 @ABA2396
|
||||
- 修复 MAA 主窗口最小化后弹窗位置错误 @moomiji
|
||||
- 过滤中坚信物,提高仓库识别速度 (#4210) @orzFly @MistEO
|
||||
- 修复更新镜像爆炸时不尝试其他镜像的问题,删掉几个爆炸的镜像 @MistEO
|
||||
- 修复雷电多开端口自动识别 @ABA2396
|
||||
- 修复资源本 6 识别无代理 #4278 @ABA2396
|
||||
|
||||
### 其他
|
||||
|
||||
- 删除已经用不上了的 component 包 @MistEO
|
||||
- 扩大识别区域 @ABA2396
|
||||
- 替换三星判断条件 @ABA2396
|
||||
- 修改 EpisodeOcrReplace 替换内容 @ABA2396
|
||||
- 添加标注 @ABA2396
|
||||
- revert tiles data @MistEO
|
||||
- 添加翻译 @ABA2396 @MistEO
|
||||
- update logger for posix @horror-proton
|
||||
|
||||
### For Overseas
|
||||
|
||||
#### Common
|
||||
|
||||
- Fix crash when material doesn't exist @MistEO
|
||||
|
||||
#### YostarJP
|
||||
|
||||
- Fix stage navigation bug #4289 @ABA2396
|
||||
- Fix dead loop of options in I.S. @MistEO
|
||||
- Fix stage navigation #4289 @ABA2396
|
||||
|
||||
#### YostarEN
|
||||
|
||||
- Fix stage navigation #4226 @ABA2396
|
||||
|
||||
@@ -57,7 +57,20 @@ const cv::Mat& asst::TemplResource::get_templ(const std::string& name)
|
||||
{
|
||||
if (m_templs.find(name) == m_templs.cend()) {
|
||||
Log.info(__FUNCTION__, "lazy load", name);
|
||||
cv::Mat templ = asst::imread(m_templ_paths.at(name));
|
||||
|
||||
auto path_iter = m_templ_paths.find(name);
|
||||
if (path_iter == m_templ_paths.cend()) {
|
||||
Log.error(__FUNCTION__, "templ not found", name);
|
||||
|
||||
#ifdef ASST_DEBUG
|
||||
throw std::runtime_error("templ not found: " + name);
|
||||
#else
|
||||
static cv::Mat empty;
|
||||
return empty;
|
||||
#endif
|
||||
}
|
||||
|
||||
cv::Mat templ = asst::imread(path_iter->second);
|
||||
m_templs.emplace(name, std::move(templ));
|
||||
}
|
||||
return m_templs.at(name);
|
||||
|
||||
@@ -269,6 +269,8 @@ namespace MaaWpfGui.Services
|
||||
{
|
||||
// 主线关卡
|
||||
{ "1-7", new StageInfo { Display = "1-7", Value = "1-7" } },
|
||||
{ "R8-11", new StageInfo { Display = "R8-11", Value = "R8-11" } },
|
||||
{ "12-17-HARD", new StageInfo { Display = "12-17-HARD", Value = "12-17-HARD" } },
|
||||
|
||||
// 资源本
|
||||
{ "CE-6", new StageInfo("CE-6", "CETip", new[] { DayOfWeek.Tuesday, DayOfWeek.Thursday, DayOfWeek.Saturday, DayOfWeek.Sunday }, resourceCollection) },
|
||||
|
||||
Reference in New Issue
Block a user