Add scrobbler option for stripping "remastered" etc

Fixes #1387
This commit is contained in:
Jonas Kvinge
2024-04-04 21:17:07 +02:00
parent d398c86b0c
commit 1dae80a633
13 changed files with 35 additions and 15 deletions

View File

@@ -47,6 +47,7 @@ class ScrobblerSettings : public QObject {
int submit_delay() const { return submit_delay_; }
bool prefer_albumartist() const { return prefer_albumartist_; }
bool show_error_dialog() const { return show_error_dialog_; }
bool strip_remastered() const { return strip_remastered_; }
QList<Song::Source> sources() const { return sources_; }
void ShowConfig();
@@ -73,6 +74,7 @@ class ScrobblerSettings : public QObject {
int submit_delay_;
bool prefer_albumartist_;
bool show_error_dialog_;
bool strip_remastered_;
QList<Song::Source> sources_;
Q_DISABLE_COPY(ScrobblerSettings)