diff --git a/README.md b/README.md index 225cdf4..a0b4f55 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ This fork uses new methods to drop packets to R*-owned resources that are likely By simply observing network activity when playing GTA Online, it was discovered that while all packets were encrypted, the "type" of packet can still be determined from simply checking the packet's payload size. Guardian already uses PyDivert which conveniently supports filtering on individual packets, so only a few minor modifications to the filtering rules were necessary to produce this fork which supports Online 1.54 and onwards. -## [Download 3.2.0 (latest)](https://github.com/TheMythologist/guardian/releases/tag/3.2.0) +## [Download 3.2.1 (latest)](https://github.com/TheMythologist/guardian/releases/tag/3.2.1) ## Usage diff --git a/app.py b/app.py index f952518..6d53657 100644 --- a/app.py +++ b/app.py @@ -63,7 +63,7 @@ LF_FACESIZE = 32 STD_OUTPUT_HANDLE = -11 -version = "3.2.0" +version = "3.2.1" style = Style( [ diff --git a/pyproject.toml b/pyproject.toml index 28b8a52..7d2d7f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Guardian" -version = "3.2.0" +version = "3.2.1" description = "Custom firewall used to create private lobbies for GTA5 Online" authors = ["TheMythologist "] license = "LGPL-3.0" diff --git a/setup.py b/setup.py index 5ee31c2..773beaa 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from cx_Freeze import Executable, setup -version = "3.2.0" +version = "3.2.1" build_path = f"build/exe.win-amd64-{sys.version_info.major}.{sys.version_info.minor}"