* Improved game checking mechanism
* Some code refactor
* Updated .gitignore

Signed-off-by: Lev Rusanov <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
2024-12-06 23:23:53 +07:00
parent 2a20b50943
commit 13e3e0e1b8
5 changed files with 46 additions and 43 deletions

View File

@@ -54,7 +54,7 @@ def update_configs():
update_list = check_remote_hashes()
if not update_list or len(update_list) == 0:
return
progress_bar = util.show_progress_bar("Download progress", "Downloading configs...", len(update_list))
progress_bar = util.show_progress_bar("Download progress", "Downloading configs", len(update_list))
for cfg in update_list:
check_path(cfg)
response_status, response = get_response_result(github_link + cfg)