Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
StarGate01 committed Jun 17, 2021
2 parents e18c503 + a097e0e commit 8fcb4b1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
8 changes: 4 additions & 4 deletions AUMInjector/AUMInjector.rc
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ END
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,20
PRODUCTVERSION 1,0,0,20
FILEVERSION 1,0,0,21
PRODUCTVERSION 1,0,0,21
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -69,12 +69,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Team ESDG"
VALUE "FileDescription", "Among Us to Mumble VoIP adapter"
VALUE "FileVersion", "1.0.0.20"
VALUE "FileVersion", "1.0.0.21"
VALUE "InternalName", "winhttp.dll"
VALUE "LegalCopyright", "Copyright (C) Team ESDG 2021"
VALUE "OriginalFilename", "winhttp.dll"
VALUE "ProductName", "AmongUs-Mumble"
VALUE "ProductVersion", "1.0.0.20"
VALUE "ProductVersion", "1.0.0.21"
END
END
BLOCK "VarFileInfo"
Expand Down
2 changes: 2 additions & 0 deletions AUMInjector/deobfuscate/deobfuscate.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ using namespace app;
#include "unobfuscated.h"
#elif GAME_VERSION == GAME_VERSION_2021_5_25s
#include "unobfuscated.h"
#elif GAME_VERSION == GAME_VERSION_2021_6_15s
#include "unobfuscated.h"
#else
#error Unknown game version!
#endif
5 changes: 4 additions & 1 deletion AUMInjector/deobfuscate/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
#define GAME_VERSION_2021_4_14s 202104140
#define GAME_VERSION_2021_5_10s 202105100
#define GAME_VERSION_2021_5_25s 202105250
#define GAME_VERSION_2021_6_15s 202106150
#ifndef GAME_VERSION
#define GAME_VERSION GAME_VERSION_2021_5_25s
#define GAME_VERSION GAME_VERSION_2021_6_15s
#endif

#if GAME_VERSION == GAME_VERSION_2020_9_22s
Expand Down Expand Up @@ -44,6 +45,8 @@
#define version_text "2021.5.10s"
#elif GAME_VERSION == GAME_VERSION_2021_5_25s
#define version_text "2021.5.25s"
#elif GAME_VERSION == GAME_VERSION_2021_6_15s
#define version_text "2021.6.15s"
#else
#error Unknown game version!
#endif
Expand Down
2 changes: 1 addition & 1 deletion setup.bat.example
Original file line number Diff line number Diff line change
Expand Up @@ -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_25s"
SET "AMONGUS_VERSION=2021_6_15s"

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"
Expand Down

0 comments on commit 8fcb4b1

Please sign in to comment.