This commit is contained in:
xkeyC 2024-11-23 22:45:25 +08:00
parent 4c6a5f7565
commit 4b70ec1914
4 changed files with 14 additions and 8 deletions

View File

@ -1,7 +1,7 @@
class ConstConf { class ConstConf {
static const String appVersion = "2.13.2"; static const String appVersion = "2.13.3";
static const int appVersionCode = 60; static const int appVersionCode = 61;
static const String appVersionDate = "2024-11-07"; static const String appVersionDate = "2024-11-23";
static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW", "HOTFIX"]; static const gameChannels = ["LIVE", "PTU", "EPTU", "TECH-PREVIEW", "HOTFIX"];
static const isMSE = static const isMSE =
String.fromEnvironment("MSE", defaultValue: "false") == "true"; String.fromEnvironment("MSE", defaultValue: "false") == "true";

View File

@ -155,9 +155,15 @@ class SettingsUIModel extends _$SettingsUIModel {
final dir2 = Directory( final dir2 = Directory(
"${appGlobalState.applicationSupportDir}/launcher_enhance_data"); "${appGlobalState.applicationSupportDir}/launcher_enhance_data");
if (!context.mounted) return; if (!context.mounted) return;
if (await dir1.exists()) {
if (!context.mounted) return;
await dir1.delete(recursive: true).unwrap(context: context); await dir1.delete(recursive: true).unwrap(context: context);
}
if (!context.mounted) return;
if (await dir2.exists()) {
if (!context.mounted) return; if (!context.mounted) return;
await dir2.delete(recursive: true).unwrap(context: context); await dir2.delete(recursive: true).unwrap(context: context);
}
_initState(); _initState();
} }
} }

View File

@ -105,7 +105,7 @@ msix_config:
publisher_display_name: xkeyC Studio publisher_display_name: xkeyC Studio
identity_name: 56575xkeyC.MSE identity_name: 56575xkeyC.MSE
publisher: CN=B54C897B-C263-4680-B6AB-4913C603DF87 publisher: CN=B54C897B-C263-4680-B6AB-4913C603DF87
msix_version: 2.13.2.0 msix_version: 2.13.3.0
logo_path: ./assets/app_logo.png logo_path: ./assets/app_logo.png
capabilities: internetClient,allowElevation capabilities: internetClient,allowElevation
languages: zh-cn languages: zh-cn