aboutsummaryrefslogtreecommitdiffstats
path: root/src/defaults.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2008-10-02moved default value macros to defaults.hMax Kellermann1-13/+13
These macros are only used by options.c and conf.c. Move them to a common internal header.
2008-09-23lyrics: added callbackMax Kellermann1-12/+3
Instead of letting our caller poll lyrics_result(), call it back as soon as we have the result.
2008-09-16lyrics: converted in-process plugins to external programsMax Kellermann1-5/+25
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
2008-09-15manage tag string allocations in a poolMax Kellermann1-0/+28
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.