Release v0.4.7.5

A3DA, Aet, AetDB, AuthDB, Databank, DEX, MOT, STR, VAG
This commit is contained in:
KujiKita
2019-09-30 20:44:46 +03:00
parent 792781a5f7
commit 4698c75c7a
34 changed files with 801 additions and 634 deletions
+2 -2
View File
@@ -11,5 +11,5 @@ using System.Runtime.InteropServices;
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("7B5D5A3A-A6F8-4813-C97D-ACFC98F7397E")]
[assembly: AssemblyVersion("0.4.7.4")]
[assembly: AssemblyFileVersion("0.4.7.4")]
[assembly: AssemblyVersion("0.4.7.5")]
[assembly: AssemblyFileVersion("0.4.7.5")]
+3 -2
View File
@@ -33,6 +33,7 @@ namespace PD_Tool.Tools
format = Console.ReadLine();
}
uint num2 = (uint)DateTime.Now.Subtract(new DateTime(1970, 1, 1)).TotalSeconds;
KKdMainLib.DataBank DB;
string[] file_split;
foreach (string file in FileNames)
@@ -52,11 +53,11 @@ namespace PD_Tool.Tools
DB.MsgPackWriter(filepath + file_split[0] + "_" +
file_split[1] + "_" + file_split[2], JSON, format != "2");
}
else if (ext == ".mp" || ext == ".json" && !MP)
else if ((ext == ".mp" || ext == ".json") && !MP)
{
Console.Title = "DataBank Converter: " + filename;
DB.MsgPackReader(filepath, JSON);
DB. DBWriter(filepath);
DB. DBWriter(filepath, num2);
}
DB = null;
}