diff --git a/aio/README.md b/aio/README.md index cc7ecb8..a499a68 100644 --- a/aio/README.md +++ b/aio/README.md @@ -222,7 +222,7 @@ v0.1.6.0(2024/06/15) 1. [aio.py]: 新增wavelogger处理界面 2. [wavelogger.py]: 新增精度数据处理模块 -v0.1.6.1(2024/06/17) +v0.1.6.1(2024/06/16) 1. [wavelogger.py]: bugfix single_file_proc函数中,修改_start起始点的计算逻辑 2. [wavelogger.py]: bugfix find_point函数中,当判断条件为临界值 2.0 的时候,针对forward和backward两种情况,对row_target做与判断逻辑相同的处理,目的是避免形成死循环 diff --git a/aio/assets/file_version_info.txt b/aio/assets/file_version_info.txt index 1beffe4..bb3b300 100644 --- a/aio/assets/file_version_info.txt +++ b/aio/assets/file_version_info.txt @@ -31,12 +31,12 @@ VSVersionInfo( '040904b0', [StringStruct('CompanyName', 'Rokae - https://www.rokae.com/'), StringStruct('FileDescription', 'All in one automatic toolbox'), - StringStruct('FileVersion', '0.1.6.1 (2024-06-17)'), + StringStruct('FileVersion', '0.1.6.1 (2024-06-16)'), StringStruct('InternalName', 'AIO.exe'), StringStruct('LegalCopyright', '© 2024-2024 Manford Fan'), StringStruct('OriginalFilename', 'AIO.exe'), StringStruct('ProductName', 'AIO'), - StringStruct('ProductVersion', '0.1.6.1 (2024-06-17)')]) + StringStruct('ProductVersion', '0.1.6.1 (2024-06-16)')]) ]), VarFileInfo([VarStruct('Translation', [1033, 1200])]) ] diff --git a/aio/assets/vers b/aio/assets/vers index e072eb3..1f619d9 100644 --- a/aio/assets/vers +++ b/aio/assets/vers @@ -1 +1 @@ -0.1.6.1 @ 06/17/2024 \ No newline at end of file +0.1.6.1 @ 06/16/2024 \ No newline at end of file diff --git a/aio/code/aio.py b/aio/code/aio.py index 8743cec..6f4a4fd 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.6.1\nDate: 06/17/2024", font=self.my_font, text_color="#4F4F4F") + self.label_version = customtkinter.CTkLabel(self.frame_func, justify='left', text="Vers: 0.1.6.1\nDate: 06/16/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') # =====================================================================