11###################
2- # VERSION 1.03.03 #
2+ # VERSION 1.03.04 #
33###################
4+ Version = "1.03.04"
5+ upDate = "16 Apr 2026"
6+ versionString = "Version " + Version + " - Last Updated " + upDate
47
58###################
69# LIBRARY IMPORTS #
1619from tkinter import font
1720
1821
19-
2022########################
2123# VARIABLE DEFINITIONS #
2224########################
2628outputPath = FALSE
2729checkboxVars = []
2830
31+
2932########################
3033# FUNCTION DEFINITIONS #
3134########################
3235
33-
34-
3536def resource_path (relative_path ):
3637 base_path = getattr (sys , '_MEIPASS' , path .dirname (path .abspath (__file__ )))
3738 return path .join (base_path , relative_path )
@@ -232,7 +233,6 @@ def createScrollableContainer():
232233checkCornerY = mainCornerY
233234
234235
235-
236236#############
237237# MAIN MENU #
238238#############
@@ -262,6 +262,9 @@ def createScrollableContainer():
262262mainButtonCancel = Button (text = "Cancel" , command = cancelProcess , width = 10 )
263263mainLabelError = Label (mainWindow , text = '' , fg = 'black' )
264264
265+ #VERSION LABEL
266+ mainLabelVersion = Label (mainWindow , text = versionString , fg = 'gray' )
267+
265268#PACKING MAIN MENU
266269mainLabelInput .pack (pady = (5 , 0 ))
267270mainTextInput .pack (pady = (5 , 0 ))
@@ -275,6 +278,7 @@ def createScrollableContainer():
275278mainButtonCancel .pack (pady = (5 , 0 ))
276279mainLabelError .pack (pady = (10 ,0 ))
277280
281+ mainLabelVersion .pack (anchor = 'sw' , padx = 5 )
278282
279283########################
280284# TABLE SELECTION MENU #
@@ -303,6 +307,7 @@ def createScrollableContainer():
303307defaultFont = font .nametofont ("TkDefaultFont" )
304308defaultFont .configure (family = "Tahoma" , size = 9 )
305309
310+
306311##############
307312# MAIN LOOPS #
308313##############
0 commit comments