-
-
Notifications
You must be signed in to change notification settings - Fork 277
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ModLaunch):允许不使用 JLW #5785
base: main
Are you sure you want to change the base?
Conversation
Edit:好吧是 Visual Studio 残留的源代码 |
🤔 现在这个实现感觉不是很好,应该改成 combobox ,分别写 启用/禁用/跟随默认设置 |
@@ -252,6 +252,8 @@ | |||
ToolTip="警告:强烈推荐在版本设置中关闭特定版本的警告,而不是在这里关闭所有版本的警告!
如果在设置中手动选择了与当前版本不兼容的 Java,则自动跳过兼容性警告弹窗,强制使用手动选择的 Java。" /> | |||
<local:MyCheckBox Text="关闭文件校验" x:Name="CheckAdvanceAssets" Tag="LaunchAdvanceAssets" | |||
ToolTip="警告:强烈推荐在版本设置中关闭特定版本的校验,而不是在这里关闭所有版本的校验!
完全不更改 assets;不校验 libraries、第三方登录库与版本主 jar 文件是否被修改。
如果你没有修改相关文件,请勿勾选此项。" /> | |||
<local:MyCheckBox Text="使用 JLW" x:Name="CheckAdvanceUseLaunchWrapper" Tag="LaunchAdvanceUseLaunchWrapper" Margin="50,0,0,0" | |||
ToolTip="警告:强烈推荐在版本设置中关闭特定版本的校验,而不是在这里关闭所有版本的校验!
在启动时额外加载 JLW 来处理中文目录。
如果服务器没有使用反作弊,请勿取消勾选此项。" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ToolTip="警告:强烈推荐在版本设置中关闭特定版本的校验,而不是在这里关闭所有版本的校验!
在启动时额外加载 JLW 来处理中文目录。
如果服务器没有使用反作弊,请勿取消勾选此项。" /> | |
ToolTip="警告:强烈推荐在版本设置中禁用特定版本的 JLW,而不是在这里为所有版本禁用!
在启动时额外加载 Java Wrapper 来处理中文目录。
仅建议在有特殊需要时勾选此项。" /> |
应该把这个 CheckBox 改成勾选 = 禁用,可能会更符合预期
可以参考 CE
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
我现在考虑是不是应该做成列表框的形式,因为现有判断条件似乎总会让版本或全局设置无效
等周末了再认真考虑一下怎么写比较好
Resolve #417