diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c299010..c238bd2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ### Changelog +#### Version - 2.5.3.28 - 8/30/2022 +* Auto-inline `.compiler_settings` files during compilation + #### Version - 2.5.3.27 - 8/7/2022 * A few fixes for VectorPlexis and LL, you may need to log out and back in from these sites diff --git a/Wabbajack.Common/Consts.cs b/Wabbajack.Common/Consts.cs index 87f728f8..7df9758d 100644 --- a/Wabbajack.Common/Consts.cs +++ b/Wabbajack.Common/Consts.cs @@ -34,7 +34,7 @@ namespace Wabbajack.Common public static readonly HashSet SupportedBSAs = new[] {".bsa", ".ba2"} .Select(s => new Extension(s)).ToHashSet(); - public static HashSet ConfigFileExtensions = new[]{".json", ".ini", ".yml", ".xml"}.Select(s => new Extension(s)).ToHashSet(); + public static HashSet ConfigFileExtensions = new[]{".json", ".ini", ".yml", ".xml", ".compiler_settings"}.Select(s => new Extension(s)).ToHashSet(); public static HashSet ESPFileExtensions = new []{ ".esp", ".esm", ".esl"}.Select(s => new Extension(s)).ToHashSet(); public static HashSet AssetFileExtensions = new[] {".dds", ".tga", ".nif", ".psc", ".pex"}.Select(s => new Extension(s)).ToHashSet();