Prepare V0.2

This commit is contained in:
unknown
2025-12-19 00:31:32 +01:00
parent 757b0e0e98
commit 88f9628e4b
3 changed files with 5 additions and 3 deletions

Binary file not shown.

View File

@@ -3,7 +3,7 @@ import sys
from pathlib import Path, PurePath from pathlib import Path, PurePath
from typing import Any from typing import Any
ZOTIFY_VERSION = "0.2.0"
ROOT_PATH = 'ROOT_PATH' ROOT_PATH = 'ROOT_PATH'
ROOT_PODCAST_PATH = 'ROOT_PODCAST_PATH' ROOT_PODCAST_PATH = 'ROOT_PODCAST_PATH'
SKIP_EXISTING = 'SKIP_EXISTING' SKIP_EXISTING = 'SKIP_EXISTING'

View File

@@ -14,6 +14,7 @@ import requests
from zotify.const import ARTIST, GENRE, TRACKTITLE, ALBUM, YEAR, DISCNUMBER, TRACKNUMBER, ARTWORK, \ from zotify.const import ARTIST, GENRE, TRACKTITLE, ALBUM, YEAR, DISCNUMBER, TRACKNUMBER, ARTWORK, \
WINDOWS_SYSTEM, ALBUMARTIST WINDOWS_SYSTEM, ALBUMARTIST
from zotify.config import ZOTIFY_VERSION
from zotify.zotify import Zotify from zotify.zotify import Zotify
@@ -109,7 +110,7 @@ def split_input(selection) -> List[str]:
def splash() -> str: def splash() -> str:
""" Displays splash screen """ """ Displays splash screen """
return """ return (r"""
+================================================================+ +================================================================+
| | ███████╗ ██████╗ ████████╗██╗███████╗██╗ ██╗ | | | | ███████╗ ██████╗ ████████╗██╗███████╗██╗ ██╗ | |
| | ╚══███╔╝██╔═══██╗╚══██╔══╝██║██╔════╝╚██╗ ██╔╝ | | | | ╚══███╔╝██╔═══██╗╚══██╔══╝██║██╔════╝╚██╗ ██╔╝ | |
@@ -117,6 +118,7 @@ def splash() -> str:
| | ███╔╝ ██║ ██║ ██║ ██║██╔══╝ ╚██╔╝ | | | | ███╔╝ ██║ ██║ ██║ ██║██╔══╝ ╚██╔╝ | |
| | ███████╗╚██████╔╝ ██║ ██║██║ ██║ | | | | ███████╗╚██████╔╝ ██║ ██║██║ ██║ | |
| | ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ | | | | ╚══════╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ | |
| | VERSION {version} | |
| ____ _ _ _ __ | | ____ _ _ _ __ |
| | _ \ __ _| |_ ___| |__ ___ __| | / _| ___ _ __ | | | _ \ __ _| |_ ___| |__ ___ __| | / _| ___ _ __ |
| | |_) / _` | __/ __| '_ \ / _ \/ _` | | |_ / _ \| '__| | | | |_) / _` | __/ __| '_ \ / _ \/ _` | | |_ / _ \| '__| |
@@ -129,7 +131,7 @@ def splash() -> str:
||____/| .__/ \___/ \__|_|\____|_|\__,_|_.__/ /_/ \_|_| |___|| ||____/| .__/ \___/ \__|_|\____|_|\__,_|_.__/ /_/ \_|_| |___||
| |_| | | |_| |
+================================================================+ +================================================================+
""" """).format(version=ZOTIFY_VERSION)
def clear() -> None: def clear() -> None: