summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-05-03Merge tag '2019.05.03' into developdevelopMichał Cichoń1-1/+1
Release 2019.05.03 Add support for hotkeys. #20 Hotkeys can be assigned to action in configuration file ex: hk_<action_name> = g + shift + alt + ctrl
2019-05-03Merge branch 'release/2019.05.03'2019.05.03Michał Cichoń7-12/+246
Add support for hotkeys. #20 Hotkeys can be assigned to action in configuration file ex: hk_<action_name> = g + shift + alt + ctrl
2019-05-03Release 2019.05.03Michał Cichoń1-1/+1
2019-05-03Add support for hotkeys. #20Michał Cichoń6-11/+245
Hotkeys can be assigned to action in configuration file ex: hk_<action_name> = g + shift + alt + ctrl
2018-10-30Back to -dev.Michał Cichoń1-1/+1
2018-10-30Merge tag '2018.10.30' into developMichał Cichoń1-1/+1
Release 2018.10.30 - Reintegrate upstream changes Upstream improvements: Release 2018.06.22 - Happy 10th birthday pianobar! - Add network timeouts and retries - Fix cross-thread memory access - Misc UI and documentation improvements Release 2017.08.30 - Support binding to specific network interface, see config option bind_to - New config option gain_mul softens effect of replay gain - Replaced deprecated ffmpeg and json-c functions, bumps ffmpeg/libav version requirement - Fix use-after-free - Minor improvements to code and documentation
2018-10-30Merge branch 'release/2018.10.30'HEAD2018.10.30masterMichał Cichoń20-62/+212
2018-10-30Release 2018.10.30Michał Cichoń1-1/+1
2018-10-30Release 2018.06.22Lars-Dominik Braun2-1/+36
HAPPY 10TH BIRTHDAY PIANOBAR! It’s first public release was created on 2008-06-05. So I’m slightly late to the party. Sorry about that. Also, I never thought a piece of software *I* wrote would last that long.
2018-10-30Increase max_retries default valueLars-Dominik Braun1-1/+2
Back to default value before ff4f15214100d209f39e4ed85f47e572c8fe9289. It is used by the player as well and since 403’s are considered an “error” it must be larger than the number of files per playlist (4). See issue #672.
2018-10-30Improve QuickMix selection error messageLars-Dominik Braun1-3/+3
See #668.
2018-10-30Add GitHub issue templateLars-Dominik Braun1-0/+19
2018-10-30Add network timeouts and retriesLars-Dominik Braun7-21/+29
All network operations can time out now. API requests are retried up to three times (default). Replaces setting max_player_errors with max_retries, which is used for player and API. Adds timeout setting. Partially reverts 436a1d4012553a2f33d0e3a5180b3b5ae0378bdd and fixes (at least) issue #657. Thanks to @exarkun for testing.
2018-10-30contrib: Remove wrong comment about 192k audioLars-Dominik Braun1-2/+0
Closes #634
2018-10-30contrib: Add usage to multi.shLars-Dominik Braun1-2/+12
Closes #648
2018-10-30Corrected markdown linkDanny Lloyd1-2/+1
2018-10-30Fix logic for marking station (deleted)Lars-Dominik Braun1-8/+7
For songs with no station associated (NULL) “(deleted)” was shown unconditionally. Hide it. Fixes commit 4dfca5b56b441faf4938b6c8e97585f68e468039.
2018-10-30piano: Fetch extended attribs for station infoLars-Dominik Braun2-0/+8
We can show the song length in the feedback list now.
2018-10-30Show station in song listsLars-Dominik Braun6-17/+47
Iff song’s station is not the current station. This is only the case for the song history right now. Closes #638
2018-10-30Add tired rating to songLars-Dominik Braun8-13/+46
Now we can show a tired icon in the history. Closes #637.
2018-10-30Add (optional) song duration to song list format stringLars-Dominik Braun2-4/+14
Closes #636.
2017-05-18Back to -dev.Michał Cichoń1-1/+1
2017-05-18Merge tag '2017.05.18' into developMichał Cichoń8-13/+218
2017.05.18 * Synchronize with upstream * Fixed: Handle escaped authority url components. pianobar-windows-binaries/#3
2017-05-18Merge branch 'release/2017.05.18'2017.05.18Michał Cichoń34-434/+790
2017-05-18Bump version to 2017.05.18Michał Cichoń1-1/+1
2017-05-18Update README.mdMichał Cichoń1-12/+14
2017-05-18Add AppVeyor configuration.Michał Cichoń1-0/+79
2017-05-18Add screenshot.Michał Cichoń1-0/+0
2017-05-18Add release content.Michał Cichoń3-0/+96
2017-05-18Handle escaped authority url components. pianobar-windows-binaries/#3Michał Cichoń1-0/+28
Authority username and password now can be escaped to handle special characters.
2017-05-17eventcmd.sh: Guard against spaces in pathRichard Hartmann1-1/+1
2017-05-17contrib: Use $XDG_HOME_CONFIGLars-Dominik Braun1-1/+1
Fixes #618.
2017-05-17Fix use-after-free when deleting stationLars-Dominik Braun1-0/+2
Eventcmd uses both, selStation and selSong. Fixes #617.
2017-05-17Switch to #pragma onceLars-Dominik Braun18-65/+16
# Conflicts: # src/http/http.h # src/player.h
2017-05-17piano: Replace deprecated json_object_object_getLars-Dominik Braun1-74/+105
# Conflicts: # src/libpiano/response.c
2017-05-17Sort manpage, remove non-existing tls_fingerprintLars-Dominik Braun2-21/+18
2017-05-17Added gain_mul setting to soften effect of replaygain.Sean Greenslade4-1/+12
2017-05-17add uninstall into makefileFelix Wong1-1/+10
2017-05-17Exit when no email/password was entered or ^C was pressedLars-Dominik Braun1-9/+12
Fixes #600. # Conflicts: # src/main.c
2017-05-17Replace getline() with fgets()Lars-Dominik Braun1-6/+59
Mac OS X 10.6 compatibility, fixes #572. # Conflicts: # src/settings.c
2017-05-17Support binding to a specific network interfaceblmpl4-0/+16
Closes #597. # Conflicts: # src/ui.c
2017-05-17Show status code text if no other source of error is available.Michał Cichoń5-65/+81
2017-05-17Makefile: Provide a way to disable silent rulesLars-Dominik Braun1-16/+24
Fixes #571 # Conflicts: # Makefile
2017-05-17Add default value for rpcTlsPortLars-Dominik Braun1-1/+1
Passing NULL to printf and the result to curl may or may not work. YMMV. Fixes #574. # Conflicts: # src/ui.c
2016-08-25Update README.mdMichał Cichoń1-2/+2
2016-08-25Update README.mdMichał Cichoń1-4/+0
2016-08-25Update README.mdMichał Cichoń1-0/+4
2016-08-25Update README.mdMichał Cichoń1-1/+8
2015-12-10Add missing new line after password prompt.Michał Cichoń1-295/+342
2015-12-10Merge tag '2015.12.10' into developMichał Cichoń2-1/+27
Release 2015.12.10 - Fix: Fix I/O on Windows 8.x and Windows 10 - Fix: Improve Windows Media Foundation backend