diff --git a/README.md b/README.md index aa2c5dd5..4c0ced7f 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Prerequisites - If you have installed a version of SenPatcher before v1.0, please restore your game before continuing. - The `SenPatcherGui.exe` provided in the release binary package should offer to automatically restore the game for you when you open the relevant game. - Alternatively, verify the game files in Steam or GoG Galaxy. It will detect and redownload any patched files and replace them with unpatched ones. -- Make sure your game is updated to a supported version (CS1 v1.6, CS2 v1.4.1 or v1.4.2, CS3 v1.06, CS4 v1.2.1, Reverie v1.1.4, TX v1.08). Other versions of the games will not work. +- Make sure your game is updated to a supported version (CS1 v1.6, CS2 v1.4.1 or v1.4.2, CS3 v1.07, CS4 v1.2.2, Reverie v1.1.5, TX v1.08). Other versions of the games will not work. Windows (using the GUI) @@ -151,7 +151,7 @@ Feature Set for Trails of Cold Steel III * Option to force XInput for controllers (this supposedly fixes newer Xbox controllers) * Option to keep the game running while in background. -Note: Compatible with version 1.06 of the game only. +Note: Compatible with version 1.07 of the game only. Feature Set for Trails of Cold Steel IV ======================================= @@ -163,7 +163,7 @@ Feature Set for Trails of Cold Steel IV * Option to keep the game running while in background. * Option to force the controller button Confirm/Cancel layout to English/Xbox or Japanese/Nintendo style. -Note: Compatible with version 1.2.1 of the game only. +Note: Compatible with version 1.2.2 of the game only. Feature Set for Trails into Reverie =================================== @@ -173,7 +173,7 @@ Feature Set for Trails into Reverie * Option to disable the mouse being captured by the game and its movement being used for the game camera. * Option to remove the 30 FPS limit when the game is in the background. -Note: Compatible with version 1.1.4 of the game only. +Note: Compatible with version 1.1.5 of the game only. Feature Set for Tokyo Xanadu eX+ ================================ diff --git a/SenLib/Version.cs b/SenLib/Version.cs index 9e028799..94576a37 100644 --- a/SenLib/Version.cs +++ b/SenLib/Version.cs @@ -6,6 +6,6 @@ namespace SenLib { public static class Version { - public static string SenPatcherVersion = "1.2.2"; + public static string SenPatcherVersion = "1.2.3"; } } diff --git a/SenPatcherGui/MainForm.Designer.cs b/SenPatcherGui/MainForm.Designer.cs index f3619c2c..547d31c5 100644 --- a/SenPatcherGui/MainForm.Designer.cs +++ b/SenPatcherGui/MainForm.Designer.cs @@ -143,7 +143,7 @@ private void InitializeComponent() { this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(259, 13); this.label1.TabIndex = 7; - this.label1.Text = "Trails of Cold Steel III: (NISA PC release version 1.06)"; + this.label1.Text = "Trails of Cold Steel III: (NISA PC release version 1.07)"; // // buttonCS4Patch // @@ -164,7 +164,7 @@ private void InitializeComponent() { this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(263, 13); this.label4.TabIndex = 9; - this.label4.Text = "Trails of Cold Steel IV: (NISA PC release version 1.2.1)"; + this.label4.Text = "Trails of Cold Steel IV: (NISA PC release version 1.2.2)"; // // mainMenu1 // @@ -224,7 +224,7 @@ private void InitializeComponent() { this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(247, 13); this.label5.TabIndex = 11; - this.label5.Text = "Trails into Reverie: (NISA PC release version 1.1.4)"; + this.label5.Text = "Trails into Reverie: (NISA PC release version 1.1.5)"; // // buttonTXPatch // diff --git a/SenPatcherGui/MainForm.cs b/SenPatcherGui/MainForm.cs index 88c7c719..ca3d1d3a 100644 --- a/SenPatcherGui/MainForm.cs +++ b/SenPatcherGui/MainForm.cs @@ -411,7 +411,7 @@ public string Cs3GameInit(string launcherPath) { using (var fs = new HyoutaUtils.Streams.DuplicatableFileStream(launcherPath)) { SHA1 hash = ChecksumUtils.CalculateSHA1ForEntireStream(fs); if (hash != new SHA1(0x21de3b088a5ddad7ul, 0xed1fdb8e40061497ul, 0xc248ca65u)) { - ShowError("Selected file does not appear to be Sen3Launcher.exe of version 1.06."); + ShowError("Selected file does not appear to be Sen3Launcher.exe of version 1.07."); return null; } } @@ -461,7 +461,7 @@ public string Cs4GameInit(string launcherPath) { using (var fs = new HyoutaUtils.Streams.DuplicatableFileStream(launcherPath)) { SHA1 hash = ChecksumUtils.CalculateSHA1ForEntireStream(fs); if (hash != new SHA1(0x5f480136aa4c3b53ul, 0xadd422bf75b63350ul, 0xfa58d202u)) { - ShowError("Selected file does not appear to be Sen4Launcher.exe of version 1.2.1."); + ShowError("Selected file does not appear to be Sen4Launcher.exe of version 1.2.2."); return null; } } @@ -515,8 +515,8 @@ public string ReverieGameInit(string launcherPath) { } using (var fs = new HyoutaUtils.Streams.DuplicatableFileStream(launcherPath)) { long length = fs.Length; - if (length != 15847840) { - ShowError("Selected file does not appear to be hnk.exe of version 1.1.4."); + if (length != 15807384) { + ShowError("Selected file does not appear to be hnk.exe of version 1.1.5."); return null; } }