zzyyyl
|
6af6cd14ad
|
refactor: 尝试修改烧热水的实现方式
|
2023-09-30 15:12:55 +08:00 |
|
zzyyyl
|
16882b2d6e
|
refactor: 尝试修改 投资 和 开始行动 达到上限时的退出逻辑
|
2023-09-30 15:12:55 +08:00 |
|
zzyyyl
|
64fe637419
|
fix: 移除韩服的 "Roguelike@LevelName"
|
2023-09-30 15:12:55 +08:00 |
|
zzyyyl
|
e26f3b63ca
|
refactor: 使用新特性修改 LevelName 相关代码
|
2023-09-30 15:12:54 +08:00 |
|
zzyyyl
|
cf0fcbd21c
|
perf: 将 Roguelike@NextLevel 的 next 抽出为 Roguelike@Stages
|
2023-09-30 15:12:54 +08:00 |
|
zzyyyl
|
b8f62f3069
|
feat: 多文件任务从 json 层面合并后再重新解析 (#6478)
现在如果有 CN 任务
```json
"base": { "text": [ "CN" ], "next": [ "aaa" ] },
"A": { "baseTask": "base", "next": [ "bbb" ] }
"B": { "baseTask": "base", "next": [ "ccc" ] }
```
只需要在 EN 文件中重新定义 base:
```json
"base": { "text": [ "EN" ] }
```
就等价于
```json
"base": { "text": [ "EN" ], "next": [ "aaa" ] },
"A": { "text": [ "EN" ], "next": [ "bbb" ] }
"B": { "text": [ "EN" ], "next": [ "ccc" ] }
```
不必再 copy 重复文件内容。外服适配不再是难题!
close #6313
|
2023-09-29 23:13:39 +08:00 |
|
zzyyyl
|
c14e1e5dbc
|
perf: tasks.json 大修改 (#6563)
1. 删除已有 `CloseAnnos#next` 时冗余的 `TodaysSupplies`
2. `ReturnTo` -> `BlackReturn`, `Return-White` -> `WhiteReturn`,
`ReturnToConfirm` -> `ReturnConfirm`
3. 把 黑返回键 `BlackReturn`、白返回键 `WhiteReturn`、`FromStageSN` 组合成 返回键组
`ReturnButtons`(类似 `CloseAnnos`)
4. 给 黑白返回键 的 _next_ 增加 _Loading_ 套餐(跳过领取奖励时匹配得分低也许是因为这个)
5. 由于 _Infrast_, _Roguelike_, _Reclamation_ 之前特化了
`ReturnTo`,现在重新特化黑白返回键;_Reclamation_ 之前特化了 `PopupConfirm` 作为
`ReturnConfirm` (好奇怪,但我应该没理解错吧),现在重新特化 `ReturnConfirm`,修改了名称和相关内容
|
2023-09-29 23:13:04 +08:00 |
|
Lancarus
|
11c430d151
|
Merge branch 'Phantom' of https://github.com/Lancarus/MaaAssistantArknights into Phantom
|
2023-09-29 19:45:26 +08:00 |
|
Lancarus
|
a5524159c4
|
Merge branch 'MaaAssistantArknights:dev' into Phantom
|
2023-09-29 19:45:51 +08:00 |
|
Lancarus
|
7ff11684f7
|
降低热水壶和演讲稿template阈值
|
2023-09-29 19:45:21 +08:00 |
|
Annoying Flower
|
b0cf9a87fb
|
fix: 修改肉鸽选技能时识别干员名的二值化下限值
上次改错值了...这次改回来(
|
2023-09-29 15:58:13 +08:00 |
|
Annoying Flower
|
46d1de5208
|
feat: 优化肉鸽再进入关卡的点击范围
根据三种肉鸽绝大部分地图的紧急和普通版本的可点区域,缩小点击范围,这次应该不会卡在关卡外面了
|
2023-09-29 15:45:37 +08:00 |
|
Lancarus
|
36629f6ff4
|
fix: 傀影肉鸽骑士对决ocr替换
|
2023-09-29 15:44:51 +08:00 |
|
Lancarus
|
e7f5b6257e
|
加了个控制条件
|
2023-09-29 14:49:47 +08:00 |
|
Lancarus
|
c074ac5b17
|
feat: 优化肉鸽招募策略 fix #6068
|
2023-09-29 14:35:05 +08:00 |
|
Lancarus
|
a22be93678
|
fix:尝试修复#6552导致的死循环
|
2023-09-29 02:21:52 +08:00 |
|
zzyyyl
|
2af330cb4b
|
refactor: remove useless fields
|
2023-09-29 00:33:28 +08:00 |
|
David
|
7a1a476c09
|
refactor: useless objects 2
|
2023-09-29 00:33:28 +08:00 |
|
zzyyyl
|
1bfba5180d
|
refactor: removing useless objects
Co-authored-by: David <56174894+Constrat@users.noreply.github.com>
|
2023-09-29 00:33:28 +08:00 |
|
zzyyyl
|
04f3118294
|
perf: 简化 Infrast 相关任务
|
2023-09-28 12:37:39 +08:00 |
|
zzyyyl
|
7d44278884
|
perf: tasks.json 大修改
1. 删除已有 "CloseAnnos#next" 时冗余的 "TodaysSupplies"
2. "ReturnTo" -> "BlackReturn", "Return-White" -> "WhiteReturn", "ReturnToConfirm" -> "ReturnConfirm"
3. 把 `黑返回键`(原 "ReturnTo")、`白返回键`、"FromStageSN" 组合成 `返回键组` "ReturnButtons"
4. 给 黑白返回键 的 next 增加 Loading 套餐(跳过领取奖励时匹配得分低也许是因为这个)
5. 由于 Infrast, Roguelike, Reclamation 之前特化了 ReturnTo,现在重新特化黑白返回键;Reclamation 之前特化了 PopupConfirm 作为 ReturnConfirm (好奇怪,但我应该没理解错吧),现在重新特化 ReturnConfirm,修改了名称和相关内容
|
2023-09-28 12:37:29 +08:00 |
|
MejiroSilence
|
8dc9e6f5a9
|
i18n: 修复日服肉鸽导航问题
|
2023-09-27 19:40:18 +08:00 |
|
MistEO
|
32a86569a0
|
chore: Auto Update Game Resources - 2023-09-27
|
2023-09-27 09:08:28 +00:00 |
|
MistEO
|
01bd8ebf03
|
fix: 修复肉鸽编队时识别不到最下面一个干员名以及不能正确选技能的问题 (#6552)
|
2023-09-27 16:43:02 +08:00 |
|
MistEO
|
1649b12050
|
chore: Auto Update Game Resources - 2023-09-27
|
2023-09-27 08:33:14 +00:00 |
|
zzyyyl
|
963e0a9f1b
|
fix: 修复跳过领取日常奖励的问题
link to 589fb9d1b3
fix #6286
|
2023-09-27 12:55:51 +08:00 |
|
MiaoYan JY
|
000a9fdceb
|
fix: 增大前后延迟,适配低端电脑配置
|
2023-09-27 11:57:25 +08:00 |
|
MiaoYan JY
|
28c2487d7b
|
fix: 修复肉鸽编队时不选技能的问题
|
2023-09-27 11:12:06 +08:00 |
|
MiaoYan JY
|
95b1c95ced
|
fix: 修复肉鸽编队时识别不到最下面一个干员名的问题
|
2023-09-27 11:07:00 +08:00 |
|
uye
|
0386cfb672
|
fix: 修复外服错误文件名
|
2023-09-26 22:26:29 +08:00 |
|
uye
|
02cfb4e994
|
fix: 修复模板文件名错误
|
2023-09-26 22:16:42 +08:00 |
|
uye
|
6c5265022c
|
style: 规范变量命名,修正错误变量名,修正错误注释
|
2023-09-26 16:03:05 +08:00 |
|
Lancarus
|
9e0c707830
|
Merge branch 'sami' of https://github.com/Lancarus/MaaAssistantArknights into sami
|
2023-09-25 22:50:50 +08:00 |
|
Lancarus
|
01356c7f05
|
回滚招募点击任务
|
2023-09-25 22:50:39 +08:00 |
|
Lancarus
|
1cc03fbdca
|
Merge branch 'MaaAssistantArknights:dev' into sami
|
2023-09-25 22:49:07 +08:00 |
|
Lancarus
|
a5d103f21d
|
脑子坏了,多擦掉一些边缘就行了应该
|
2023-09-25 14:35:15 +08:00 |
|
Lancarus
|
5e3f9c8a92
|
再适配一下截图
|
2023-09-25 14:10:57 +08:00 |
|
Lancarus
|
77d7e4399e
|
进一步降低匹配度阈值,增加前任务的延时
|
2023-09-25 13:29:16 +08:00 |
|
Lancarus
|
f8ec5cba04
|
fix: 尝试修复肉鸽招募卡主的问题
|
2023-09-25 13:05:38 +08:00 |
|
Lancarus
|
055abcfefd
|
fix: 继续尝试修复肉鸽卡在招募界面 (#6521)
回滚截图并降低匹配度阈值
|
2023-09-25 08:43:20 +08:00 |
|
Lancarus
|
c37d85bd0d
|
fix: 继续尝试修复肉鸽卡在招募界面
|
2023-09-25 05:03:15 +08:00 |
|
Lancarus
|
541bbb9cec
|
fix: 尝试修复肉鸽卡在招募界面 (#6516)
|
2023-09-24 20:15:53 +08:00 |
|
Lancarus
|
33a6570c92
|
lager the roi of task "Roguelike@RecruitWithoutButton"
|
2023-09-24 19:28:49 +08:00 |
|
Lancarus
|
8c8c8a755b
|
fix: 尝试修复肉鸽卡在招募界面
|
2023-09-24 18:41:56 +08:00 |
|
MistEO
|
125782f1eb
|
fix: 自动战斗-战斗列表,补充突袭结算图,修复从缓存文件夹添加作业时报错 (#6497)
|
2023-09-24 05:04:47 +08:00 |
|
Lancarus
|
e0f27aef6b
|
fix: 修复凹直升模式造成的bug
|
2023-09-23 23:21:29 +08:00 |
|
Lancarus
|
31e01eacf7
|
fix: 修复凹直升模式造成的bug
feat:优化凹直升的ui显示
|
2023-09-23 23:19:03 +08:00 |
|
status102
|
8399ab418b
|
fix: 补充突袭结算图
|
2023-09-23 18:50:58 +08:00 |
|
zzyyyl
|
dcca78944f
|
fix: 删掉多余的模板图片
|
2023-09-23 17:57:32 +08:00 |
|
MistEO
|
6c1da94b3c
|
feat: 自动战斗跳过“以下干员出战后将被禁用,是否继续?”对话框 #4917 #4694 #5351 (#6492)
|
2023-09-23 17:54:21 +08:00 |
|