Skip to content

Commit 53a42e0

Browse files
committed
1.55.3
1 parent b866bd2 commit 53a42e0

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

scripts/crss-wine.iss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44

5-
#define MyAppVersion "1.55.2"
5+
#define MyAppVersion "1.55.3"
66
;The above line must be on line 5!
77

88

@@ -39,7 +39,7 @@ OutputDir=C:\python\crss\installer
3939

4040

4141

42-
OutputBaseFilename=CraftServerSetup-1.55.2-installer
42+
OutputBaseFilename=CraftServerSetup-1.55.3-installer
4343
;The above line MUST be on line 42
4444

4545

scripts/vf.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ VSVersionInfo(
77
ffi=FixedFileInfo(
88
# filevers and prodvers should be always a tuple with four items: (1, 2, 3, 4)
99
# Set not needed items to zero 0. Must always contain 4 elements.
10-
filevers=(1,55,2,0),
11-
prodvers=(1,55,2,0),
10+
filevers=(1,55,3,0),
11+
prodvers=(1,55,3,0),
1212
# Contains a bitmask that specifies the valid bits 'flags'r
1313
mask=0x3f,
1414
# Contains a bitmask that specifies the Boolean attributes of the file.
@@ -32,12 +32,12 @@ VSVersionInfo(
3232
u'040904B0',
3333
[StringStruct(u'CompanyName', u'Enderbyte Programs'),
3434
StringStruct(u'FileDescription', u'Minecraft Server Maker'),
35-
StringStruct(u'FileVersion', u'1.55.2'),
35+
StringStruct(u'FileVersion', u'1.55.3'),
3636
StringStruct(u'InternalName', u'craftserversetup'),
3737
StringStruct(u'LegalCopyright', u'© 2023-2024 Enderbyte Programs. Some rights reserved.'),
3838
StringStruct(u'OriginalFilename', u'craftserversetup.exe'),
3939
StringStruct(u'ProductName', u'CraftServerSetup'),
40-
StringStruct(u'ProductVersion', u'1.55.2')])
40+
StringStruct(u'ProductVersion', u'1.55.3')])
4141
]),
4242
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
4343
]

src/logloader.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ def load_logs(stdscr,serverdir:str,filter_function:typing.Callable[[logutils.Log
3131
int(lf.split("-")[1]),
3232
int(lf.split("-")[2])
3333
)
34-
if ld >= min_date and ld <= max_date:
35-
logs.append(lf)#Accept
34+
if ld >= min_date and ld <= max_date:
35+
logs.append(lf)#Accept
3636

3737
logs = list(sorted(logs))#Sort the data by sorting the files
3838
#cursesplus.messagebox.showinfo(stdscr,[f"F {len(logs)}"])

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#type: ignore
33
#Early load variables
44
APP_VERSION = 1#The API Version.
5-
APP_UF_VERSION = "1.55.2"
5+
APP_UF_VERSION = "1.55.3"
66
#The semver version
77
print(f"CraftServerSetup by Enderbyte Programs v{APP_UF_VERSION} (c) 2023-2026, some rights reserved")
88

0 commit comments

Comments
 (0)