From 790f801fe0735c0cac86d654885f7c4c10171f99 Mon Sep 17 00:00:00 2001 From: xkeyC <3334969096@qq.com> Date: Tue, 12 Dec 2023 19:46:39 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=83=A8=E5=88=86=E6=8F=8F?= =?UTF-8?q?=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/global_ui_model.dart | 2 +- lib/ui/tools/tools_ui_model.dart | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/global_ui_model.dart b/lib/global_ui_model.dart index 73fe4a9..c654c87 100644 --- a/lib/global_ui_model.dart +++ b/lib/global_ui_model.dart @@ -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 diff --git a/lib/ui/tools/tools_ui_model.dart b/lib/ui/tools/tools_ui_model.dart index 1491578..824ae9c 100644 --- a/lib/ui/tools/tools_ui_model.dart +++ b/lib/ui/tools/tools_ui_model.dart @@ -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), );