Document %artist% / %album% in cover name

This commit is contained in:
craig.p.drummond
2013-05-03 18:05:48 +00:00
committed by craig.p.drummond
parent 8945d1ec6c
commit 9fc2050fd7
2 changed files with 4 additions and 1 deletions

View File

@@ -3,6 +3,8 @@
1. Display 'Calculating...', and 'Deleting...' in cache settings page if
relevant.
2. Add "(Muted)" to volume button tooltip if volume is currently muted.
3. If cover name contains %artist%, then replace with the album artist of the
current song. Likewise for %album%
1.0.2
-----

View File

@@ -88,7 +88,8 @@ ServerSettings::ServerSettings(QWidget *p)
"use a per-user instance of the dynamzier to facilitate dynamic playlists.</i>"));
#endif
coverName->setToolTip(i18n("Filename (without extension) to save downloaded covers as.\nIf left blank 'cover' will be used."));
coverName->setToolTip(i18n("<p>Filename (without extension) to save downloaded covers as.<br/>If left blank 'cover' will be used.<br/><br/>"
"<i>%artist% will be replaced with album artist of the current song, and %album% will be replaced with the album name.</i></p>"));
coverNameLabel->setToolTip(coverName->toolTip());
coverName->setValidator(new CoverNameValidator(this));
}