From 5d9978ce664b6e0df135a61684bf315c1341954e Mon Sep 17 00:00:00 2001 From: Hirusha Adikari <36286877+hirusha-adi@users.noreply.github.com> Date: Wed, 24 Jan 2024 13:15:55 +0530 Subject: [PATCH] show version --- search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/search.py b/search.py index bf0de41..7373389 100644 --- a/search.py +++ b/search.py @@ -45,12 +45,12 @@ def run_progress(self): class DocxSearchApp: def __init__(self, root): self.root = root - self.root.title("Docx Search GUI") + self.root.title("Docx-Search GUI v0.1") self.root.resizable(width=False, height=False) title_font = font.Font(family="Helvetica", size=16, weight="bold") - self.title_label = ttk.Label(root, text="Docx-Search GUI", font=title_font) + self.title_label = ttk.Label(root, text="Docx-Search GUI v0.1", font=title_font) self.title_label.grid(row=2, column=0, padx=3, pady=3, columnspan=5) self.target_word_label = ttk.Label(root, text="Query:")