Skip to content

Commit

Permalink
0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devinacker committed May 7, 2021
1 parent eddbd1b commit 3ccc755
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
v0.2.0 [2021-05-07]
- Improved support for Steam games attempting to re-launch themselves through the Steam client
(must actually have Steam open and logged in)
- Added detection of older unencrypted pak format
- Slightly cleaner error handling in the event that DLL injection on the target process fails

v0.1.0 [2021-05-03]
- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Key: 0x0635D5F4B20E2CF1708524223DB7F1C77E7C49C556C5B875A90132E88E91F734

Currently, only 64-bit Windows games are supported.

Games using Steam DRM should work as long as the game is actually in your Steam library, but you will most likely need to add a valid `steam_appid.txt` file (containing the game's app ID) to the game executable's directory to prevent the game from trying to re-launch itself through the Steam client.
Games using Steam DRM should work (_without_ needing to manually create a `steam_appid.txt` file), as long as the Steam client is open and logged in (and the game is actually in your library). If you're having trouble with a particular game, try running it through Steamless first.

Games using anti-cheat software will most likely _not_ work, since this tool doesn't make any attempt to circumvent it.

Expand Down
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

int main()
{
printf("UnrealKey v0.1.0 - " __DATE__ "\n");
printf("UnrealKey v0.2.0 - " __DATE__ "\n");
printf("https://github.com/devinacker/UnrealKey\n\n");

int rc = 0;
Expand Down

0 comments on commit 3ccc755

Please sign in to comment.