This commit is contained in:
HolographicHat
2022-12-07 13:02:22 +08:00
parent e2f1f1e343
commit d2d5bafcd6
2 changed files with 4 additions and 4 deletions

View File

@@ -20,8 +20,8 @@ public static class GlobalVars {
public static readonly string CachePath = Path.Combine(DataPath, "cache"); public static readonly string CachePath = Path.Combine(DataPath, "cache");
public static readonly string LibFilePath = Path.Combine(DataPath, "YaeAchievement.dll"); public static readonly string LibFilePath = Path.Combine(DataPath, "YaeAchievement.dll");
public const uint AppVersionCode = 32; public const uint AppVersionCode = 33;
public const string AppVersionName = "2.3"; public const string AppVersionName = "2.4";
public const string PipeName = "YaeAchievementPipe"; public const string PipeName = "YaeAchievementPipe";
public const string BucketHost = "https://cn-cd-1259389942.file.myqcloud.com"; public const string BucketHost = "https://cn-cd-1259389942.file.myqcloud.com";

View File

@@ -204,8 +204,8 @@ public static class Utils {
return true; return true;
#else #else
return File.Exists(path) && File.ReadAllBytes(path).MD5Hash() return File.Exists(path) && File.ReadAllBytes(path).MD5Hash()
is "0a5477fd6f8011a66c59f66cdfb48a49" is "34433aa962523e55213c596d4e6b1f9c"
or "6f9edf761606561c36898a3a2d21dc20"; or "1fa8e1445b8121d5d1b5c1e6a8daa905"; // TODO: Use api
#endif #endif
} }