summaryrefslogtreecommitdiff
path: root/src/settings.c
AgeCommit message (Collapse)AuthorFilesLines
2011-08-29Customizeable list format (songs)Lars-Dominik Braun1-0/+5
Fixes #151
2011-08-23Configureable fifo pathLars-Dominik Braun1-0/+6
See #149.
2011-08-19Don’t remove whitespace from config valuesLars-Dominik Braun1-2/+3
Closes #148
2011-07-27Configureable %@ format stringLars-Dominik Braun1-0/+5
2011-07-14Defined _DARWIN_C_SOURCELars-Dominik Braun1-0/+1
Required to expose non-standard functions. Closes #138
2011-07-11Disable feature test macros on FreeBSDEitan Adler1-0/+2
Closes #136
2011-05-18Configureable format stringsLars-Dominik Braun1-2/+63
Closes #88
2011-02-26Rewrite input processingLars-Dominik Braun1-16/+9
2011-02-02Allow keyboard shortcuts to be disabledLars-Dominik Braun1-2/+6
Something like act_foobar = disabled disables the command foobar completely now. Useful if you don't use software volume control. See issue #78.
2010-12-27Change my email addressLars-Dominik Braun1-1/+1
Again. And hopefully the last time.
2010-12-27Use PATH_MAX from limits.hLars-Dominik Braun1-2/+3
2010-12-27Software volume controlLars-Dominik Braun1-2/+5
2010-12-04Show default icons if config file is missing.Lars-Dominik Braun1-8/+4
Bug introduced by 2b31c97de6fa541719cd26f9a61053cfc0e71203. "(null)" was shown instead of "<3" and "</3".
2010-11-21Replaced strcmp with streq macroLars-Dominik Braun1-16/+18
2010-11-21Show custom rating icon in upcoming/history song listLars-Dominik Braun1-0/+14
Closes issue #54
2010-07-30Use static const for large read-only arraysLars-Dominik Braun1-3/+3
2010-07-30Feature: Custom station sortingLars-Dominik Braun1-1/+17
Sort stations by name and/or isquickmix.
2010-05-09HTTP proxy supportLars-Dominik Braun1-0/+11
control_proxy pipes xmlrpc data through the proxy, this one is for the music too.
2010-03-06wardrobe: Removed internal last.fm scrobbling libraryLars-Dominik Braun1-20/+0
2010-02-14New feature: Bookmark song/artist (keybinding 'b')Lars-Dominik Braun1-2/+4
2010-01-21It's 2010 now.Lars-Dominik Braun1-1/+1
2010-01-18Shortcut refactoringLars-Dominik Braun1-110/+15
2010-01-11Don't use feof in while loopLars-Dominik Braun1-4/+5
2009-12-15New history featureLars-Dominik Braun1-0/+6
Default key is 'h', playlists are no longer part of PianoHandle_t now (=> libpiano's api changed)
2009-09-08C99 conformanceLars-Dominik Braun1-0/+2
2009-08-04Use "static" keyword for functionsLars-Dominik Braun1-1/+1
2009-07-08Initial pandora one support (higher mp3 bitrates)Lars-Dominik Braun1-0/+2
Time display should be fixed. I need feedback!
2009-05-03Switch to libwaitressLars-Dominik Braun1-19/+0
2009-04-07Initial eventcmd workLars-Dominik Braun1-0/+3
More useful events should be added...
2009-03-04Ui improvementsLars-Dominik Braun1-1/+3
printf wrapper introduced, hopefully cleaned up ui
2009-03-01Even more documentationLars-Dominik Braun1-0/+11
...and small cleanups.
2009-02-16Autostart station setting addedLars-Dominik Braun1-0/+3
You may define a station that is played when starting pianobar now.
2009-02-12Shared stations can be addedLars-Dominik Braun1-0/+2
2009-02-01mp3 playback supportLars-Dominik Braun1-0/+15
Now libfaad and/or libmad are used for playback. There's currently no remaining time displayed for mp3 playback.
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)
2009-01-10Fix keyboard shortcuts if config file is missingLars-Dominik Braun1-5/+10
2008-08-19Fix missing initializing in BarSettingsDestroy which caused segfaultLars-Dominik Braun1-3/+7
Thereby avoid freeing a NULL pointer
2008-08-19Allow key shortcut configuration via config fileLars-Dominik Braun1-0/+100
Some code restructuring was made, too: - Move UI functions to ui.c and ui_act.c - Change default keys for loving and banning to + and -
2008-07-23Be correct, use "const"Lars-Dominik Braun1-1/+2
2008-07-07SSL control proxy issue workaroundLars-Dominik Braun1-0/+6
Some proxies refuse SSL connections. Make them usable by adding an option which disables the usage of SSL for the login.
2008-06-23client: Let user decide when song is submitted to last.fmLars-Dominik Braun1-0/+10
2008-06-23client: Use function prefix "Bar"Lars-Dominik Braun1-3/+3
2008-06-22client: last.fm scrobbling implementedLars-Dominik Braun1-0/+10
Very very ugly... We should spawn another thread. But for now it's working. (Though the played times are wrong for me, could be a wardrobe issue...)
2008-06-17Use config.hLars-Dominik Braun1-0/+1
2008-06-17Removed @author and @added as they are tracked by gitLars-Dominik Braun1-4/+0
2008-06-16client: Proxy type config option addedLars-Dominik Braun1-0/+13
2008-06-15client: Removed unneeded debugging printf's; some more documentation for ↵Lars-Dominik Braun1-0/+6
functions
2008-06-15client: Config file added, not yet documentedLars-Dominik Braun1-0/+95
Some restructuring was necessary too.