Skip to content

Commit

Permalink
Removed "Stable" suffix to version.
Browse files Browse the repository at this point in the history
  • Loading branch information
dhtdht020 committed Oct 5, 2024
1 parent 2a02495 commit c4b4dfb
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
2 changes: 1 addition & 1 deletion oscdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 0 additions & 4 deletions updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion xosc_dl.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"<b>Open Shop Channel Downloader v{updater.current_version()} {updater.get_branch()}</b><br>"
f"<b>Open Shop Channel Downloader v{updater.current_version()}</b><br>"
f"by dhtdht020<br><br>"
f"<a href=\"https://github.com/dhtdht020/osc-dl\">https://github.com/dhtdht020/osc-dl</a><br>"
f"Many icons provided by <a href=\"https://icons8.com/\">icons8.com</a><br><br>"
Expand Down

0 comments on commit c4b4dfb

Please sign in to comment.