diff --git a/docs/en/USER_MANUAL.md b/docs/en/USER_MANUAL.md index 1bc47ce81b..7ef671a542 100644 --- a/docs/en/USER_MANUAL.md +++ b/docs/en/USER_MANUAL.md @@ -74,6 +74,7 @@ Welcome to QQ Group: 912322156 ### Miscellaneous - Tasks order can be changed on the UI. So can the shifting order in the infrastructure. +- Almost all configuration changes will be saved automatically, except for options containing an *. - All clicking event is randomized within a region, following Poisson distribution (higher probability at the center, lower probability around). - Developed in C++, the core algorithm supports multi-level cache, in order to reduce CPU and memory usage as much as possible. - Our software supports auto-update ✿✿ヽ(°▽°)ノ✿ Beta-testers can try beta versions, which updates faster and less buggy (maybe). diff --git a/docs/详细介绍.md b/docs/详细介绍.md index d46b756df5..34d19b61b7 100644 --- a/docs/详细介绍.md +++ b/docs/详细介绍.md @@ -74,6 +74,7 @@ ### 其他乱七八糟的说明 - 主界面上要执行的任务,是可以拖动改变顺序的。同样设置中基建换班的顺序,也是可以拖动改变的。 +- 主界面和设置中更改的配置一般都会自动保存,含有*号的选项除外。 - 所有点击操作,都是点击按钮内随机位置,并模拟泊松分布(按钮偏中间位置点的概率大,越往旁边点到的概率越小)。 - 底层算法纯 C++ 开发,并设计了多重的缓存技术,最大限度降低 CPU 和内存占用。 - 软件支持自动更新 ✿✿ヽ(°▽°)ノ✿ 推荐非杠精的同学使用测试版,一般来说更新快且 bug 少(什么 MIUI (╯‵□′)╯︵┻━┻ diff --git a/src/MeoAsstGui/UserControl/AutoRecruitSettingsUserControl.xaml b/src/MeoAsstGui/UserControl/AutoRecruitSettingsUserControl.xaml index 5471677b92..c6ffdc1e4f 100644 --- a/src/MeoAsstGui/UserControl/AutoRecruitSettingsUserControl.xaml +++ b/src/MeoAsstGui/UserControl/AutoRecruitSettingsUserControl.xaml @@ -16,7 +16,7 @@ - + diff --git a/src/MeoAsstGui/UserControl/FightSettingsUserControl.xaml b/src/MeoAsstGui/UserControl/FightSettingsUserControl.xaml index e48a710b49..b89ccf2ce6 100644 --- a/src/MeoAsstGui/UserControl/FightSettingsUserControl.xaml +++ b/src/MeoAsstGui/UserControl/FightSettingsUserControl.xaml @@ -31,7 +31,7 @@ - + @@ -39,7 +39,7 @@ - + diff --git a/src/MeoAsstGui/ViewModels/TaskQueueViewModel.cs b/src/MeoAsstGui/ViewModels/TaskQueueViewModel.cs index c13fb0e907..4906f9d6df 100644 --- a/src/MeoAsstGui/ViewModels/TaskQueueViewModel.cs +++ b/src/MeoAsstGui/ViewModels/TaskQueueViewModel.cs @@ -138,8 +138,8 @@ namespace MeoAsstGui new GenericCombData{ Display="关闭模拟器",Value=ActionType.ExitEmulator }, new GenericCombData{ Display="退出并关闭模拟器",Value=ActionType.ExitEmulatorAndSelf }, //new GenericCombData{ Display="待机",Value=ActionTypeAfterCompleted.Suspend }, - new GenericCombData{ Display="休眠",Value=ActionType.Hibernate }, - new GenericCombData{ Display="关机",Value=ActionType.Shutdown }, + new GenericCombData{ Display="休眠*",Value=ActionType.Hibernate }, + new GenericCombData{ Display="关机*",Value=ActionType.Shutdown }, }; var temp_order_list = new List(new DragItemViewModel[task_list.Length]); int order_offset = 0;