Andrzej Rybczak
a27332a825
get rid of using directives
...
these in ncmpcpp.cpp stay since a lot of memebers are used.
16 years ago
Andrzej Rybczak
ef6719f5bb
make media library show more songs (with incomplete tags etc.)
16 years ago
Andrzej Rybczak
895c9177d5
fix toggle command
16 years ago
Andrzej Rybczak
05fc53ba32
make MPD::Connection::Toggle() run playback if player is stopped
16 years ago
Andrzej Rybczak
63178105c3
remove hack that concerns idle events mode.
...
fuck this. it's mpd problem, not mine (see bug 2612)
16 years ago
Andrzej Rybczak
2fb20fd572
add config options for communication mode with mpd (polling for default)
...
idle support in ncmpcpp is marked experimental since its support
in mpd is not ready for general use in full featured clients
(see bug 2612)
16 years ago
Andrzej Rybczak
c005b7b303
reenable hack disabled with 0007ba40
...
it seems it's still needed ;X
16 years ago
Andrzej Rybczak
ea4c035c4a
send idle command immediately after actions that doesn't change mpd status
16 years ago
Andrzej Rybczak
0007ba4082
remove hack that guaranteed proper status update (not needed anymore)
...
it's fixed for mpd-git, newest mpd-0.15.x doesn't seem to suffer
from this bug anymore, mpd-0.13 doesn't support idle. no idea about
mpd-0.14 though, but come on. if you use it, upgrade.
16 years ago
Andrzej Rybczak
b83adc01b9
check for errors after calling status updater
17 years ago
Andrzej Rybczak
5b2dbe026c
do not delete items from playlist if sending command delete failed
17 years ago
Andrzej Rybczak
60d932ef68
fix 'db update' flag not being updated if mpd is stopped
17 years ago
Andrzej Rybczak
0a95aebd7c
improve elapsed time handling
...
this also throws away hack that was used to count elapsed
time locally while polling mpd, it's not needed anymore.
17 years ago
Andrzej Rybczak
dfb4653669
fix MPD::Connection::Add()
17 years ago
Andrzej Rybczak
95ce4065ae
add event handler for MPD_IDLE_OUTPUT notification
17 years ago
Andrzej Rybczak
9f5e9e60ff
use idle mask to see what changed instead of comparing old and new status
17 years ago
Andrzej Rybczak
dd04406ee5
poll both stdin and mpd using one select()
...
this allows for immediate reading mpd events
17 years ago
Andrzej Rybczak
e112e0d975
use select() instead of poll() as it's portable
17 years ago
Andrzej Rybczak
3e99bba5b8
use idle notifications instead of polling mpd all the time
17 years ago
Andrzej Rybczak
1a3e10dab7
new feature: toggle replay gain mode (requires >=mpd-0.16)
17 years ago
Andrzej Rybczak
03f6fd904f
new screen: mpd server info
17 years ago
Andrzej Rybczak
833f608d60
shorten long names in messages displayed in statusbar
17 years ago
Andrzej Rybczak
b979189111
pass to MPD::Connection::AddSong() another parameter - position to add
17 years ago
Andrzej Rybczak
8a14d08cd9
fix detection if database has been updated
17 years ago
Andrzej Rybczak
b0943c28c2
fix adding songs to playlist (broken by d82498ea)
17 years ago
Andrzej Rybczak
d82498ea16
throw away isConnected variable and use itsConnection instead
17 years ago
Andrzej Rybczak
b0212a3779
fix MPD::Connection::GetDirectories()
...
they should return only dirs from main dir, not from all subdirs
17 years ago
Andrzej Rybczak
de6db568c1
fix broken compilation due to lack of setters for mpd_song
17 years ago
Andrzej Rybczak
0d9f6fab7d
add MPD::Connection::Toggle() and throw away MPD::Connection::Execute()
17 years ago
Andrzej Rybczak
08cb912424
fix Connection::AddSong()
17 years ago
Andrzej Rybczak
dec7bd9c0e
make ncmpcpp use external libmpdclient (--without-taglib and --without-iconv)
17 years ago
Andrzej Rybczak
6843b98627
throw away all NULLs and replace them by 0s
17 years ago
Andrzej Rybczak
4f3040e0ec
move code responsible for adding selected items to playlists to misc.cpp
17 years ago
Andrzej Rybczak
7a85a15ff2
simplify code responsible for adding items with 'a' more
17 years ago
Andrzej Rybczak
f60cc71b91
some MPD::Song improvements and syntax simplifications
17 years ago
Andrzej Rybczak
df051bf674
remove using declarations
17 years ago
Andrzej Rybczak
9dab25e02c
use prefix ++ instead of postfix where available
17 years ago
Andrzej Rybczak
2eb913fe22
define MPD::Connection handler as an object, not pointer
17 years ago
Andrzej Rybczak
ff3e90d91d
fix database update
17 years ago
Andrzej Rybczak
c4d88133bd
do not attempt to change volume if requested value is <0 or >100
17 years ago
Andrzej Rybczak
450bf1b636
initialize screens only if necessary
17 years ago
Andrzej Rybczak
5a2853b36a
new feature: outputs screen
17 years ago
Andrzej Rybczak
dd266b0103
new feature: add random songs to playlist
17 years ago
Andrzej Rybczak
4c8a70aef5
do not allow empty search constraints with mpd < 0.14*
17 years ago
Andrzej Rybczak
00dcadcc8a
add support for consume mode
...
info about this feature can be found in mpd docs.
17 years ago
Andrzej Rybczak
7c205e70eb
fix displaying update flag ('U') immediately after succesfully sent command
17 years ago
Andrzej Rybczak
5f41640cd9
handle single command and remove hacks used as substitute for it
...
mpd-git has single command, which provides functionality
of both "repeat one" and "stop after current track" modes.
repeat one = single && repeat
stop after current track = single && !repeat
17 years ago
Andrzej Rybczak
f78e88e6aa
do not fetch status after succesful setvol command, set it locally
17 years ago
Andrzej Rybczak
8e350292ad
...but at first check if there is callback to invoke.
17 years ago
Andrzej Rybczak
9270a83a78
invoke callback immediately after sending update command succesfully
17 years ago