Skip to content

Commit d409627

Browse files
release: bump version to 3.4.1
1 parent a6a5cb2 commit d409627

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Guardian intercepts all incoming GTA traffic, and only allows specific packets t
88

99
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.
1010

11-
## [Download 3.4.0 (latest)](https://github.com/TheMythologist/guardian/releases/tag/3.4.0)
11+
## [Download 3.4.1 (latest)](https://github.com/TheMythologist/guardian/releases/tag/3.4.1)
1212

1313
## How to use
1414

guardian/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from util.crash import crash_report
1010
from util.printer import print_white
1111

12-
__version__ = "3.4.0"
12+
__version__ = "3.4.1"
1313

1414
logger = logging.getLogger(__name__)
1515
logger.propagate = False

guardian/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import PyInstaller.__main__
22

3-
version = "3.4.0"
3+
version = "3.4.1"
44

55

66
def build() -> None:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "Guardian"
3-
version = "3.4.0"
3+
version = "3.4.1"
44
description = "Custom firewall used to create private lobbies for GTA5 Online"
55
authors = ["TheMythologist <[email protected]>"]
66
license = "LGPL-3.0"

spec/version.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ VSVersionInfo(
22
ffi=FixedFileInfo(
33
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
44
# Set not needed items to zero 0.
5-
filevers=(3, 4, 0, 0),
6-
prodvers=(3, 4, 0, 0),
5+
filevers=(3, 4, 1, 0),
6+
prodvers=(3, 4, 1, 0),
77
# Contains a bitmask that specifies the valid bits 'flags'r
88
mask=0x3f,
99
# Contains a bitmask that specifies the Boolean attributes of the file.
@@ -28,13 +28,13 @@ VSVersionInfo(
2828
[StringStruct('Comments', ''),
2929
StringStruct('CompanyName', ''),
3030
StringStruct('FileDescription', 'Firewall'),
31-
StringStruct('FileVersion', '3.4.0'),
31+
StringStruct('FileVersion', '3.4.1'),
3232
StringStruct('InternalName', 'Guardian.exe'),
3333
StringStruct('LegalCopyright', ''),
3434
StringStruct('LegalTrademarks', ''),
3535
StringStruct('OriginalFilename', 'Guardian.exe'),
3636
StringStruct('ProductName', 'Guardian'),
37-
StringStruct('ProductVersion', '3.4.0')])
37+
StringStruct('ProductVersion', '3.4.1')])
3838
]),
3939
VarFileInfo([VarStruct('Translation', [1033, 1252])])
4040
]

0 commit comments

Comments
 (0)