charset: work around "unused function" compiler warnings
Fixed colours for status-flags (previously documented but not a feature)
fix typo in error message
*: make variables more local
configure.ac: require libmpdclient 2.3
*: use Compiler.h macros instead of glib.h
conf: simplify read_configuration()
Move code to find_config_file() and find_keys_file().
Move code to find_config_file() and find_keys_file().
conf: convert runtime check to assertion
conf: eliminate local variable "match_found"
*: add "pure" attributes
main: remove useless "Connected to ..." message
This message has no use, because the user already knows where he asked
ncmpc to connect to. And it was annoying, because it delays the
progress display in the status bar.
This message has no use, because the user already knows where he asked
ncmpc to connect to. And it was annoying, because it delays the
progress display in the status bar.
status_bar: export _clear_message()
main: require MPD 0.16
Remove a few version checks and some fallback code.
Remove a few version checks and some fallback code.
match,charset: add obsolete GLib version checks
resolver: remove unused library
glib_compat.h: remove obsolete header
We require GLib 2.14, and the GLib 2.16 functions are not used by
ncmpc.
We require GLib 2.14, and the GLib 2.16 functions are not used by
ncmpc.
configure.ac: enable automake silent-rules
configure.ac: update VERSION_MINOR
screen_queue: rename "playlist" to "queue"
"Playlists" are m3u files, and the "queue" is the current list of
songs that are about to be played by MPD.
"Playlists" are m3u files, and the "queue" is the current list of
songs that are about to be played by MPD.
configure.ac: add more optimization flags
configure.ac: prepare for 0.22
release 0.21
Makefile.am: remove src/win/ncmpc.rc from SOURCES
po: regenerate ncmpc.pot
po/POTFILES.in: add screen_chat.c
po: update Spanish translation
configure.ac: require GLib 2.14
Required for GRegex.
Required for GRegex.
strfsong: Add fallback mpd tags for more compatibility
screen_lyrics: return if fork fails
Avoids the clang warning due to uninitialized "status".
Avoids the clang warning due to uninitialized "status".
autogen.sh: use $AUTOMAKE_FLAGS
Allows caller to pass --copy.
Allows caller to pass --copy.
lyricswiki: fix Ruby 2.0 and UTF-8
screen_song: show song position
screen_queue: fix CMD_SCREEN_SWAP with an empty queue
It crashed without this patch.
It crashed without this patch.
Try to keep the cursor position when reloading lyrics
mpdclient.h: don't self-include
list_window.h: fix a comment
ncmpc.1: remove double-spaces (" ")
strfsong: add %albumartist%, %composer%, and %performer%
ncmpc.1: update the list of "metadata delimiters"
screen_search: fix crash when disconnected
ncmpc.1: fix song format example: %file% can't fail
(And also fix the asymmetry of "%file")
(And also fix the asymmetry of "%file")
strfsong: evaluate literal text as "true"
That is, you can now do things like this:
"[%artist%|(artist n/a)] - [%title%|(title n/a)]"
That is, you can now do things like this:
"[%artist%|(artist n/a)] - [%title%|(title n/a)]"
strfsong: add a '\0' after copied chars; avoid memset
Fix strfsong behaviour for unknown identifier
[jn: adjusted the white space style]
[jn: adjusted the white space style]
ncmpc.1: describe the "chat" protocol
ncmpc.1: document the "chat-prefix" option
Merge branch 'chat' of git://git.musicpd.org/jn/ncmpc
screen_chat: add an option to set the message prefix
screen_chat: add nick name emulation
screen_chat: make it useful
This patch adds basic functionality to the chat screen.
This patch adds basic functionality to the chat screen.
mpdclient: add client-to-client support
configure.ac: screen_chat needs screen_text
configure.ac: the chat screen needs libmpdclient >= 2.5
screen_text: add support for appending text
screen_text: (API) use (char *) for strings
Reduce some unneeded complexity when adding strings returned
by other libraries than glib.
Reduce some unneeded complexity when adding strings returned
by other libraries than glib.
struct mpdclient: add a reconnection count
configure.ac: set HAVE_WINDOWS=0 to avoid a "test" warning
The warning would be:
./configure: line 5033: test: -eq: unary operator expected
The warning would be:
./configure: line 5033: test: -eq: unary operator expected
add an initial version of a chat screen
win32: Add a Windows OS resource file and icon
conf.c: Add windows system key binding config
conf.c: Move system key binding filename building to a function
conf.c: Add windows default user key binding config check
conf.c: Add windows default config checking
Modify version string to post-release version 0.21~git
ncmpc version 0.20
configure.ac: Don't add CURSES_LIB to AM_CPPFLAGS
screen_keydef: don't crash on Ctrl-Space
command: don't crash on Ctrl-Space
screen_keydef: use inline functions instead of macros for non-constants
conf.c: return void in read_configuration
show the path of the config files in --version output
fixes http://musicpd.org/mantis/view.php?id=3354
fixes http://musicpd.org/mantis/view.php?id=3354
conf: helper functions to build config file names
conf: rename get_user_key_binding_filename to build_*
This name is consistent with g_build_filename and it better reflects
the fact that memory is allocatd by this function.
This name is consistent with g_build_filename and it better reflects
the fact that memory is allocatd by this function.
ncmpc.1: update --version documentation
Merge remote branches 'jn/keydef' and 'jn/dev'
screen_keydef: join two short-ish lines
screen_keydef: support CMD_GO_ROOT_DIRECTORY
Maybe a bit pointless, but some user might want that.
Maybe a bit pointless, but some user might want that.
screen_keydef: support adding keys with CMD_ADD
AUTHORS: fix some grammar ("whom"/"who")
This commit lacks a good description.
This commit lacks a good description.
mpdclient: add G_GNUC_PURE to _is_connected()/_get_current_song()
screen_queue: fix indentation after #ifndef block
conf: make "hardware-cursor" a macro
remove obsolete str_pool.c and str_pool.h
command.c: remove obsolete DEBUG_KEYS and DK()
screen_keydef: save lw->start when switching view modes
screen_keydef: split out code to switch views
screen_keydef: better distinction of adding and replacing keys
screen_keydef: don't assign a key twice to one command
screen_keydef: show command descriptions
screen_keydef: rework the list length / item position logic
screen_keydef: clean up keydef_cmd return values
screen_keydef: remove LIST_ITEM_{SAVE,APPLY}_LABEL
These macros were only being used in one place.
These macros were only being used in one place.
screen_keydef: get rid of the BUFSIZE constant
It was only used in one function. Use sizeof(buf) instead.
It was only used in one function. Use sizeof(buf) instead.
screen_keydef: document delete_key
options: get_key_names: use bool
(And true/false in calls to it)
(And true/false in calls to it)
command.c: set_key_flags: return void
The return value was unused
The return value was unused
config.sample: add the "timeout" option
ncmpc.1: the default connection timeout is 5 seconds
change CMD_LYRICS_EDIT to CMD_EDIT
This allows other screens to implement edit funtionality
This allows other screens to implement edit funtionality