Skip to content

Commit

Permalink
release: bump version to 3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMythologist committed Jan 24, 2023
1 parent e71d857 commit 40b3bcb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
LF_FACESIZE = 32
STD_OUTPUT_HANDLE = -11

version = "3.2.0"
version = "3.2.1"

style = Style(
[
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <leekaixuan2001@gmail.com>"]
license = "LGPL-3.0"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

Expand Down

0 comments on commit 40b3bcb

Please sign in to comment.