From f86ed3b180272e9b09a3a2d0dffbf5364639de14 Mon Sep 17 00:00:00 2001 From: yoshiko2 Date: Sat, 30 Jan 2021 03:15:17 +0800 Subject: [PATCH] Change version to 4.4.2 --- AV_Data_Capture.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/AV_Data_Capture.py b/AV_Data_Capture.py index dedbcd6..3f77b9b 100755 --- a/AV_Data_Capture.py +++ b/AV_Data_Capture.py @@ -16,7 +16,7 @@ def check_update(local_version): data = json.loads(get_html("https://api.github.com/repos/yoshiko2/AV_Data_Capture/releases/latest")) except: print("[-]Failed to update! Please check new version manually:") - print("[-]https://github.com/yoshiko2/AV_Data_Capture/releases") + print("[-] https://github.com/yoshiko2/AV_Data_Capture/releases") print("[*]======================================================") return @@ -132,7 +132,7 @@ def create_data_and_move_with_custom_number(file_path: str, c: config.Config, cu if __name__ == '__main__': - version = '4.3.2' + version = '4.4.1' # Parse command line args single_file_path, folder_path, config_file, custom_number, auto_exit = argparse_function(version) @@ -140,8 +140,9 @@ if __name__ == '__main__': # Read config.ini conf = config.Config(path=config_file) + print('[*]================== AV Data Capture ===================') + print('[*]' + version.center(54)) print('[*]======================================================') - print('[*]' + ('AV Data Capture ver.' + version).center(54)) if conf.update_check(): check_update(version)