xaizek / pms (License: GPLv3+) (since 2018-12-07)
Older version of Practical Music Search written in C++.
Commit b0f602feb230e75c5ab8c3541670fe4844f4cc46

Add remainder of EXIT_IDLE macros
Author: Kim Tore Jensen
Author date (UTC): 2015-08-25 17:18
Committer name: Kim Tore Jensen
Committer date (UTC): 2015-08-25 17:18
Parent(s): ec83c51d531811dc8ec3a1afc18653f3ba2ebc7d
Signing key:
Tree: b2442b5c47ab8d56090d31f7acca085257e6d8ee
File Lines added Lines deleted
src/command.cpp 6 0
File src/command.cpp changed (mode: 100644) (index 78b6dbf..7443464)
... ... Control::crop(Songlist * list, int mode)
892 892 return false; return false;
893 893 } }
894 894
895 EXIT_IDLE;
896
895 897 /* Crop to currently playing song */ /* Crop to currently playing song */
896 898 if (mode == CROP_PLAYING) if (mode == CROP_PLAYING)
897 899 { {
 
... ... Control::newplaylist(string fn)
1527 1529 list = new Songlist(); list = new Songlist();
1528 1530 assert(list != NULL); assert(list != NULL);
1529 1531
1532 EXIT_IDLE;
1533
1530 1534 if (mpd_run_save(conn->h(), fn.c_str())) { if (mpd_run_save(conn->h(), fn.c_str())) {
1531 1535 list = new Songlist(); list = new Songlist();
1532 1536 assert(list != NULL); assert(list != NULL);
 
... ... Control::deleteplaylist(string fn)
1547 1551 vector<Songlist *>::iterator i; vector<Songlist *>::iterator i;
1548 1552 Songlist * lst; Songlist * lst;
1549 1553
1554 EXIT_IDLE;
1555
1550 1556 /* FIXME: implement PlaylistList for this functionality */ /* FIXME: implement PlaylistList for this functionality */
1551 1557 i = playlists.begin(); i = playlists.begin();
1552 1558 do { do {
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/pms

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

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