Skip to content

Commit a437685

Browse files
committed
Separate the CCCP version's number away from the converter's version number in the window's title
1 parent 172e1a5 commit a437685

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Python/gui/gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def init_window():
3535
warnings.load_conversion_and_warning_rules() # TODO: Why is this called in this GUI function?
3636

3737
window = sg.Window(
38-
f"Legacy Mod Converter v{cfg.CONVERTER_VERSION}",
38+
f"Legacy Mod Converter version {cfg.CONVERTER_VERSION} for CCCP {cfg.GAME_VERSION}",
3939
gui_layout.get_layout(),
4040
icon=utils.resource_path("Media/legacy-mod-converter.ico"),
4141
font=("Helvetica", 16)

Python/shared_globals.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# TODO: Move these to cfg.py
2-
CONVERTER_VERSION = "4.0"
2+
CONVERTER_VERSION = "1.0"
3+
GAME_VERSION = "Pre-Release 4.0"
34
NO_PATH_SET_COLOR = "#b35858"
45
CONVERTER_FOLDER_NAME = "_Mod Converter"
56
WARNINGS_MOD_NAME_SEPARATOR = "-" * 50

0 commit comments

Comments
 (0)