diff --git a/oscdl.py b/oscdl.py index 43d684a..a0bb193 100644 --- a/oscdl.py +++ b/oscdl.py @@ -16,7 +16,7 @@ # Actions to perform only when the program is frozen: if updater.is_frozen() or utils.is_test("debug"): logging.basicConfig(level=logging.DEBUG) - logging.info(f"Open Shop Channel Downloader v{updater.current_version()} {updater.get_branch()}") + logging.info(f"Open Shop Channel Downloader v{updater.current_version()}") logging.info(f"OSCDL, Open Source Software by dhtdht020. https://github.com/dhtdht020.\n\n\n") logging.getLogger("PIL.PngImagePlugin").setLevel(logging.CRITICAL + 1) # Hide annoying spam from PIL diff --git a/updater.py b/updater.py index 59ffbf2..ce91f70 100644 --- a/updater.py +++ b/updater.py @@ -20,10 +20,6 @@ def current_version(): return version_number -def get_branch(): - return "Stable" - - def latest_version(): return json.loads(requests.get("https://api.github.com/repos/dhtdht020/osc-dl/releases/latest").content) diff --git a/xosc_dl.py b/xosc_dl.py index 01e45dc..eceb612 100644 --- a/xosc_dl.py +++ b/xosc_dl.py @@ -113,7 +113,7 @@ def __init__(self, app=None, splash=None, test_mode=False): def about_dialog(self): QMessageBox.about(self, f"About OSCDL", - f"Open Shop Channel Downloader v{updater.current_version()} {updater.get_branch()}
" + f"Open Shop Channel Downloader v{updater.current_version()}
" f"by dhtdht020

" f"https://github.com/dhtdht020/osc-dl
" f"Many icons provided by icons8.com

"