Skip to content

Commit 7b3d906

Browse files
committed
1.51.1
1 parent b653d40 commit 7b3d906

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

changelog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
1.51.1:
2+
- Fix last seen and first join
13
1.51:
24
- Redo first join
35
- Redo last seen

src/craftserversetup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/python3
2+
#type: ignore
23
#Early load variables
34
#TODO - Backup profiles and improvements, bungeecord support (if possible)
45
VERSION_MANIFEST = "https://piston-meta.mojang.com/mc/game/version_manifest_v2.json"
56
BUNGEECORD_DOWNLOAD_URL = "https://ci.md-5.net/job/BungeeCord/lastStableBuild/artifact/bootstrap/target/BungeeCord.jar"
67
APP_VERSION = 1#The API Version.
7-
APP_UF_VERSION = "1.51"
8+
APP_UF_VERSION = "1.51.1"
89
#The semver version
910
UPDATEINSTALLED = False
1011
DOCFILE = "https://github.com/Enderbyte-Programs/CraftServerSetup/raw/main/doc/craftserversetup.epdoc"
@@ -3472,7 +3473,7 @@ def sanalytics(stdscr,serverdir):
34723473
cursesplus.displaymsg(stdscr,["Analyzing data",f"{plf} players found"],False)
34733474

34743475
if sortop == 0:
3475-
fjblock = dict(sorted(fjblock))#Sort A-Z
3476+
fjblock = dict(sorted(fjblock.items()))#Sort A-Z
34763477

34773478
#Assemble text
34783479
finals = "PLAYER NAME".ljust(16)+" "+"LAST SEEN"+"\n"
@@ -3493,7 +3494,7 @@ def sanalytics(stdscr,serverdir):
34933494
cursesplus.displaymsg(stdscr,["Analyzing data",f"{plf} players found"],False)
34943495

34953496
if sortop == 0:
3496-
fjblock = dict(sorted(fjblock))#Sort A-Z
3497+
fjblock = dict(sorted(fjblock.items()))#Sort A-Z
34973498

34983499
#Assemble text
34993500
finals = "PLAYER NAME".ljust(16)+" "+"JOIN DATE"+"\n"

src/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.50.6"
5+
#define MyAppVersion "1.51.1"
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.50.6-installer
42+
OutputBaseFilename=CraftServerSetup-1.51.1-installer
4343
;The above line MUST be on line 42
4444

4545

src/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,50,6,0),
11-
prodvers=(1,50,6,0),
10+
filevers=(1,51,1,0),
11+
prodvers=(1,51,1,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.50.6'),
35+
StringStruct(u'FileVersion', u'1.51.1'),
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.50.6')])
40+
StringStruct(u'ProductVersion', u'1.51.1')])
4141
]),
4242
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
4343
]

0 commit comments

Comments
 (0)