diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e8478f154..072c0b0cdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,3 +3,5 @@ - 优化 界面 首次启动时报错弹窗提示 @MistEO - 修复 内测版 检查更新功能不正确的问题 @MistEO - 重构 Task 部分解析逻辑 @zzyyyl +- 优化 自定义基建 内置作业 @ABA2396 +- 修复 启动时闪退的问题 @zzyyyl \ No newline at end of file diff --git a/docs/3.6-基建排班协议.md b/docs/3.6-基建排班协议.md index 1273cc881b..121610844b 100644 --- a/docs/3.6-基建排班协议.md +++ b/docs/3.6-基建排班协议.md @@ -1,6 +1,6 @@ # 基建排班协议 -`resource/custom_infrast/*.json` 的使用方法及各字段说明 +`resource/custom_infrast/*.json` 的使用方法及各字段说明。**因 json 不支持注释,使用下方示例时需将注释删除** ## 完整字段一览 diff --git a/resource/custom_infrast/153_layout_3_times_pre_day.json b/resource/custom_infrast/153_layout_3_times_pre_day.json index 816399d984..361f9008cf 100644 --- a/resource/custom_infrast/153_layout_3_times_pre_day.json +++ b/resource/custom_infrast/153_layout_3_times_pre_day.json @@ -223,7 +223,7 @@ "hire": [ { "operators": [ - "艾雅法拉" + "斥罪" ] } ], @@ -372,4 +372,4 @@ } } ] -} +} \ No newline at end of file diff --git a/resource/custom_infrast/243_layout_3_times_pre_day.json b/resource/custom_infrast/243_layout_3_times_pre_day.json index 132f2eb88e..7c0b8dbb53 100644 --- a/resource/custom_infrast/243_layout_3_times_pre_day.json +++ b/resource/custom_infrast/243_layout_3_times_pre_day.json @@ -225,7 +225,7 @@ "hire": [ { "operators": [ - "艾雅法拉" + "斥罪" ] } ], diff --git a/resource/custom_infrast/252_layout_3_times_pre_day.json b/resource/custom_infrast/252_layout_3_times_pre_day.json index 4e3965e6b7..9d6eac0151 100644 --- a/resource/custom_infrast/252_layout_3_times_pre_day.json +++ b/resource/custom_infrast/252_layout_3_times_pre_day.json @@ -218,7 +218,7 @@ "hire": [ { "operators": [ - "艾雅法拉" + "斥罪" ] } ], @@ -367,4 +367,4 @@ } } ] -} +} \ No newline at end of file diff --git a/src/MeoAsstGui/ViewModels/VersionUpdateViewModel.cs b/src/MeoAsstGui/ViewModels/VersionUpdateViewModel.cs index 73a299de09..fedde5c00a 100644 --- a/src/MeoAsstGui/ViewModels/VersionUpdateViewModel.cs +++ b/src/MeoAsstGui/ViewModels/VersionUpdateViewModel.cs @@ -797,7 +797,7 @@ namespace MeoAsstGui version = _curVersion; } - if (isStdVersion(version)) + if (isDebugVersion(version)) { return false; }