summaryrefslogtreecommitdiff
path: root/src/main.c
AgeCommit message (Collapse)AuthorFilesLines
2010-08-21Preparing for release 2010.08.212010.08.21Lars-Dominik Braun1-1/+2
2010-08-09Make something useful with misc.sync responseLars-Dominik Braun1-0/+1
Calculcate offset to time() and use that offset to avoid out of sync errors.
2010-07-31Replaced long argument list of ui callback functionsLars-Dominik Braun1-111/+105
Structure BarApp_t contains most important data now.
2010-07-30Use static const for large read-only arraysLars-Dominik Braun1-1/+1
2010-07-30Feature: Custom station sortingLars-Dominik Braun1-1/+2
Sort stations by name and/or isquickmix.
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-05-09HTTP proxy supportLars-Dominik Braun1-2/+20
control_proxy pipes xmlrpc data through the proxy, this one is for the music too.
2010-04-20Show small hint about keybinding help at startupLars-Dominik Braun1-2/+3
See bug #23
2010-04-06Use new libpiano apiLars-Dominik Braun1-21/+47
Adds error messages to libwaitress, too. Eventcmd implementation is quick&dirty, needs to be rewritten.
2010-03-16Replace player return value magicLars-Dominik Braun1-1/+1
2010-03-16Fix player race conditionLars-Dominik Braun1-0/+3
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-06Added song length and rating to eventcmd, new songfinish eventLars-Dominik Braun1-2/+4
2010-03-06wardrobe: Removed internal last.fm scrobbling libraryLars-Dominik Braun1-39/+0
2010-02-14New feature: Bookmark song/artist (keybinding 'b')Lars-Dominik Braun1-1/+1
2010-02-05Use select instead of pollJordan Lewis1-16/+22
Fixes issue #8 (poll does not work with stdin on mac os x).
2010-01-21It's 2010 now.Lars-Dominik Braun1-1/+1
2010-01-18Shortcut refactoringLars-Dominik Braun1-6/+16
2009-12-15Rename libraries' main.c filesLars-Dominik Braun1-1/+0
2009-12-15Merge branch 'fuzzing'Lars-Dominik Braun1-25/+30
Fixes NULL-pointer dereferences and invalid memory reads.
2009-12-15New history featureLars-Dominik Braun1-24/+53
Default key is 'h', playlists are no longer part of PianoHandle_t now (=> libpiano's api changed)
2009-11-28Fix another NULL pointer dereferenceLars-Dominik Braun1-24/+29
2009-11-11Print message and stop playback when hitting libao errorLars-Dominik Braun1-1/+6
Thanks to jpfuentes2@github
2009-09-08C99 conformanceLars-Dominik Braun1-0/+3
2009-08-19Disable term buffering *before* doing anything elseLars-Dominik Braun1-3/+1
Usename won't be printed immediately otherwise Thanks to cpatrick@github
2009-07-11piano: Switched to ezxmlLars-Dominik Braun1-5/+0
Removes libxml2 bloat and (hopefully) most of the buggy/ugly xml code.
2009-07-02Enable echoing on early return, tooLars-Dominik Braun1-2/+5
See commit a6c521fecd91867c6e184106f4e63445d1cb158a
2009-06-28Finally clean up curl garbageLars-Dominik Braun1-2/+0
I missed some #includes. Documentation had to be updated, too.
2009-06-15Fix negative time displayLars-Dominik Braun1-6/+14
2009-05-29Re-enable terminal echoing on exitLars-Dominik Braun1-2/+13
2009-05-03Switch to libwaitressLars-Dominik Braun1-14/+9
2009-04-13More events addedLars-Dominik Braun1-3/+7
2009-04-11Read data from fifoLars-Dominik Braun1-9/+10
You may change your current station or add shared stations via fifo now
2009-04-11Don't mix low-level read() and stdioLars-Dominik Braun1-8/+11
...as suggested by > man fgetc
2009-04-10Goodbye readlineLars-Dominik Braun1-6/+8
"It's too big and too slow." -- man readline
2009-04-07Initial eventcmd workLars-Dominik Braun1-0/+4
More useful events should be added...
2009-04-04Forgot to close fifo...Lars-Dominik Braun1-1/+4
2009-04-04Initial remote control supportLars-Dominik Braun1-8/+33
2009-03-09Use icon for questions tooLars-Dominik Braun1-2/+4
2009-03-04Ui improvementsLars-Dominik Braun1-22/+18
printf wrapper introduced, hopefully cleaned up ui
2009-03-01Even more documentationLars-Dominik Braun1-14/+25
...and small cleanups.
2009-02-16Autostart station setting addedLars-Dominik Braun1-2/+12
You may define a station that is played when starting pianobar now.
2009-02-12(Hopfully) fix FPE -- againLars-Dominik Braun1-1/+2
Commit fcb1d460d459242dc30d033305db2cb9bf313f5e did only half of the work. Commit a2aee035072a5d346c187a890539f72c6d5167a0 introduced another division by zero.
2009-02-05Time display for mp3 playbackLars-Dominik Braun1-20/+11
Time is now counted in milliseconds, not aac frames. Calculations seem to be inaccurate sometimes (about +-2 seconds).
2009-02-01mp3 playback supportLars-Dominik Braun1-2/+3
Now libfaad and/or libmad are used for playback. There's currently no remaining time displayed for mp3 playback.
2009-01-31Switch build system to cmakeLars-Dominik Braun1-1/+1
lib{piano,wardrobe} are now static libraries and not installed any more.
2009-01-30Don't print version number and build date.Lars-Dominik Braun1-1/+1
Version number will not be incremented anyway...
2009-01-27piano: mp3 supportLars-Dominik Braun1-1/+2
Breaks api
2009-01-20It's 2009 nowLars-Dominik Braun1-1/+2
Update copyright notices, add my email address, but don't change libwardrobe (I'm not maintaining it anymore)
2008-09-13Insert newline after password readline ()Lars-Dominik Braun1-0/+1
2008-09-10Revert "Don't poll *that* often"Lars-Dominik Braun1-4/+1
This reverts commit a0235218909a33adbdc6eb4eb3afff2911a5987b. Song changes don't work sometimes.