From b09bf2076158263a36c58489705b03e51cf78ecd Mon Sep 17 00:00:00 2001 From: Timothy Baldridge Date: Wed, 25 Sep 2019 21:20:14 -0600 Subject: [PATCH] remove support for extracting .exe files --- CHANGELOG.md | 1 + Wabbajack.Common/Consts.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7bbe1b65..03b4e095 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Wabbajack.Common/Consts.cs b/Wabbajack.Common/Consts.cs index 235c6647..e2931bb9 100644 --- a/Wabbajack.Common/Consts.cs +++ b/Wabbajack.Common/Consts.cs @@ -13,7 +13,7 @@ namespace Wabbajack.Common public static string BSACreationDir = "TEMP_BSA_FILES"; public static string MegaPrefix = "https://mega.nz/#!"; - public static HashSet SupportedArchives = new HashSet {".zip", ".rar", ".7z", ".7zip", ".fomod", ".exe"}; + public static HashSet SupportedArchives = new HashSet {".zip", ".rar", ".7z", ".7zip", ".fomod"}; public static HashSet SupportedBSAs = new HashSet {".bsa"}; public static HashSet ConfigFileExtensions = new HashSet {".json", ".ini", ".yml"};