Compare commits

..

2 Commits

Author SHA1 Message Date
xkeyC
fb94fe8d1a Release: 3.1.1 2026-02-12 20:11:10 +08:00
xkeyC
81632d9982 fix: shader cache all clean 2026-02-12 20:04:29 +08:00
5 changed files with 10 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
import 'dart:io';
class ConstConf {
static const String appVersion = "3.1.0";
static const int appVersionCode = 80;
static const String appVersionDate = "2026-01-19";
static const String appVersion = "3.1.1";
static const int appVersionCode = 81;
static const String appVersionDate = "2026-02-12";
static const _gameChannels = ["LIVE", "4.0_PREVIEW", "PTU", "EPTU", "TECH-PREVIEW", "HOTFIX"];
static const isMSE = String.fromEnvironment("MSE", defaultValue: "false") == "true";
static const win32AppId = isMSE

View File

@@ -625,9 +625,8 @@ class ToolsUIModel extends _$ToolsUIModel {
await _cleanShaderCacheDirectory(scDir);
}
} else {
// 全部清理模式:
// 前两个:仅保留 GraphicsSettings
// 其他:仅保留 GraphicsSettings
// 全部清理模式:所有 starcitizen_* 目录都清理内容,仅保留 GraphicsSettings
await _cleanShaderCacheDirectory(scDir);
}
}
}

View File

@@ -2,7 +2,7 @@ name: starcitizen_doctor
description: Designed for "StarCitizen" players, providing many convenient functions.
publish_to: 'none'
version: 3.1.0+80
version: 3.1.1+81
environment:
sdk: ^3.8.0
@@ -113,7 +113,7 @@ msix_config:
publisher_display_name: xkeyC Studio
identity_name: 56575xkeyC.MSE
publisher: CN=B54C897B-C263-4680-B6AB-4913C603DF87
msix_version: 3.1.0.0
msix_version: 3.1.1.0
logo_path: ./assets/app_logo.png
capabilities: internetClient,allowElevation
languages: zh-cn

4
rust/Cargo.lock generated
View File

@@ -146,9 +146,9 @@ dependencies = [
[[package]]
name = "anyhow"
version = "1.0.101"
version = "1.0.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
[[package]]
name = "arbitrary"

View File

@@ -35,7 +35,7 @@ reqwest = { version = "0.12.26", features = [
"stream",
] }
hickory-resolver = { version = "0.25.2" }
anyhow = "1.0.101"
anyhow = "1.0.100"
scopeguard = "1.0"
notify-rust = "4.12.0"
asar = "0.3.0"