xaizek / mpdknotifier (License: GPLv2+) (since 2018-12-07)
A notification application that informs you about currently played song.
Commit 09e7fd759d9f240389da9d0732179e4ef25e581a

Substitute ampersand with &
Author: xaizek
Author date (UTC): 2011-07-04 11:19
Committer name: xaizek
Committer date (UTC): 2011-07-04 11:19
Parent(s): fba6e05d1710ee1072453ce88d701245e03f9590
Signing key:
Tree: 2b85fc0f09b00477dedb490ba0619d7d1fa7d763
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
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/mpdknotifier

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/mpdknotifier

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master