aboutsummaryrefslogtreecommitdiffstats
path: root/src/Makefile.am (follow)
Commit message (Collapse)AuthorAgeFilesLines
* screen_text: new library for displaying large textsMax Kellermann2008-12-121-0/+5
| | | | Took a lot of code from screen_lyrics.
* plugin: new plugin libraryMax Kellermann2008-12-121-0/+5
| | | | The plugin library is based on code from lyrics.c.
* match: case sensitive search with --enable-miniMax Kellermann2008-12-101-1/+1
| | | | | Drop support for the expensive case insensitive search in ncmpc-mini mode.
* hscroll: don't compile source in ncmpc-mini modeMax Kellermann2008-12-101-2/+3
| | | | This source is not required with --enable-mini.
* support: renamed source to hscroll.cMax Kellermann2008-12-101-2/+2
| | | | | There is only strscroll() left in support.c. Give the source a better name.
* list_window: moved string matching to match.hMax Kellermann2008-12-101-0/+2
| | | | | | Provide the new function match_line() which searches a string for a needle (ignoring case). This wraps the non-standard function strcasestr().
* screen_outputs: new screen to control MPD's output devicesMikael Svantesson2008-12-051-0/+4
| | | | | The "outputs" screen allows the user to enable or disable MPD's audio output devices.
* removed gcc.hMax Kellermann2008-11-241-2/+1
| | | | gcc.h has been replaced with GLib's G_GNUC_ macros.
* screen_song: new screen which views song informationMax Kellermann2008-11-181-0/+4
| | | | | This new screen views all information available on a song: its location, file name, and tags.
* Makefile.am: added screen_play.h to $(ncmpc_headers)Max Kellermann2008-11-171-0/+1
| | | | screen_play.h was missing in the tarball.
* Makefile.am: added custom rule with -fwhole-programMax Kellermann2008-11-071-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.
* configure.ac, Makefile.am: removed subversion keywordsMax Kellermann2008-11-071-4/+0
| | | | Removed $Id$.
* disable more features with --enable-miniMax Kellermann2008-11-071-1/+5
| | | | | | | | | | | | | | 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
* configure.ac: added --disable-help-screenMax Kellermann2008-11-071-1/+4
|
* configure.ac: added LIRC configure switchMax Kellermann2008-11-071-1/+3
| | | | Detect liblircclient with pkg-config.
* native LIRC support for ncmpcThomas Jansen2008-11-071-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | 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(...).
* moved code to charset.cMax Kellermann2008-10-021-0/+2
| | | | | Move everything which deals with UTF-8 strings and character set conversion to charset.c, header charset.h.
* moved i18n macros to i18n.hMax Kellermann2008-10-021-0/+1
| | | | | Don't make everybody include ncmpc.h just to have generic features. Move generic i18n macros to a separate header.
* moved default value macros to defaults.hMax Kellermann2008-10-021-0/+1
| | | | | These macros are only used by options.c and conf.c. Move them to a common internal header.
* Makefile: added "sparse-check" targetMax Kellermann2008-09-251-0/+15
|
* screen: moved code to screen_list.cMax Kellermann2008-09-251-0/+2
| | | | | Move the hard-coded screen list and everything which works with this array to screen_list.c.
* screen: don't compile disabled sourcesMax Kellermann2008-09-251-5/+16
| | | | | Instead of evaluating macros from config.h in the disabled source, don't start the compiler on it at all.
* screen: moved code to ncu.cMax Kellermann2008-09-221-0/+2
| | | | | Moved basic libncurses initialization to ncu.c and ncu.h. Keep generic code out of screen.c.
* mpdclient: moved code to filelist.cMax Kellermann2008-09-191-0/+2
| | | | | | | | Move everything which is solely filelist related to filelist.c and filelist.h. Fix the indentation of that file, and provide the struct name "filelist". Don't clear data in mpdclient_filelist_free() before calling g_free(). Constify the "song" parameter to mpdclient_filelist_find_song().
* removed the clock screenMax Kellermann2008-09-181-1/+0
| | | | Why should an audio player display a large clock?
* screen_browser: moved code to screen_browser.cMax Kellermann2008-09-181-0/+1
| | | | Isolate the generic browser code from the directory browser.
* renamed screen_browse.h to screen_browser.hMax Kellermann2008-09-181-1/+1
|
* libmpdclient: added resolver libraryMax Kellermann2008-09-181-0/+2
| | | | | | | The resolver library provides unified access to all resolvers (getaddrinfo(), gethostbyname(), Unix domain sockets). Like getaddrinfo(), it can return more than one address for a host name. This fixes bug 1517 (http://www.musicpd.org/mantis/view.php?id=1517).
* lyrics: converted in-process plugins to external programsMax Kellermann2008-09-161-17/+3
| | | | | | | | | | | | | In-process plugins are very problematic. It is much easier and flexible to move the lyrics plugins to external programs, with a trivial protocol. This is work in progress, among the things missing: - protocol specification, including exit codes - plugin installation - plugin search directory - run-time configuration (currently hard coded) - automatic polling (using glib's main loop?) - better and more robust error handling
* mpdclient: moved code to playlist.cMax Kellermann2008-09-161-0/+2
| | | | | | | | | | Move everything which manipulates the mpdclient_playlist struct to playlist.c. Many of the functions get a mpdclient pointer instead of a playlist; this will be changed later. The functions mpdclient_playlist_update() and mpdclient_playlist_update_changes() stay in mpdclient.c for now, since they are tightly connected to the client code.
* libmpdclient: moved code to song.cMax Kellermann2008-09-161-0/+2
| | | | | Move everything which manipulates the mpd_Song struct to song.c. Thousands of lines of too much for libmpdclient.c!
* manage tag string allocations in a poolMax Kellermann2008-09-151-1/+3
| | | | | | There are many duplicated strings in the tag database, e.g. many songs having the same artist. Don't allocate such strings twice, manage all strings in a pool.
* imported gcc.h from mpdMax Kellermann2008-09-151-1/+2
| | | | gcc.h contains a useful set of macros for setting attributes.
* splash: removed the useless splash screenMax Kellermann2008-09-151-2/+0
| | | | | The code looks strange and spews lots of warnings. Since it does nothing useful, and wastes the user's precious time, simply remove it.
* added a plugin system for lyrics sourcesAndreas Obergrusberger2007-01-031-7/+26
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@5217 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* due to bensonk's demand i added a splash screen.Andreas Obergrusberger2006-09-071-1/+3
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4741 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* the updated sourcesAndreas Obergrusberger2006-08-041-23/+55
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/branches/tradiaz@4543 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added an experimental artist (browser) screenKalle Wallin2005-06-061-1/+2
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@3322 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added a search screenKalle Wallin2004-11-151-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@2668 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added utils.c, utils.h to the projectKalle Wallin2004-06-181-2/+2
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1555 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Major cleanup of the mpd client code (mpc->mpdclient)Kalle Wallin2004-06-141-6/+6
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1481 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Disable nls support if glib is pre 2.4 (OSX)Kalle Wallin2004-06-071-1/+1
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1379 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added an optional clock screen :)Kalle Wallin2004-06-061-3/+3
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1360 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added wreadln.c, wreadln.h a simple line editorKalle Wallin2004-06-061-2/+3
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1351 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Added initial i18n supportKalle Wallin2004-06-051-1/+6
| | | | git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1346 09075e82-0dd4-0310-85a5-a0d7c8717e4f
* Changed directory layout (for future use of gettext)Kalle Wallin2004-06-051-0/+20
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1342 09075e82-0dd4-0310-85a5-a0d7c8717e4f