From 6d03f4f28179b83294a3dcfeedf34a613eefa5ed Mon Sep 17 00:00:00 2001 From: gitea Date: Wed, 10 Jul 2024 19:41:34 +0800 Subject: [PATCH] fix version --- 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 45a0461..165966c 100644 --- a/aio/code/aio.py +++ b/aio/code/aio.py @@ -71,7 +71,7 @@ class App(customtkinter.CTk): btns_func['log']['btn'].configure(command=lambda: self.thread_it(self.func_log_callback)) btns_func['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.8.0\nDate: 07/04/2024", font=self.my_font, text_color="#4F4F4F") + self.label_version = customtkinter.CTkLabel(self.frame_func, justify='left', text="Vers: 0.1.9.0\nDate: 07/10/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') # =====================================================================