summaryrefslogtreecommitdiff
path: root/libpiano
AgeCommit message (Collapse)AuthorFilesLines
2010-01-24It's 2010 now, part twoLars-Dominik Braun1-1/+1
2010-01-22Protocol version bump (v26)Lars-Dominik Braun1-1/+1
2010-01-21It's 2010 now.Lars-Dominik Braun11-11/+11
2009-12-15Rename libraries' main.c filesLars-Dominik Braun6-5/+5
2009-12-15Merge branch 'fuzzing'Lars-Dominik Braun2-3/+8
Fixes NULL-pointer dereferences and invalid memory reads.
2009-12-15New history featureLars-Dominik Braun4-14/+16
Default key is 'h', playlists are no longer part of PianoHandle_t now (=> libpiano's api changed)
2009-11-28piano: Don't decrypt too short urlsLars-Dominik Braun1-1/+4
Avoids invalid memory reads/writes
2009-11-28piano: Fix NULL pointer dereferenceLars-Dominik Braun1-2/+4
2009-10-28Protocol version bump (v25)Lars-Dominik Braun1-1/+1
No known api changes yet.
2009-10-03piano: Fix getFragment requestLars-Dominik Braun1-2/+4
aac playback didn't work, but I'm sure it did some time ago. Looks like pandora changed the api without bumping the version number -- ugly :/ Thanks to the arch linux guys (http://aur.archlinux.org/packages.php?ID=23233)
2009-09-08C99 conformanceLars-Dominik Braun2-0/+4
2009-08-19Added some cmake code to the project CMakeLists.txt's to include the proper ↵Patrick Reynolds1-0/+1
binary directories. Without this code, out-of-source builds do not work.
2009-08-18piano: New error code OUT_OF_SYNCLars-Dominik Braun3-1/+8
Error code indicates that the system's time is "out of sync". Maybe the "sync" response timestamp should be checked *before* errors like this happen... Thanks to Jason for pointing this out.
2009-08-14waitress: Use dynamic allocated buffer for FetchBufLars-Dominik Braun3-54/+66
2009-08-07New feature: Seed suggestionsLars-Dominik Braun4-0/+57
2009-08-07piano: Check (m|c|re)alloc return valueLars-Dominik Braun5-59/+147
2009-08-04Use "static" keyword for functionsLars-Dominik Braun2-16/+17
2009-08-04libpiano: Fix valgrind warningLars-Dominik Braun1-6/+8
2009-08-03piano: Always encrypt HTTP POST dataLars-Dominik Braun2-77/+32
2009-07-11piano: Switched to ezxmlLars-Dominik Braun2-295/+214
Removes libxml2 bloat and (hopefully) most of the buggy/ugly xml code.
2009-07-09piano: Quick note about sync commandLars-Dominik Braun1-1/+2
2009-07-08Initial pandora one support (higher mp3 bitrates)Lars-Dominik Braun3-3/+10
Time display should be fixed. I need feedback!
2009-06-28Finally clean up curl garbageLars-Dominik Braun2-18/+12
I missed some #includes. Documentation had to be updated, too.
2009-06-28piano: Fix includesLars-Dominik Braun1-1/+1
2009-06-27piano: Use uint32_t instead of unsigned longLars-Dominik Braun2-4/+8
2009-06-27piano: Simplify crypt.cLars-Dominik Braun1-191/+120
...by merging hex en-/decode and blowfish decryption.
2009-05-28piano: Fix BytesToIntsLars-Dominik Braun1-1/+1
This commit fixes strange "not valid utf-8" errors sent by pandora. We're *not* generating invalid utf-8 somewhere. Implicit type casting seems to mess things up. See previous commit for a similar problem...
2009-05-25waitress: Downgrade to HTTP/1.0Lars-Dominik Braun1-0/+2
I don't need you, Transfer-Encoding: chunked. Nobody wants you here, Transfer-Encoding: chunked. Get lost. Thanks. Oh, btw: Fixes "Unknown." error in PianoGetGenreStations ()
2009-05-20piano: Protocol version bumpLars-Dominik Braun1-1/+1
v24 now; blowfish key stays the same; no imcompatible changes found yet
2009-05-03Delete empty INSTALL filesLars-Dominik Braun1-0/+0
2009-05-03piano: Switch to libwaitressLars-Dominik Braun5-209/+139
2009-04-08Protocol version bumpLars-Dominik Braun1-1/+1
Blowfish key stays the same (thanks again, pandora), no incompatible protocol changes found
2009-03-04piano: Protocol version bumpLars-Dominik Braun1-3/+2
Unknown argument in getFragment removed. Blowfish key is the same. Thank you pandora :)
2009-03-01Even more documentationLars-Dominik Braun1-2/+2
...and small cleanups.
2009-02-01Request c compiler, but not c++ or javaLars-Dominik Braun1-1/+1
2009-02-01mp3 playback supportLars-Dominik Braun1-0/+2
Now libfaad and/or libmad are used for playback. There's currently no remaining time displayed for mp3 playback.
2009-01-31Whoops, forgot to add new files to last commit...Lars-Dominik Braun3-0/+16
2009-01-31Switch build system to cmakeLars-Dominik Braun7-47/+3
lib{piano,wardrobe} are now static libraries and not installed any more.
2009-01-29Clean up useless filesLars-Dominik Braun1-1/+0
2009-01-27piano: New error STATION_NONEXISTENTLars-Dominik Braun3-1/+11
2009-01-27piano: Header cleanupLars-Dominik Braun1-105/+44
2009-01-27piano: mp3 supportLars-Dominik Braun3-7/+43
Breaks api
2009-01-20It's 2009 nowLars-Dominik Braun12-12/+24
Update copyright notices, add my email address, but don't change libwardrobe (I'm not maintaining it anymore)
2009-01-18piano: Safe routeid generationLars-Dominik Braun1-5/+4
Use modulo instead of >> (shift right) to get seven digits.
2009-01-13piano: Don't segfault with empty quickmix listLars-Dominik Braun1-9/+11
2009-01-10piano: Documentation...Lars-Dominik Braun3-2/+8
2009-01-06piano: Detect pandora's ip restriction error messagesLars-Dominik Braun3-1/+14
2008-12-13piano: New error STATION_CODE_INVALIDLars-Dominik Braun3-2/+9
2008-12-13Drop autoconf version requirementsLars-Dominik Braun1-1/+0
I don't know which version is actually required...
2008-10-25Use own byteswap implementationLars-Dominik Braun1-2/+4
pianobar can be compiled on NetBSD (and maybe others) now.