From cd417e32c3395aff1fbacb9e6a996a19daff73c8 Mon Sep 17 00:00:00 2001 From: HenBagle Date: Fri, 11 Jun 2021 16:30:47 -0400 Subject: [PATCH] Add .DLC and .INI files to TOC, update to 2.1.1 --- AutoTOC/Properties/AssemblyInfo.cs | 2 +- AutoTOC/TOCCreator.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AutoTOC/Properties/AssemblyInfo.cs b/AutoTOC/Properties/AssemblyInfo.cs index d8bd842..562fa2e 100644 --- a/AutoTOC/Properties/AssemblyInfo.cs +++ b/AutoTOC/Properties/AssemblyInfo.cs @@ -33,4 +33,4 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("2.1.*")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyFileVersion("2.1.1.0")] diff --git a/AutoTOC/TOCCreator.cs b/AutoTOC/TOCCreator.cs index a6b9c37..2b67cbd 100644 --- a/AutoTOC/TOCCreator.cs +++ b/AutoTOC/TOCCreator.cs @@ -30,7 +30,7 @@ public class TOCCreator /// public static IEnumerable GetTocableFiles(string path) { - string[] Pattern = { "*.pcc", "*.afc", "*.bik", "*.bin", "*.tlk", "*.cnd", "*.upk", "*.tfc", "*.isb", "*.usf" }; + string[] Pattern = { "*.pcc", "*.afc", "*.bik", "*.bin", "*.tlk", "*.cnd", "*.upk", "*.tfc", "*.isb", "*.usf", "*.txt", "*.ini", "*.dlc" }; var res = new List(); foreach (string s in Pattern) res.AddRange(Directory.GetFiles(path, s));