remove support for extracting .exe files

This commit is contained in:
Timothy Baldridge 2019-09-25 21:20:14 -06:00
parent 825929b119
commit b09bf20761
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,7 @@
* Don't assume *everyone* has LOOT
* Added support for `.exe` installers
* Rework UI to support a slideshow of used mods during installation and compilation
* Remove support for extracting `.exe` installers
#### Version 0.9.2 - 9/18/2013
* Fixed a bug with BSA string encoding

View File

@ -13,7 +13,7 @@ namespace Wabbajack.Common
public static string BSACreationDir = "TEMP_BSA_FILES";
public static string MegaPrefix = "https://mega.nz/#!";
public static HashSet<string> SupportedArchives = new HashSet<string> {".zip", ".rar", ".7z", ".7zip", ".fomod", ".exe"};
public static HashSet<string> SupportedArchives = new HashSet<string> {".zip", ".rar", ".7z", ".7zip", ".fomod"};
public static HashSet<string> SupportedBSAs = new HashSet<string> {".bsa"};
public static HashSet<string> ConfigFileExtensions = new HashSet<string> {".json", ".ini", ".yml"};