diff --git a/cyberdrop_dl/__init__.py b/cyberdrop_dl/__init__.py index 603e34093..3537f131b 100644 --- a/cyberdrop_dl/__init__.py +++ b/cyberdrop_dl/__init__.py @@ -1 +1 @@ -__version__ = "5.0.9" +__version__ = "5.0.11" diff --git a/cyberdrop_dl/ui/ui.py b/cyberdrop_dl/ui/ui.py index 7202d4e01..c4760e78e 100644 --- a/cyberdrop_dl/ui/ui.py +++ b/cyberdrop_dl/ui/ui.py @@ -5,7 +5,7 @@ from InquirerPy import inquirer from rich.console import Console - +from cyberdrop_dl import __version__ from cyberdrop_dl.ui.prompts.settings_authentication_prompts import edit_authentication_values_prompt from cyberdrop_dl.ui.prompts.general_prompts import ( main_prompt, select_config_prompt, donations_prompt, @@ -24,7 +24,7 @@ def program_ui(manager: Manager): """Program UI""" while True: console.clear() - console.print("[bold]Cyberdrop Downloader[/bold]") + console.print(f"[bold]Cyberdrop Downloader (V{str(__version__)})[/bold]") console.print(f"[bold]Current Config:[/bold] {manager.config_manager.loaded_config}") action = main_prompt(manager) diff --git a/pyproject.toml b/pyproject.toml index 0fc9b74c7..15b5f229f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cyberdrop-dl" -version = "5.0.9" +version = "5.0.11" description = "Bulk downloader for multiple file hosts" authors = ["Jules Winnfield "] readme = "README.md"