From e849bd0acdb007da21181864bfc37f1df424593c Mon Sep 17 00:00:00 2001 From: Christoph Honal Date: Fri, 28 May 2021 00:21:34 +0200 Subject: [PATCH] Update to 2021.5.25s --- AUMInjector/AUMInjector.rc | 8 ++++---- AUMInjector/AUMInjector.vcxproj | 2 +- AUMInjector/AUMInjector.vcxproj.filters | 2 +- AUMInjector/deobfuscate/deobfuscate.h | 4 +++- AUMInjector/deobfuscate/{2021_5_10s.h => unobfuscated.h} | 0 AUMInjector/deobfuscate/version.h | 5 ++++- README.md | 2 +- setup.bat.example | 2 +- 8 files changed, 15 insertions(+), 10 deletions(-) rename AUMInjector/deobfuscate/{2021_5_10s.h => unobfuscated.h} (100%) diff --git a/AUMInjector/AUMInjector.rc b/AUMInjector/AUMInjector.rc index bae097a..e2d4586 100644 --- a/AUMInjector/AUMInjector.rc +++ b/AUMInjector/AUMInjector.rc @@ -51,8 +51,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,0,0,19 - PRODUCTVERSION 1,0,0,19 + FILEVERSION 1,0,0,20 + PRODUCTVERSION 1,0,0,20 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -69,12 +69,12 @@ BEGIN BEGIN VALUE "CompanyName", "Team ESDG" VALUE "FileDescription", "Among Us to Mumble VoIP adapter" - VALUE "FileVersion", "1.0.0.19" + VALUE "FileVersion", "1.0.0.20" VALUE "InternalName", "winhttp.dll" VALUE "LegalCopyright", "Copyright (C) Team ESDG 2021" VALUE "OriginalFilename", "winhttp.dll" VALUE "ProductName", "AmongUs-Mumble" - VALUE "ProductVersion", "1.0.0.19" + VALUE "ProductVersion", "1.0.0.20" END END BLOCK "VarFileInfo" diff --git a/AUMInjector/AUMInjector.vcxproj b/AUMInjector/AUMInjector.vcxproj index f3f77be..19e25d2 100644 --- a/AUMInjector/AUMInjector.vcxproj +++ b/AUMInjector/AUMInjector.vcxproj @@ -78,8 +78,8 @@ - + diff --git a/AUMInjector/AUMInjector.vcxproj.filters b/AUMInjector/AUMInjector.vcxproj.filters index f0891e7..76d434a 100644 --- a/AUMInjector/AUMInjector.vcxproj.filters +++ b/AUMInjector/AUMInjector.vcxproj.filters @@ -275,7 +275,7 @@ Deobfuscate - + Deobfuscate diff --git a/AUMInjector/deobfuscate/deobfuscate.h b/AUMInjector/deobfuscate/deobfuscate.h index a5c5b7c..abaf9e2 100644 --- a/AUMInjector/deobfuscate/deobfuscate.h +++ b/AUMInjector/deobfuscate/deobfuscate.h @@ -31,7 +31,9 @@ using namespace app; #elif GAME_VERSION == GAME_VERSION_2021_4_14s #include "2021_4_14s.h" #elif GAME_VERSION == GAME_VERSION_2021_5_10s - #include "2021_5_10s.h" + #include "unobfuscated.h" +#elif GAME_VERSION == GAME_VERSION_2021_5_25s + #include "unobfuscated.h" #else #error Unknown game version! #endif \ No newline at end of file diff --git a/AUMInjector/deobfuscate/2021_5_10s.h b/AUMInjector/deobfuscate/unobfuscated.h similarity index 100% rename from AUMInjector/deobfuscate/2021_5_10s.h rename to AUMInjector/deobfuscate/unobfuscated.h diff --git a/AUMInjector/deobfuscate/version.h b/AUMInjector/deobfuscate/version.h index a7eda2e..8009f62 100644 --- a/AUMInjector/deobfuscate/version.h +++ b/AUMInjector/deobfuscate/version.h @@ -11,8 +11,9 @@ #define GAME_VERSION_2021_4_12s 202104120 #define GAME_VERSION_2021_4_14s 202104140 #define GAME_VERSION_2021_5_10s 202105100 +#define GAME_VERSION_2021_5_25s 202105250 #ifndef GAME_VERSION - #define GAME_VERSION GAME_VERSION_2021_5_10s + #define GAME_VERSION GAME_VERSION_2021_5_25s #endif #if GAME_VERSION == GAME_VERSION_2020_9_22s @@ -41,6 +42,8 @@ #define version_text "2021.4.14s" #elif GAME_VERSION == GAME_VERSION_2021_5_10s #define version_text "2021.5.10s" +#elif GAME_VERSION == GAME_VERSION_2021_5_25s + #define version_text "2021.5.25s" #else #error Unknown game version! #endif diff --git a/README.md b/README.md index 9a48a58..0fa68ff 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Patch versions refer to unmarked Steam updates where the game version did not ch **Use the installer:** Download: [Latest release](https://github.com/StarGate01/AmongUs-Mumble/releases/download/v1.0.0.14/AmongUs-Mumble-Installer.exe) -**Latest mod version:** Release 2021.5.10s, Mod manual download: [1.0.0.19](https://github.com/StarGate01/AmongUs-Mumble/releases/tag/v1.0.0.19) +**Latest mod version:** Release 2021.5.25s, Mod manual download: [1.0.0.20](https://github.com/StarGate01/AmongUs-Mumble/releases/tag/v1.0.0.20) **Older versions:** [Versions table](https://github.com/StarGate01/AmongUs-Mumble/wiki/Versions) diff --git a/setup.bat.example b/setup.bat.example index 340577b..6381f8e 100644 --- a/setup.bat.example +++ b/setup.bat.example @@ -4,7 +4,7 @@ REM set the path to your game folder SET "AMONGUS=C:\Steam\steamapps\common\Among Us" REM set the version of the generated deobfuscations -SET "AMONGUS_VERSION=2021_5_10s" +SET "AMONGUS_VERSION=2021_5_25s" REM set the path of tools SET "IL2CPPINSPECTOR=C:\Users\Christoph\Documents\GitHub\Il2CppInspector\Il2CppInspector.CLI\bin\Release\netcoreapp3.1\win-x64\publish\Il2CppInspector.exe"