File | Lines added | Lines deleted |
---|---|---|
NEWS | 3 | 0 |
src/main.cpp | 1 | 1 |
src/notifier.cpp | 3 | 0 |
File NEWS changed (mode: 100644) (index e974754..10a2ecd) | |||
1 | v2.0.3: | ||
2 | - substitute ampersand with & | ||
3 | |||
1 | 4 | v2.0.2: | v2.0.2: |
2 | 5 | - added option "NoCoverImg" | - added option "NoCoverImg" |
3 | 6 |
File src/main.cpp changed (mode: 100644) (index a7fe695..70e3731) | |||
... | ... | int main(int argc, char** argv) | |
33 | 33 | KAboutData aboutData("mpdknotifier", | KAboutData aboutData("mpdknotifier", |
34 | 34 | 0, | 0, |
35 | 35 | ki18n("MPD KDE Notifier"), | ki18n("MPD KDE Notifier"), |
36 | "2.0.2", | ||
36 | "2.0.3", | ||
37 | 37 | ki18n("A notification application that informs you " | ki18n("A notification application that informs you " |
38 | 38 | "about currently played song."), | "about currently played song."), |
39 | 39 | KAboutData::KAboutData::License_GPL_V2); | KAboutData::KAboutData::License_GPL_V2); |
File src/notifier.cpp changed (mode: 100644) (index 6799eb1..1bfc75f) | |||
... | ... | QString Notifier::applyFormat(QString _frmt, const QStringList& _l) | |
308 | 308 | } while (_frmt != tmp); | } while (_frmt != tmp); |
309 | 309 | debug("text message: " + _frmt); | debug("text message: " + _frmt); |
310 | 310 | ||
311 | // substitute ampersand | ||
312 | _frmt.replace("&", "&"); | ||
313 | |||
311 | 314 | return (_frmt); | return (_frmt); |
312 | 315 | } | } |
313 | 316 |