aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add .travis.ymlcoverity_scanPřemysl Janouch2017-01-171-0/+34
|
* Improve double click detectionPřemysl Janouch2016-11-201-1/+5
|
* Fix launch w/o configurationPřemysl Janouch2016-11-201-1/+4
|
* Use case insensitive orderingPřemysl Janouch2016-10-231-3/+14
|
* Show song length in the playlistPřemysl Janouch2016-10-231-5/+27
|
* Handle double clicks on itemsPřemysl Janouch2016-10-131-14/+34
|
* Nicer playlistPřemysl Janouch2016-10-131-2/+9
|
* Factor out mpd_parse_kv()Přemysl Janouch2016-10-131-10/+12
|
* Clean up mpd_process_info(), bump libertyPřemysl Janouch2016-10-132-23/+23
| | | | "command_list_ok_begin" allows us to partition the response easily.
* Simplify mpd_process_info()Přemysl Janouch2016-10-131-33/+25
| | | | At a cost but still a win as I see it.
* Clean up library_tab_on_data()Přemysl Janouch2016-10-131-23/+17
|
* First round of Library tab cleanupsPřemysl Janouch2016-10-121-83/+88
|
* Rename "user actions" to "actions"Přemysl Janouch2016-10-121-85/+85
|
* Update READMEPřemysl Janouch2016-10-122-5/+5
| | | | Add a picture since people like pictures.
* Hack together a Library tabPřemysl Janouch2016-10-121-0/+246
| | | | This needs serious clean up. Even though it's not the first iteration.
* Fix view after playlist updatePřemysl Janouch2016-10-121-0/+1
|
* Try to optimize playlistsPřemysl Janouch2016-10-121-96/+137
| | | | I'm not entirely sure about this.
* Move the MPD client interface to libertyPřemysl Janouch2016-10-113-655/+1
| | | | It seems like there aren't going to be any big changes any time soon.
* Simplify mpd_client_on_timeout()Přemysl Janouch2016-10-111-8/+5
| | | | No real need to ping the daemon.
* Allow switching tabs with just numbersPřemysl Janouch2016-10-111-1/+1
|
* Add some actions, implement playlist controlPřemysl Janouch2016-10-111-0/+48
|
* Fix regression in appearancePřemysl Janouch2016-10-101-1/+2
|
* Add a dumb Current tabPřemysl Janouch2016-10-102-38/+191
|
* Clean up initialization a bitPřemysl Janouch2016-10-101-20/+14
|
* Rewrite Streams code to be more asynchronousPřemysl Janouch2016-10-101-144/+177
| | | | Also made cURL troubleshooting easier by adding a debug callback.
* Ensure UTF-8 when parsing playlistsPřemysl Janouch2016-10-101-4/+30
|
* Bump libertyPřemysl Janouch2016-10-102-23/+11
|
* Factor out an abstraction for cURL multi interfacePřemysl Janouch2016-10-101-187/+268
|
* Generate a manual pagePřemysl Janouch2016-10-092-2/+31
| | | | Also mention our fancy new stream feature in the README.
* Make the Streams tab actually workPřemysl Janouch2016-10-092-2/+362
| | | | Clean up work is required now.
* Further simplify terminal outputPřemysl Janouch2016-10-071-31/+30
| | | | | | Most mess has been eliminated now, I believe. Also fixing a bug in row_buffer_space().
* Omitted part of the beeping commitPřemysl Janouch2016-10-071-4/+3
|
* Improve row_buffer_ellipsis()Přemysl Janouch2016-10-071-11/+11
| | | | Fixing a minor appearance regression from one of the last commits.
* Beep on unhandled eventsPřemysl Janouch2016-10-071-52/+48
| | | | We have app_quit(), let's use the return booleans for something better.
* Simplify row_buffer_ellipsis() invocationPřemysl Janouch2016-10-071-11/+7
|
* Factor out stupid column alignment loopsPřemysl Janouch2016-10-061-12/+22
|
* Further optimize terminal outputPřemysl Janouch2016-10-061-17/+19
| | | | | | By calling addstr() once instead of several addch() calls. As a side effect, it's becoming easier to ditch ncurses altogether.
* Add CMakeLists.txt, link with cURLPřemysl Janouch2016-10-063-9/+112
| | | | My global .gitignore seems to be more trouble than it's worth.
* Add some actions for songsPřemysl Janouch2016-10-061-0/+9
|
* Clean up tab code, prepare for custom handlersPřemysl Janouch2016-10-061-39/+24
|
* Add a non-functional Streams tabPřemysl Janouch2016-10-062-0/+67
| | | | Bump liberty.
* Fill the Info tab with actual informationPřemysl Janouch2016-10-051-3/+40
|
* Fix regression in Home/End handlingPřemysl Janouch2016-10-051-0/+2
|
* Some further shuffling and renamingPřemysl Janouch2016-10-051-60/+79
|
* Rearrange codePřemysl Janouch2016-10-051-197/+193
| | | | I need to update tabs from MPD message handlers.
* Don't advance the timer when not playingPřemysl Janouch2016-10-051-4/+6
| | | | Stupid regression.
* Postpone redrawsPřemysl Janouch2016-10-041-58/+68
| | | | | | This solves a performance problem in debug mode. But overall the has been simplified, with some renames taking place.
* Simplify some terminal outputPřemysl Janouch2016-10-041-40/+28
|
* Optimize row_bufferPřemysl Janouch2016-10-041-34/+29
| | | | It was one of two obvious hotspots.
* Enhance time trackingPřemysl Janouch2016-10-041-14/+30
| | | | Now with eliminated timer drift.