summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-11-06Prepare for release 2010.11.062010.11.06Lars-Dominik Braun2-1/+8
2010-11-06Protocol version bump (v29)Lars-Dominik Braun6-539/+575
- New crypto keys (thanks to ZigZagJoe for extracting them) - addTiredSong api changed - song identity not needed any more => removed from libpiano
2010-10-29piano: Removed PianoFreeLars-Dominik Braun4-55/+39
Ordinary "free" call works fine, no need for memset overhead.
2010-10-28piano: Remove unused byteswap32 macroLars-Dominik Braun1-5/+0
2010-10-28Fix memleaksLars-Dominik Braun1-2/+2
PianoDestroyRequests overwrites the content of responseData. We have to free it before that.
2010-10-28piano: Clarify comment of PianoDestroyRequestLars-Dominik Braun1-1/+2
2010-10-28piano: Destroy existing user info on reauthLars-Dominik Braun1-4/+14
2010-10-28Reauthenticate automatically when requiredLars-Dominik Braun1-2/+28
2010-10-25Use BarApp_t in BarUiPianoCallLars-Dominik Braun4-45/+41
Required for automatic reauthentication
2010-10-18Initialize main fd arrayLars-Dominik Braun1-2/+2
Cherry-picked from Josh Elsasser's unixsocket patch.
2010-10-08Use user-specified include directoriesLars-Dominik Braun1-0/+1
2010-10-08Makefile uses GNU make extension => gmakeLars-Dominik Braun1-6/+6
2010-10-07Going back to -devLars-Dominik Braun1-1/+1
2010-10-07Prepare for release 2010.10.072010.10.07Lars-Dominik Braun2-1/+5
2010-10-07Protocol version bump (v28)Lars-Dominik Braun3-531/+534
New crypto keys and a small change in setQuickmix rpc call.
2010-08-21Going back to -devLars-Dominik Braun1-1/+1
2010-08-21Preparing for release 2010.08.212010.08.21Lars-Dominik Braun4-2/+10
2010-08-09Support for big endian machinesLars-Dominik Braun2-8/+12
A few byteswaps replaced by conditional byteswaps. Thanks to Andrew Peng for providing access to a powerpc machine.
2010-08-09Make something useful with misc.sync responseLars-Dominik Braun3-28/+89
Calculcate offset to time() and use that offset to avoid out of sync errors.
2010-08-04socksify/tsocks supportLars-Dominik Braun1-3/+20
2010-08-03libpiano: Fix wrong GET argument "method"Lars-Dominik Braun1-4/+4
2010-08-01Add sort config option to manpage and example config fileLars-Dominik Braun2-1/+8
2010-08-01Fix addFeedbackLars-Dominik Braun4-32/+37
Pandora seems to have dropped focusTraitId and matchingSeed. New arguments to addFeedback are testStrategy and songType -- no idea what they are doing right now. Beware: Incompatible libpiano abi change!
2010-07-31Fix genre station NULL pointer dereferenceLars-Dominik Braun4-24/+45
Obviously pandora changed the genre station api. Attention: Incompatible libpiano abi change.
2010-07-31Common piano/eventcmd calls replaced by macrosLars-Dominik Braun1-56/+42
Less error-prone copy&paste :)
2010-07-31Replaced long argument list of ui callback functionsLars-Dominik Braun6-293/+332
Structure BarApp_t contains most important data now.
2010-07-30Use static const for large read-only arraysLars-Dominik Braun3-5/+5
2010-07-30Feature: Custom station sortingLars-Dominik Braun6-18/+103
Sort stations by name and/or isquickmix.
2010-07-30Useless comparison removedLars-Dominik Braun1-4/+2
Unsigned int is always >= 0.
2010-07-30Control proxy overrides global proxyLars-Dominik Braun1-5/+5
Now the control proxy setting overrides $http_proxy environment variable and proxy config setting.
2010-07-11Fixing a warning in ezxml.Patrick Reynolds1-1/+3
Assignment as used in the prefix ++ results in undefined behavior when the variable is used in a function call later in the while loop condition. Most of the time this works, but the behavior is technically undefined.
2010-06-19waitress: DocumentationLars-Dominik Braun1-0/+2
2010-06-14Forgot to add config.h's to treeLars-Dominik Braun7-5/+10
Closes bug #30
2010-06-11Switching build system againLars-Dominik Braun15-272/+150
Now it's plain make.
2010-05-13piano: Fix compiler warnings on OpenBSDLars-Dominik Braun1-49/+54
time_t can be *any* integer (signed/unsigned) or (even worse) float. Use explicit cast to get an unsigned long. Thanks to dcoppa@openbsd again.
2010-05-09HTTP proxy supportLars-Dominik Braun4-2/+37
control_proxy pipes xmlrpc data through the proxy, this one is for the music too.
2010-05-08piano: New error QUICKMIX_NOT_PLAYABLELars-Dominik Braun3-0/+7
Trigger this error: Delete all stations (you can't delete the quickmix) and select your quickmix station.
2010-04-20Don't stop playback when showing station listLars-Dominik Braun1-5/+7
Original patch by jordanlewis@github.
2010-04-20Show small hint about keybinding help at startupLars-Dominik Braun1-2/+3
See bug #23
2010-04-19piano: API version bump (v27)Lars-Dominik Braun1-1/+1
No incompatible changes found yet.
2010-04-17New eventcmd example added (ruby)Lars-Dominik Braun1-0/+50
Thanks to Matthew (mmb@github) for contributing the script.
2010-04-16Fix coding styleLars-Dominik Braun1-1/+1
If NULL is 0L instead of (void *) 0 then this explicit cast is needed for va_arg functions. Thanks to dcoppa@openbsd.
2010-04-10Added hint about libao configuration to manpageLars-Dominik Braun1-0/+9
2010-04-08Removed debugging stuff from eventcmdLars-Dominik Braun1-2/+0
Oops :)
2010-04-07libao 1.0.0 compatibilityLars-Dominik Braun1-0/+2
Fixes bug #16. ao_sample_format structure has been updated, matrix must be NULL.
2010-04-06Update example eventcmd scriptLars-Dominik Braun1-1/+5
2010-04-06Use new libpiano apiLars-Dominik Braun7-120/+385
Adds error messages to libwaitress, too. Eventcmd implementation is quick&dirty, needs to be rewritten.
2010-04-05piano: New request/response apiLars-Dominik Braun5-799/+787
Removed HTTP stuff from libpiano. The user is now responsible for POSTing data to the server.
2010-03-16Use SHRT_MAX for short intLars-Dominik Braun1-4/+4
2010-03-16Replace player return value magicLars-Dominik Braun3-6/+6