feat: initial database creation, loading

fixes for cartographer and automatically add track to album when adding to artist
This commit is contained in:
Joshua Strobl 2024-10-05 00:03:50 +03:00
parent 72bbcaba9e
commit 62c99ee67c
18 changed files with 515 additions and 108 deletions

View file

@ -8,6 +8,7 @@
class KotoUiPreferences {
public:
KotoUiPreferences();
KotoUiPreferences(std::optional<toml::value> v);
~KotoUiPreferences();
@ -17,6 +18,8 @@ class KotoUiPreferences {
bool getAlbumInfoShowYear();
float getLastUsedVolume();
toml::ordered_value serialize();
void setAlbumInfoShowDescription(bool show);
void setAlbumInfoShowGenre(bool show);
void setAlbumInfoShowNarrator(bool show);