Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-07-30 | Use static const for large read-only arrays | Lars-Dominik Braun | 3 | -5/+5 | |
2010-07-30 | Feature: Custom station sorting | Lars-Dominik Braun | 6 | -18/+103 | |
Sort stations by name and/or isquickmix. | |||||
2010-07-30 | Useless comparison removed | Lars-Dominik Braun | 1 | -4/+2 | |
Unsigned int is always >= 0. | |||||
2010-07-30 | Control proxy overrides global proxy | Lars-Dominik Braun | 1 | -5/+5 | |
Now the control proxy setting overrides $http_proxy environment variable and proxy config setting. | |||||
2010-07-11 | Fixing a warning in ezxml. | Patrick Reynolds | 1 | -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-19 | waitress: Documentation | Lars-Dominik Braun | 1 | -0/+2 | |
2010-06-14 | Forgot to add config.h's to tree | Lars-Dominik Braun | 7 | -5/+10 | |
Closes bug #30 | |||||
2010-06-11 | Switching build system again | Lars-Dominik Braun | 15 | -272/+150 | |
Now it's plain make. | |||||
2010-05-13 | piano: Fix compiler warnings on OpenBSD | Lars-Dominik Braun | 1 | -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-09 | HTTP proxy support | Lars-Dominik Braun | 4 | -2/+37 | |
control_proxy pipes xmlrpc data through the proxy, this one is for the music too. | |||||
2010-05-08 | piano: New error QUICKMIX_NOT_PLAYABLE | Lars-Dominik Braun | 3 | -0/+7 | |
Trigger this error: Delete all stations (you can't delete the quickmix) and select your quickmix station. | |||||
2010-04-20 | Don't stop playback when showing station list | Lars-Dominik Braun | 1 | -5/+7 | |
Original patch by jordanlewis@github. | |||||
2010-04-20 | Show small hint about keybinding help at startup | Lars-Dominik Braun | 1 | -2/+3 | |
See bug #23 | |||||
2010-04-19 | piano: API version bump (v27) | Lars-Dominik Braun | 1 | -1/+1 | |
No incompatible changes found yet. | |||||
2010-04-17 | New eventcmd example added (ruby) | Lars-Dominik Braun | 1 | -0/+50 | |
Thanks to Matthew (mmb@github) for contributing the script. | |||||
2010-04-16 | Fix coding style | Lars-Dominik Braun | 1 | -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-10 | Added hint about libao configuration to manpage | Lars-Dominik Braun | 1 | -0/+9 | |
2010-04-08 | Removed debugging stuff from eventcmd | Lars-Dominik Braun | 1 | -2/+0 | |
Oops :) | |||||
2010-04-07 | libao 1.0.0 compatibility | Lars-Dominik Braun | 1 | -0/+2 | |
Fixes bug #16. ao_sample_format structure has been updated, matrix must be NULL. | |||||
2010-04-06 | Update example eventcmd script | Lars-Dominik Braun | 1 | -1/+5 | |
2010-04-06 | Use new libpiano api | Lars-Dominik Braun | 7 | -120/+385 | |
Adds error messages to libwaitress, too. Eventcmd implementation is quick&dirty, needs to be rewritten. | |||||
2010-04-05 | piano: New request/response api | Lars-Dominik Braun | 5 | -799/+787 | |
Removed HTTP stuff from libpiano. The user is now responsible for POSTing data to the server. | |||||
2010-03-16 | Use SHRT_MAX for short int | Lars-Dominik Braun | 1 | -4/+4 | |
2010-03-16 | Replace player return value magic | Lars-Dominik Braun | 3 | -6/+6 | |
2010-03-16 | waitress: Replaced callback magic numbers | Lars-Dominik Braun | 3 | -20/+25 | |
2010-03-16 | Fix player race condition | Lars-Dominik Braun | 2 | -4/+14 | |
Pressing any key before the player thread set mode to PLAYER_INITIALIZED lead to a song skip and spawning of another player thread. The two player threads were operating on the same variables/memory area, resulting in a crash. Adding a new player state (PLAYER_STARTING) and setting it _before_ invoking pthread_start should resolve this, 'cause the "if PLAYER_FREED-branch" is not taken any more, ergo no second player thread is started. | |||||
2010-03-12 | Removed PACKAGE from ui strings | Lars-Dominik Braun | 1 | -5/+5 | |
2010-03-06 | Documentation updated | Lars-Dominik Braun | 2 | -9/+10 | |
2010-03-06 | Example eventcmd script updated | Lars-Dominik Braun | 1 | -7/+21 | |
2010-03-06 | Added song length and rating to eventcmd, new songfinish event | Lars-Dominik Braun | 4 | -23/+45 | |
2010-03-06 | piano: Make enum values more predictable | Lars-Dominik Braun | 1 | -11/+28 | |
2010-03-06 | wardrobe: Removed internal last.fm scrobbling library | Lars-Dominik Braun | 17 | -793/+1 | |
2010-03-06 | Use qsort instead of my own ugly insertion sort | Lars-Dominik Braun | 1 | -56/+42 | |
2010-03-05 | waitress: Abort reading if server closes connection | Lars-Dominik Braun | 2 | -2/+7 | |
Caused infinite loops under certain circumstances. | |||||
2010-03-01 | manpage: Add section eventcmd | Lars-Dominik Braun | 1 | -2/+20 | |
2010-02-22 | wardrobe: Replaced last.fm client identifier | Lars-Dominik Braun | 1 | -1/+1 | |
2010-02-15 | Add help text for bookmark keybinding | Lars-Dominik Braun | 1 | -0/+1 | |
Fixes bug #13 (bad memory access) introduced by commit 7eba7e939b87b6bebc16ddca94f799e46b2b0aae | |||||
2010-02-14 | New feature: Bookmark song/artist (keybinding 'b') | Lars-Dominik Braun | 9 | -4/+100 | |
2010-02-05 | Use select instead of poll | Jordan Lewis | 1 | -16/+22 | |
Fixes issue #8 (poll does not work with stdin on mac os x). | |||||
2010-02-01 | piano: New error PLAYLIST_END | Lars-Dominik Braun | 3 | -1/+7 | |
See bug #10 | |||||
2010-01-30 | Fix libao error detection | Lars-Dominik Braun | 2 | -1/+5 | |
Under certain circumstances (fast station switching e.g.) a new playlist was not fetched, because the player thread returned 0x1 (== libao error) and the main thread NULLed curStation. | |||||
2010-01-29 | waitress: Increase tcp receive buffer | Lars-Dominik Braun | 1 | -0/+3 | |
2010-01-28 | piano: Fixed outdated comments | Lars-Dominik Braun | 1 | -9/+0 | |
2010-01-24 | It's 2010 now, part two | Lars-Dominik Braun | 5 | -5/+5 | |
2010-01-22 | Protocol version bump (v26) | Lars-Dominik Braun | 1 | -1/+1 | |
2010-01-21 | It's 2010 now. | Lars-Dominik Braun | 28 | -28/+30 | |
2010-01-19 | Remove abort keybinding | Lars-Dominik Braun | 1 | -3/+2 | |
You can always hit enter to abort. | |||||
2010-01-19 | Use user-defined shortcuts (history menu) | Lars-Dominik Braun | 1 | -25/+27 | |
2010-01-18 | Shortcut refactoring | Lars-Dominik Braun | 4 | -141/+95 | |
2010-01-11 | Don't use feof in while loop | Lars-Dominik Braun | 1 | -4/+5 | |