version: Update to 34.0.0.184, merge Debug and Release versions into one installer, use aggressive compression, install Legacy ActiveX on old systems

This commit is contained in:
Daniel
2021-08-22 19:18:13 +03:00
parent 5b374708c5
commit ede6826dc4
15 changed files with 390 additions and 272 deletions
+6
View File
@@ -83,6 +83,12 @@ namespace CleanFlashCommon {
return versionPath;
}
public static bool IsLegacyWindows() {
System.Version version = Environment.OSVersion.Version;
return version.Major <= 6 && (version.Major != 6 || version.Minor < 2);
}
public static Dictionary<string, string> GetReplacementStrings() {
return replacementStrings;
}