From 5ba3c763866632e8d4217d85229ca1dc1a187661 Mon Sep 17 00:00:00 2001 From: gitea Date: Sat, 15 Jun 2024 19:32:57 +0800 Subject: [PATCH] modify vers info --- aio/code/aio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aio/code/aio.py b/aio/code/aio.py index 1cd19ac..183e5bf 100644 --- a/aio/code/aio.py +++ b/aio/code/aio.py @@ -72,7 +72,7 @@ class App(customtkinter.CTk): btns['log']['btn'].configure(command=lambda: self.thread_it(self.func_log_callback)) btns['end']['btn'].configure(command=lambda: self.thread_it(self.func_end_callback)) # create version info - self.label_version = customtkinter.CTkLabel(self.frame_func, justify='left', text="Vers: 0.1.5.4\nDate: 06/15/2024", font=self.my_font, text_color="#4F4F4F") + self.label_version = customtkinter.CTkLabel(self.frame_func, justify='left', text="Vers: 0.1.6.0\nDate: 06/15/2024", font=self.my_font, text_color="#4F4F4F") self.frame_func.rowconfigure(6, weight=1) self.label_version.grid(row=6, column=0, padx=20, pady=20, sticky='s') # =====================================================================