From 037508716735c7a11eef54d636bd8a30f0379b25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcelo=20Forment=C3=A3o?= Date: Mon, 4 Jan 2021 07:49:42 -0300 Subject: [PATCH 1/3] chore: update assembly version --- SekiroFpsUnlockAndMore/Properties/AssemblyInfo.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SekiroFpsUnlockAndMore/Properties/AssemblyInfo.cs b/SekiroFpsUnlockAndMore/Properties/AssemblyInfo.cs index 4161cc5..9946f32 100644 --- a/SekiroFpsUnlockAndMore/Properties/AssemblyInfo.cs +++ b/SekiroFpsUnlockAndMore/Properties/AssemblyInfo.cs @@ -18,5 +18,5 @@ using System.Runtime.InteropServices; ResourceDictionaryLocation.SourceAssembly )] -[assembly: AssemblyVersion("1.2.5.2")] -[assembly: AssemblyFileVersion("1.2.5.2")] \ No newline at end of file +[assembly: AssemblyVersion("1.2.5.3")] +[assembly: AssemblyFileVersion("1.2.5.3")] From 58d3d935792bf8d58b4abc7cd7aef154c3451a19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcelo=20Forment=C3=A3o?= Date: Mon, 4 Jan 2021 07:50:43 -0300 Subject: [PATCH 2/3] docs: add version history log --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 92c82b0..71eb8eb 100644 --- a/README.md +++ b/README.md @@ -240,6 +240,8 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file ## Version History +* v1.2.5.3 (2021-01-04) + * added game version 1.06 (1.6.0.0) to supported versions * v1.2.5.2 (2020-11-02) * updated death penalties code to latest version 1.05 * added game version 1.05 (1.5.0.0) to supported versions From 5d821d9c46547586ae9b85a5beee0cca23e88688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcelo=20Forment=C3=A3o?= Date: Mon, 4 Jan 2021 07:52:15 -0300 Subject: [PATCH 3/3] fix: add support to game version 1.6.0.0 (#1) --- SekiroFpsUnlockAndMore/GameData.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SekiroFpsUnlockAndMore/GameData.cs b/SekiroFpsUnlockAndMore/GameData.cs index 2759131..e6a35e7 100644 --- a/SekiroFpsUnlockAndMore/GameData.cs +++ b/SekiroFpsUnlockAndMore/GameData.cs @@ -7,9 +7,10 @@ namespace SekiroFpsUnlockAndMore internal const string PROCESS_NAME = "sekiro"; internal const string PROCESS_TITLE = "Sekiro"; internal const string PROCESS_DESCRIPTION = "Shadows Die Twice"; - internal const string PROCESS_EXE_VERSION = "1.5.0.0"; - internal static readonly string[] PROCESS_EXE_VERSION_SUPPORTED_LEGACY = new string[3] + internal const string PROCESS_EXE_VERSION = "1.6.0.0"; + internal static readonly string[] PROCESS_EXE_VERSION_SUPPORTED_LEGACY = new string[4] { + "1.5.0.0", "1.4.0.0", "1.3.0.0", "1.2.0.0"