Skip to content

Commit

Permalink
release: bump version to 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMythologist committed Jul 26, 2023
1 parent a6a5cb2 commit d409627
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Guardian intercepts all incoming GTA traffic, and only allows specific packets t

By observing network activity while playing GTA Online, it is discovered that the "type" of packet can be determined based on the packet's payload size even though they are encrypted. Other than user-defined configuration, the only other behaviours intended to be allowed through are the session "heartbeat" and any session information requests from the "matchmaking service" which provides initial connection details to clients.

## [Download 3.4.0 (latest)](/~https://github.com/TheMythologist/guardian/releases/tag/3.4.0)
## [Download 3.4.1 (latest)](/~https://github.com/TheMythologist/guardian/releases/tag/3.4.1)

## How to use

Expand Down
2 changes: 1 addition & 1 deletion guardian/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from util.crash import crash_report
from util.printer import print_white

__version__ = "3.4.0"
__version__ = "3.4.1"

logger = logging.getLogger(__name__)
logger.propagate = False
Expand Down
2 changes: 1 addition & 1 deletion guardian/build.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import PyInstaller.__main__

version = "3.4.0"
version = "3.4.1"


def build() -> None:
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.4.0"
version = "3.4.1"
description = "Custom firewall used to create private lobbies for GTA5 Online"
authors = ["TheMythologist <leekaixuan2001@gmail.com>"]
license = "LGPL-3.0"
Expand Down
8 changes: 4 additions & 4 deletions spec/version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ VSVersionInfo(
ffi=FixedFileInfo(
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
# Set not needed items to zero 0.
filevers=(3, 4, 0, 0),
prodvers=(3, 4, 0, 0),
filevers=(3, 4, 1, 0),
prodvers=(3, 4, 1, 0),
# Contains a bitmask that specifies the valid bits 'flags'r
mask=0x3f,
# Contains a bitmask that specifies the Boolean attributes of the file.
Expand All @@ -28,13 +28,13 @@ VSVersionInfo(
[StringStruct('Comments', ''),
StringStruct('CompanyName', ''),
StringStruct('FileDescription', 'Firewall'),
StringStruct('FileVersion', '3.4.0'),
StringStruct('FileVersion', '3.4.1'),
StringStruct('InternalName', 'Guardian.exe'),
StringStruct('LegalCopyright', ''),
StringStruct('LegalTrademarks', ''),
StringStruct('OriginalFilename', 'Guardian.exe'),
StringStruct('ProductName', 'Guardian'),
StringStruct('ProductVersion', '3.4.0')])
StringStruct('ProductVersion', '3.4.1')])
]),
VarFileInfo([VarStruct('Translation', [1033, 1252])])
]
Expand Down

0 comments on commit d409627

Please sign in to comment.