Skip to content

Commit 1bf0dc4

Browse files
V1.03.04
Added version label to bottom left corner
1 parent 0bb1bc3 commit 1bf0dc4

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

DBConverter.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
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 #
@@ -16,7 +19,6 @@
1619
from tkinter import font
1720

1821

19-
2022
########################
2123
# VARIABLE DEFINITIONS #
2224
########################
@@ -26,12 +28,11 @@
2628
outputPath = FALSE
2729
checkboxVars = []
2830

31+
2932
########################
3033
# FUNCTION DEFINITIONS #
3134
########################
3235

33-
34-
3536
def 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():
232233
checkCornerY = mainCornerY
233234

234235

235-
236236
#############
237237
# MAIN MENU #
238238
#############
@@ -262,6 +262,9 @@ def createScrollableContainer():
262262
mainButtonCancel = Button(text="Cancel", command=cancelProcess, width=10)
263263
mainLabelError=Label(mainWindow, text='', fg='black')
264264

265+
#VERSION LABEL
266+
mainLabelVersion = Label(mainWindow, text=versionString, fg='gray')
267+
265268
#PACKING MAIN MENU
266269
mainLabelInput.pack(pady=(5, 0))
267270
mainTextInput.pack(pady=(5, 0))
@@ -275,6 +278,7 @@ def createScrollableContainer():
275278
mainButtonCancel.pack(pady=(5, 0))
276279
mainLabelError.pack(pady=(10,0))
277280

281+
mainLabelVersion.pack(anchor='sw', padx = 5)
278282

279283
########################
280284
# TABLE SELECTION MENU #
@@ -303,6 +307,7 @@ def createScrollableContainer():
303307
defaultFont = font.nametofont("TkDefaultFont")
304308
defaultFont.configure(family="Tahoma", size=9)
305309

310+
306311
##############
307312
# MAIN LOOPS #
308313
##############

0 commit comments

Comments
 (0)