Andrzej Rybczak
ec9017d5a2
media library: fix compatibility with mpd < 0.14
16 years ago
Andrzej Rybczak
0f230ab7b0
new feature: separators between albums in playlist
16 years ago
Andrzej Rybczak
e978cfcc8b
new feature: locate song in tag editor
16 years ago
Andrzej Rybczak
336fa3cd7b
new feature: toggle bitrate visibility at runtime
16 years ago
Andrzej Rybczak
37c7acfd3c
get info about state of new connection after reconecting with idle mode active
16 years ago
Andrzej Rybczak
08e9b0ee3d
do not monitor mpdclient file descriptor with select() if idle is off
...
it doesn't do anything in such case.
16 years ago
Damien Leone
b113beed15
manpage, ncmpcpp: fix typos
16 years ago
Frank Blendinger
d139f2d8af
jump from browser to playlist editor with GoToContainingDir key
16 years ago
Frank Blendinger
6b5ed187a1
add new movement keys: {Up,Down}{Album,Artist}
16 years ago
Andrzej Rybczak
a24736475e
put configuration related functions into appropriate structs
16 years ago
Andrzej Rybczak
ad74cfea2e
new feature: customizable startup screen
16 years ago
Andrzej Rybczak
4bb1fdb40d
simplify code responsible for deleting songs a bit
16 years ago
Andrzej Rybczak
08daa61907
update copyright notices
16 years ago
Andrzej Rybczak
dac2458e1f
rename misc.{cpp,h} to sel_items_adder.{cpp,h}
16 years ago
Andrzej Rybczak
f991a41c1a
add support for switching between user-defined sequence of screens using Tab
16 years ago
Andrzej Rybczak
4ed9493abd
add support for album artist tag
16 years ago
Andrzej Rybczak
df15fe2bf4
add support for adding random artists/albums to playlist
16 years ago
Andrzej Rybczak
ef6719f5bb
make media library show more songs (with incomplete tags etc.)
16 years ago
Frank Blendinger
a5882ee27f
added a key to jump to a song in the media library
...
This commit introduces a new key to bind, key_go_to_media_library. It
will switch to the media library and select the song under the cursor.
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
Frank Blendinger
b504b346af
screen_switcher between current and last screen
...
Setting the new config variable "screen_switcher_browser_only" to "no"
will make the "key_screen_switcher" key switch between the current and
the last used screen, sort of like the Alt+Tab window switching
mechanism in many window managers.
This (intendedly) works only for the "main" screens (playlist, browser,
media library, etc.) and not for info/lyrics/server info. Those screens
can be closed with the screen_switcher key, but the will not be
remembered.
indentation correction in config
17 years ago
Andrzej Rybczak
70d1124800
fix refreshing screens with more than one column after seaching/filtering
...
this bug was caused by db5efc6e
17 years ago
Andrzej Rybczak
6cd420511d
perform case insensitive searching in text fields
17 years ago
Andrzej Rybczak
5aa1613cfb
make binding responsible for going to parent dir work in tag editor
17 years ago
Andrzej Rybczak
9a5a053ec3
improve handling columns in media library a bit
...
given column should clear only the first column on its right, not all.
17 years ago
Andrzej Rybczak
495ec25a0a
simplify Clear() in Window and its derivatives
...
it removes argument responsible for immediate refreshing.
since after all calls that were refreshing screen there was
call to Refresh() anyway, this switch doesn't make much sense.
17 years ago
Andrzej Rybczak
5b2dbe026c
do not delete items from playlist if sending command delete failed
17 years ago
Andrzej Rybczak
db5efc6eb9
update screen in TraceMpdStatus(), not in the main loop
...
this makes screen update even if ncmpcpp is in Window::GetString().
17 years ago
Andrzej Rybczak
b9a14e37ab
fix screen resize
...
ncmpcpp was sometimes segfaulting while resizing screen, this commit fixes that.
17 years ago
Andrzej Rybczak
fa9b58627a
fix seeking with f/b in visualizer
...
visualizer specific timeout is too small, so we
need to set it to default value while seeking.
17 years ago
Andrzej Rybczak
95ce4065ae
add event handler for MPD_IDLE_OUTPUT notification
17 years ago
Andrzej Rybczak
164d32c079
use one global timer instead of several local ones
17 years ago
Andrzej Rybczak
dd866e9337
fix visualizer
17 years ago
Andrzej Rybczak
b947575528
move code responsible for screen resize to SIGWINCH handler
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
1a3e10dab7
new feature: toggle replay gain mode (requires >=mpd-0.16)
17 years ago
Andrzej Rybczak
62b7df69f3
new feature: refetch lyrics
17 years ago
Andrzej Rybczak
03f6fd904f
new screen: mpd server info
17 years ago
Andrzej Rybczak
3551057dbb
new feature: sort songs in browser by mtime (optional)
17 years ago
Andrzej Rybczak
b48133a743
change keybinding for changing browse mode
...
I shouldn't do that, but the old one will be much better for
choosing whether songs in browser have to be sorted by names
or modification date. Besides, binding this to browser key
makes browser behaviour more "compatible" with media library.
17 years ago
Andrzej Rybczak
833f608d60
shorten long names in messages displayed in statusbar
17 years ago
Andrzej Rybczak
6f7b77c84e
editing lyrics shouldn't require mpd_music_dir variable to be set
17 years ago
Andrzej Rybczak
f61b4716a2
add support for multiple tags
17 years ago
Andrzej Rybczak
55173cb419
move local_browser variable from settings to Browser class
17 years ago
Andrzej Rybczak
1b2999ef8e
fix compilation under mingw32
17 years ago
Andrzej Rybczak
45884e0895
fix a few bugs progressbar related (redrawing, colors)
17 years ago
Andrzej Rybczak
cada9f4355
bold expected keys while waiting for keypress
17 years ago
Andrzej Rybczak
9e20858977
do not show cursor while waiting for only one keypress
17 years ago
Andrzej Rybczak
048fd2ffce
refresh status window immediately after prompting user
...
this fixes #2537 .
17 years ago
Andrzej Rybczak
0d9f6fab7d
add MPD::Connection::Toggle() and throw away MPD::Connection::Execute()
17 years ago