feat: added base functionality of artwork class

This commit is contained in:
2024-04-10 16:39:46 +02:00
parent ae905b5fbf
commit 25c20a7ef3
4 changed files with 55 additions and 1 deletions

View File

@@ -27,6 +27,10 @@ The further you choose to be able to go back, the higher the memory usage.
EmptyLine(),
Attribute(name="preferred_artwork_resolution", default_value=100),
EmptyLine(),
Attribute(name="sort_by_date", default_value=True, description="If this is set to true, it will set the albumsort attribute such that,\nthe albums are sorted by date"),
Attribute(name="sort_album_by_type", default_value=True, description="""If this is set to true, it will set the albumsort attribute such that,
the albums are put into categories before being sorted.
@@ -146,6 +150,9 @@ class SettingsStructure(TypedDict):
language: str
user_agent: str
# artwork
preferred_artwork_resolution: int
# paths
music_directory: Path
temp_directory: Path