Skip to content

Commit

Permalink
Update GUI and Readme for 2024-12-09 game updates
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiralCurtiss committed Dec 11, 2024
1 parent 5f90389 commit 63d3c62
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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
=======================================
Expand All @@ -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
===================================
Expand All @@ -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+
================================
Expand Down
2 changes: 1 addition & 1 deletion SenLib/Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

namespace SenLib {
public static class Version {
public static string SenPatcherVersion = "1.2.2";
public static string SenPatcherVersion = "1.2.3";
}
}
6 changes: 3 additions & 3 deletions SenPatcherGui/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions SenPatcherGui/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down Expand Up @@ -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;
}
}
Expand Down Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 63d3c62

Please sign in to comment.