From 10235e6d5796ba1533a9288f43a61204b60b6087 Mon Sep 17 00:00:00 2001 From: ZenithVal <88603991+ZenithVal@users.noreply.github.com> Date: Mon, 19 Feb 2024 10:48:37 -0500 Subject: [PATCH] Print version number to log --- OSCLeash.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/OSCLeash.py b/OSCLeash.py index 187ce11..9ce9ac6 100644 --- a/OSCLeash.py +++ b/OSCLeash.py @@ -29,6 +29,9 @@ def createDefaultConfigFile(configPath): # Creates a default config program.setWindowTitle() program.cls() + # Make sure to change this to the correct version number on releases. + print('\x1b[1;32;40m' + "OSCLeash v2.1.1" + '\x1b[0m') + # Test if Config file exists. Create the default if it does not. configRelativePath = "./Config.json" if not os.path.exists(configRelativePath):