aboutsummaryrefslogtreecommitdiff
path: root/nncmpp.c
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright yearsPřemysl Janouch2017-01-241-1/+1
|
* Fix visual regressionPřemysl Janouch2017-01-241-1/+1
|
* Mark some memory leaks to be fixedPřemysl Janouch2017-01-231-0/+4
|
* Bump libertyPřemysl Janouch2017-01-231-303/+58
|
* CleanupPřemysl Janouch2017-01-171-6/+4
|
* 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-131-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
|
* 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-111-6/+1
| | | | It seems like there aren't going to be any big changes any time soon.
* 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-101-37/+190
|
* 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-101-23/+11
|
* Factor out an abstraction for cURL multi interfacePřemysl Janouch2016-10-101-187/+268
|
* Make the Streams tab actually workPřemysl Janouch2016-10-091-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-061-1/+4
| | | | 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-061-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.