Skip to content

Commit c0ed4c8

Browse files
committed
1.55 for realz
1 parent 5b2c3e2 commit c0ed4c8

4 files changed

Lines changed: 8 additions & 8 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.54.9"
5+
#define MyAppVersion "1.55"
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.54.9-installer
42+
OutputBaseFilename=CraftServerSetup-1.55-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,54,9,0),
11-
prodvers=(1,54,9,0),
10+
filevers=(1,55,0,0),
11+
prodvers=(1,55,0,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.54.9'),
35+
StringStruct(u'FileVersion', u'1.55'),
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.54.9')])
40+
StringStruct(u'ProductVersion', u'1.55')])
4141
]),
4242
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
4343
]

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3175,7 +3175,7 @@ def manage_server(stdscr,_sname: str,chosenserver: int):
31753175
elif w == 12:
31763176
w2 = uicomponents.menu(stdscr,["Back","Chat Utilities","IP Lookups","Server Analytics","Player Statistics","Player name history"],"Additional Utilities")
31773177
if w2 == 1:
3178-
who_said_what(stdscr,SERVER_DIR)
3178+
chatutils.who_said_what(stdscr,SERVER_DIR)
31793179
elif w2 == 2:
31803180
ip_lookup(stdscr,SERVER_DIR)
31813181
elif w2 == 3:

src/renaminghandler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def update_cache_custom(stdscr,rawentries:list[logutils.LogEntry]):
8989

9090
def autoupdate_cache(stdscr,serverdir):
9191

92-
lastupdatetime = datetime.datetime.fromtimestamp(NC_DATA["last_updated"])
92+
lastupdatetime = datetime.datetime.fromtimestamp(NC_DATA["last_updated"]).date()
9393
update_cache_custom(stdscr,logloader.load_logs(stdscr,serverdir,logfilters.player_rename,lastupdatetime))
9494

9595
def player_naming_history(stdscr):

0 commit comments

Comments
 (0)