aboutsummaryrefslogtreecommitdiffstats
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-11-18screen_browser: check if filelist is setMax Kellermann1-3/+8
When calling browser_change_directory() before a filelist was set, ncmpc would crash due to a NULL pointer dereference. This scenario is not possible currently, since the open() method allocates the filelist.
2008-11-18screen_browser: use bool for return valuesMax Kellermann2-23/+23
Return true/false instead of 0/-1.
2008-11-18screen_lyrics: added gettext markersMax Kellermann1-6/+9
2008-11-17Makefile.am: added screen_play.h to $(ncmpc_headers)Max Kellermann1-0/+1
screen_play.h was missing in the tarball.
2008-11-17screen_utils: check for NULL passwordMax Kellermann1-1/+10
Fix a NULL pointer dereference and a memory leak: check if screen_read_password() returns NULL, and don't call mpd_sendPasswordCommand(NULL) in this case. Free the password when done.
2008-11-10lirc: refactored event handlerThomas Jansen4-57/+55
* moved lirc_event to lirc.c and split out the parts that depend on variables in main.c into three separate functions * changed keyboard_event accordingly to avoid duplicate code * merged lirc_event with ncmpc_lirc_get_command
2008-11-07mpdclient: use g_utf8_collate()Max Kellermann1-8/+3
Use one g_utf8_collate() call instead of g_utf8_collate_key() twice plus strcmp().
2008-11-07wreadln: return NULL instead of empty stringMax Kellermann4-8/+6
No wreadln() caller cares about an empty string. Simplify the callers by returning NULL instead of an allocated empty string. This fixes several memory leaks.
2008-11-07mpdclient: removed _utf8 suffix from function namesMax Kellermann6-13/+13
All functions must receive UTF-8 file names. Delete all which still work with locale strings, and remove the _utf8 suffix from the others.
2008-11-07mpdclient: expect UTF-8 stringsMax Kellermann8-99/+65
Don't convert the character set of strings to and from the current locale. This library cannot know what the strings are going to be used for, so it should not mess with them.
2008-11-07screen_search: fixed 2 memory leaksMax Kellermann1-0/+6
Free the old pattern before prompting for a new one. Free the old filelist object before retrieving the new one.
2008-11-07screen_play: free the wreadln() return valueMax Kellermann1-0/+1
2008-11-07screen_browser: free g_path_get_dirname() return valueMax Kellermann1-0/+1
The function browser_change_directory() did not free the return value of g_path_get_dirname().
2008-11-07screen_file: optimized title formulaMax Kellermann1-12/+10
Don't allocate and copy memory.
2008-11-07main: optimized error_msg()Max Kellermann1-1/+2
The pointer has already been checked for NULL, eliminate that check.
2008-11-07Makefile.am: added custom rule with -fwhole-programMax Kellermann1-0/+6
To make the ncmpc binary even smaller, you can compile all sources at once with "--combine -fwhole-program". Unfortunately, automake does not support this mode. For further experiments, this patch adds a custom rule which creates the binary named "ncmpc-tiny" this way.
2008-11-07configure.ac, Makefile.am: removed subversion keywordsMax Kellermann1-4/+0
Removed $Id$.
2008-11-07disable more features with --enable-miniMax Kellermann16-13/+151
Disable lots of smaller features which don't have a separate configure option: - xterm title - screen list - horizontal scrolling - MPD version number check - key binding checks - character set conversion - bitrate display - highlighting in the file browser - completion / history
2008-11-07command.h: include config.hMax Kellermann1-0/+2
The source command.h checks for configure.ac options, so it needs to include config.h.
2008-11-07charset: don't allocate GErrorMax Kellermann1-12/+4
Since the GError return value of g_convert_*() is ignored by ncmpc, we don't need to retrieve it at all.
2008-11-07options: don't store disabled optionsMax Kellermann5-0/+23
Options which are disabled at compile time shouldn't reserve space for their values in the options struct.
2008-11-07options: static initialization if possibleMax Kellermann1-11/+11
Initialize the options struct statically.
2008-11-07options: removed deprecated optionsMax Kellermann2-8/+1
"reconnect" is always enabled. "debug" code has been removed.
2008-11-07configure.ac: added --disable-help-screenMax Kellermann3-1/+8
2008-11-07configure.ac: added LIRC configure switchMax Kellermann1-1/+3
Detect liblircclient with pkg-config.
2008-11-07lirc: pass writable string to lirc_init()Max Kellermann1-1/+3
The "prog" argument of lirc_init() expects a non-const string. Pass a local string variable.
2008-11-07native LIRC support for ncmpcThomas Jansen4-0/+113
The attachment includes the patch and a sample .lircrc config for testing purposes (i. e. only a few commands are mapped to IR events). The config is rather simple to write: For each button add a block like this to ~/.lircrc: begin button = <button name from /etc/lircd.conf> prog = ncmpc config = <command name from src/command.c> end The patch is not finished, there are several problems that still need to be solved: 1. the configure.ac modifications are just for testing purposes and should be made optional with a parameter like --enable-lirc for ./configure. Unfortunately I'm not an expert on autoconfig tools. 2. LIRC example code [1] suggests looping over lirc_code2char, probably to have multiple actions that can be triggered from one button. Perhaps lirc_event(...) should be moved to lirc.c and be heavily modified, no longer being a mere copy of keyboard_event(...).
2008-10-08screen_browser: fix warning when lyrics screen is disabledMax Kellermann1-0/+2
A local variable was only used by the lyrics screen code. Put #ifdef around its declaration.
2008-10-06wreadln: support wide charactersMax Kellermann1-17/+190
wreadln() didn't distinguish narrow from wide characters, which resulted in display corruption. This patch adds a lot of internal conversions between byte positions, screen positions and character position, which hopefully fixes all these bugs. Since these conversions are quite expensive, the code should be revised and optimized.
2008-10-06wreadln: wait for complete multibyte sequence in wreadln_insert_byte()Max Kellermann1-0/+54
For multibyte input, we should use wget_wch(), but this function isn't supported properly on some platforms. Add a patch which completes a multibyte character with multiple non-blocking reads. We'll see how portable this hack is...
2008-10-06wreadln: don't use cursor_move_right() in insert_byte()Max Kellermann1-1/+4
After a byte has been inserted, move the cursor right by just one byte, not one character. The byte may have been the first one in a multibyte character.
2008-10-06configure.ac: added option --disable-wideMax Kellermann1-1/+1
The configure option "--disable-wide" disables wide character support. This simplifies lots of internal calculations and makes the ncmpc binary leaner.
2008-10-06include ncursesw/ncurses.h if availableMax Kellermann14-9/+36
When compiling with libncursesw, include <ncursesw/ncurses.h> instead of <ncurses.h> (if available).
2008-10-06wreadln: optimize wreadln_delete_char() with memmove()Max Kellermann1-3/+4
Let memmove() do the dirty work on overlapping buffers..
2008-10-06wreadln: moved code to wreadln_delete()Max Kellermann1-7/+16
Remove some more clutter from wreadln() by merging the duplicate character deletion code to wreadln_delete_char().
2008-10-06wreadln: return early from cursor movement functionsMax Kellermann1-11/+13
Unclutter these functions by removing one indent level.
2008-10-06wreadln: use unsigned integers and size_tMax Kellermann2-15/+16
Declare all screen position variables as "unsigned", and all buffer positions as "size_t". We don't need signed values.
2008-10-06wreadln: use memcpy() for both casesMax Kellermann1-11/+6
Use memcpy() even when the cursor is at the end. It copies only the trailing null terminator in this case. The constant "length" is declared here in preparation for the "wide character" patches.
2008-10-06wreadln: use memmove() instead of an temporary bufferMax Kellermann1-7/+2
memmove() handles overlapping buffers well, we can use it to get room for the inserted character.
2008-10-06wreadln: moved code to insert_byte()Max Kellermann1-19/+25
Remove some clutter from wreadln(), isolate some code into a function.
2008-10-06wreadln: static bufferMax Kellermann1-18/+11
Since the buffer size is already known at compile time, don't do a second malloc() for it, declare it statically in struct wreadln. This way, it is going to be allocated on the stack.
2008-10-06wreadln: added struct wreadlnMax Kellermann1-94/+111
Don't pass a dozen of parameters to all internal functions; pass a pointer to the wreadln struct instead.
2008-10-06wreadln: removed parameter "x1"Max Kellermann1-15/+11
Several internal functions calculate the width of the input field by subtracting "x0" from "x1", although the width is already being passed to them. Eliminate the parameter "x1" in all functions, and use "width" instead.
2008-10-06wreadln: convert public globals to local constantsMax Kellermann3-15/+6
Convert wrln_max_line_size and wrln_max_history_length to local constants. They have no real use outside of wreadln.c.
2008-10-06wreadln: import screen_bell() from screen_utils.hMax Kellermann1-3/+1
Don't use "extern" outside of the headers, include the proper header instead.
2008-10-06code style, indent with tabs XIIMax Kellermann2-64/+61
Follow the same code style als MPD itself.
2008-10-06removed my_wgetch(), switch to wgetch()Max Kellermann6-24/+3
There are no special cases left for my_wgetch() to handle. We can remove it and use the original wgetch() instead.
2008-10-06disable ncurses raw modeMax Kellermann3-18/+0
We're better off doing our own signal handling, instead of switching ncurses to raw mode. Anyway, it was commented out and didn't work...
2008-10-06wreadln: removed the disabled ncursesw codeMax Kellermann1-384/+0
The wide character version of wreadln() is currently a non-functional mess. Remove it for now, I will reimplement that later.
2008-10-04screen: declare time constants as GTimeMax Kellermann1-2/+2
Variables which store integer seconds should be declared as GTime. This fixes a gcc warning.