We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36af77d commit ff78265Copy full SHA for ff78265
Python/gui/gui.py
@@ -35,7 +35,7 @@ def init_window():
35
warnings.load_conversion_and_warning_rules() # TODO: Why is this called in this GUI function?
36
37
window = sg.Window(
38
- "Legacy Mod Converter",
+ f"Legacy Mod Converter v{cfg.CONVERTER_VERSION}",
39
gui_layout.get_layout(),
40
icon=utils.resource_path("Media/legacy-mod-converter.ico"),
41
font=("Helvetica", 16)
Python/shared_globals.py
@@ -1,4 +1,5 @@
1
# TODO: Move these to cfg.py
2
+CONVERTER_VERSION = "4.0"
3
NO_PATH_SET_COLOR = "#b35858"
4
CONVERTER_FOLDER_NAME = "_Mod Converter"
5
WARNINGS_MOD_NAME_SEPARATOR = "-" * 50
0 commit comments