aboutsummaryrefslogtreecommitdiffstats
path: root/lyrics (follow)
Commit message (Collapse)AuthorAgeFilesLines
* added missing copyright headersMax Kellermann2008-12-063-6/+54
|
* lyrics: replaced "hd.py" with "hd.sh"Max Kellermann2008-09-252-22/+8
| | | | Replace the "hd" plugin with a trivial shell script.
* lyrics: print text in UTF-8Max Kellermann2008-09-231-1/+1
| | | | | | | | Python defaults to sending ASCII characters, and aborts if there are non-ASCII characters in the string. Unfortunately, due to "C.UTF-8" being not defined, we cannot reliably make Python use UTF-8, without further locale settings. Thus, work around this mess by manually encoding the result to UTF-8 in the script.
* lyrics: converted in-process plugins to external programsMax Kellermann2008-09-163-0/+106
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