Skip to content

Commit

Permalink
Add .DLC and .INI files to TOC, update to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
henbagle committed Jun 11, 2021
1 parent d9f875b commit cd417e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AutoTOC/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
2 changes: 1 addition & 1 deletion AutoTOC/TOCCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class TOCCreator
/// <returns></returns>
public static IEnumerable<string> 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<string>();
foreach (string s in Pattern)
res.AddRange(Directory.GetFiles(path, s));
Expand Down

0 comments on commit cd417e3

Please sign in to comment.