Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
Show version number in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
Jules-WinnfieldX committed Dec 4, 2023
1 parent 7ff79de commit f3c8faa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cyberdrop_dl/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.0.9"
__version__ = "5.0.11"
4 changes: 2 additions & 2 deletions cyberdrop_dl/ui/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit f3c8faa

Please sign in to comment.