更新部分描述

This commit is contained in:
xkeyC 2023-12-12 19:46:39 +08:00
parent bb82b711dc
commit 790f801fe0
2 changed files with 4 additions and 2 deletions

View File

@ -28,7 +28,7 @@ class AppGlobalUIModel extends BaseUIModel {
await Future.delayed(const Duration(milliseconds: 100));
if (AppConf.networkVersionData == null) {
showToast(context,
"检查更新失败!请检查网络连接... \n进入离线模式.. \n\n请谨慎在离线模式中使用。 \n当前版本构建日期:${AppConf.appVersionDate}\n QQ群940696487 \n错误信息:$checkUpdateError");
"检查更新失败!请检查网络连接... \n进入离线模式.. \n\n请谨慎在离线模式中使用。\n请尝试更换无污染的DNS。 \n当前版本构建日期:${AppConf.appVersionDate}\n QQ群940696487 \n错误信息:$checkUpdateError");
return false;
}
final lastVersion = AppConf.isMSE

View File

@ -180,7 +180,9 @@ class ToolsUIModel extends BaseUIModel {
return _ToolsItemData(
"photography_mode",
isEnable ? "关闭摄影模式" : "开启摄影模式",
"一键修改镜游戏内镜头参数以便于摄影操作。\n\n @拉邦那 Lapernum 提供参数信息。",
isEnable
? "还原镜头摇晃效果。\n\n@拉邦那 Lapernum 提供参数信息。"
: "一键关闭游戏内镜头晃动以便于摄影操作。\n\n @拉邦那 Lapernum 提供参数信息。",
const Icon(FontAwesomeIcons.camera, size: 28),
onTap: () => _onChangePhotographyMode(isEnable),
);