This commit is contained in:
Timothy Baldridge 2022-08-30 16:07:46 -06:00
parent d36593c567
commit 3e2401d062
2 changed files with 4 additions and 1 deletions

View File

@ -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

View File

@ -34,7 +34,7 @@ namespace Wabbajack.Common
public static readonly HashSet<Extension> SupportedBSAs = new[] {".bsa", ".ba2"}
.Select(s => new Extension(s)).ToHashSet();
public static HashSet<Extension> ConfigFileExtensions = new[]{".json", ".ini", ".yml", ".xml"}.Select(s => new Extension(s)).ToHashSet();
public static HashSet<Extension> ConfigFileExtensions = new[]{".json", ".ini", ".yml", ".xml", ".compiler_settings"}.Select(s => new Extension(s)).ToHashSet();
public static HashSet<Extension> ESPFileExtensions = new []{ ".esp", ".esm", ".esl"}.Select(s => new Extension(s)).ToHashSet();
public static HashSet<Extension> AssetFileExtensions = new[] {".dds", ".tga", ".nif", ".psc", ".pex"}.Select(s => new Extension(s)).ToHashSet();