Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-02-15 | Print status using mvwaddstr instead of mvwprintw | Benjamin Franzke | 1 | -1/+1 | |
The status message may container printf-style modifiers which would cause an incorrect buffer to be accessed. | |||||
2020-02-15 | Drop invalid call to delscreen(NULL) | Benjamin Franzke | 1 | -1/+0 | |
Some descriptions said that delscreen frees resources from initscr (which we use) and newterm (which we do not use). Therefore we added delscreen(NULL) in 489e2955687bccb263e1ece3a1615b3356c990f2. It turs out that delscreen does only free resources from newterm and that the argument *sp *must* not be NULL. (Only due to some unreference comparisons this didn't fail in ncurses, but could fail with other curses implementations) | |||||
2013-02-20 | interface: Fix unused variable errors | Benjamin Franzke | 1 | -0/+2 | |
Caused by some curses functions being macros | |||||
2012-02-27 | Add a manpage using asciidoc | Benjamin Franzke | 3 | -0/+108 | |
2012-02-12 | command: Fix segfault when trying to mute a source output | Benjamin Franzke | 1 | -1/+1 | |
2011-12-20 | Fix endless loop in slave_ctl_{prev,next}_ctl | Benjamin Franzke | 1 | -2/+2 | |
2011-12-20 | Fix indents and leading whitespace | Benjamin Franzke | 2 | -10/+10 | |
2011-12-20 | interface: Add labels to the sink and source lists | Benjamin Franzke | 1 | -1/+5 | |
2011-12-20 | Get rid of chooser_main_ctl and chooser_child | Benjamin Franzke | 5 | -137/+205 | |
Use a current_ctl pointer in struct interface instead. | |||||
2011-12-19 | ctl.h: Fix typos in parameters | Benjamin Franzke | 1 | -2/+2 | |
2011-12-19 | interface: Dont allocate volumebar if length is to less | Benjamin Franzke | 1 | -0/+2 | |
2011-12-19 | command: Check current ctl in down-command | Benjamin Franzke | 1 | -0/+6 | |
2011-12-19 | command: Put main ctl length logic into interface.c | Benjamin Franzke | 3 | -5/+13 | |
2011-12-19 | command: Add a command describing a cast in up-command | Benjamin Franzke | 1 | -0/+1 | |
2011-12-19 | Make main_ctl_childs_len a vol_ctl vfunc | Benjamin Franzke | 3 | -15/+19 | |
2011-12-19 | Rename sink.h to ctl.h | Benjamin Franzke | 5 | -4/+4 | |
2011-12-19 | Rename chooser_{sink,input} to chooser_{main_ctl,child} | Benjamin Franzke | 3 | -34/+36 | |
2011-12-19 | Implement "up" for both sink and source list | Benjamin Franzke | 1 | -3/+6 | |
2011-12-19 | Add support for switching recording sources | Benjamin Franzke | 3 | -14/+30 | |
2011-12-19 | Let sinks & sources and sink_inputs & source_outputs use same types | Benjamin Franzke | 4 | -106/+39 | |
2011-12-19 | Implement "down" for both sink and source list | Benjamin Franzke | 4 | -22/+80 | |
2011-12-18 | Initial support for displaying source outputs | Benjamin Franzke | 5 | -8/+89 | |
2011-12-18 | Initial support for printing available sources | Benjamin Franzke | 4 | -9/+83 | |
2011-12-18 | Rename sink{,_input}_info to sink{,input} | Benjamin Franzke | 4 | -20/+20 | |
2011-12-18 | Unify vol_ctl destruction paths | Benjamin Franzke | 1 | -26/+21 | |
2011-12-18 | Move interface related properties into new interface struct | Benjamin Franzke | 5 | -155/+171 | |
2011-12-18 | interface: (cosmetic) Move resize and clear functions around | Benjamin Franzke | 1 | -46/+46 | |
2011-12-18 | interface: Use printf precision and padding for volume bar printing | Benjamin Franzke | 2 | -14/+27 | |
2011-12-18 | interface: getmaxx is not standard, use getmaxyx instead | Benjamin Franzke | 1 | -2/+3 | |
2011-12-18 | interface: Stop keeping track of cursor position ourself | Benjamin Franzke | 2 | -21/+20 | |
2011-12-18 | interface: Unify drawing code for sinks and inputs | Benjamin Franzke | 4 | -75/+60 | |
They are drawn from the same function that calls itself recursiveley for childs of the currently drawn volume control. So its called for all sink_inputs that belong to a sink. | |||||
2011-12-18 | interface: Dont postfix spaces, always prefix | Benjamin Franzke | 1 | -4/+4 | |
This'll make it possible to have proper displaying when clamping ctx::max_name_len in future. | |||||
2011-12-18 | interface: print_volume can use vol_ctl parameter now | Benjamin Franzke | 1 | -5/+5 | |
2011-12-18 | set_max_name_len: Simplify code to two calls to one helper function | Benjamin Franzke | 3 | -17/+21 | |
2011-12-18 | command: Rename function do_mute to toggle_mute | Benjamin Franzke | 1 | -2/+2 | |
2011-12-18 | command: Minor cosmetic in volume_change | Benjamin Franzke | 1 | -4/+3 | |
2011-12-18 | Finally move interface_get_current_ctl into interface.c | Benjamin Franzke | 3 | -44/+47 | |
2011-12-18 | Make use of interface_get_current_ctl in switch_sink | Benjamin Franzke | 1 | -12/+18 | |
2011-12-18 | Rename vol_ctl_object to vol_ctl | Benjamin Franzke | 3 | -7/+7 | |
2011-12-18 | Add volume_set to vol_ctl_object | Benjamin Franzke | 3 | -40/+41 | |
2011-12-18 | Add mute cb to vol_ctl_object | Benjamin Franzke | 3 | -22/+26 | |
2011-12-18 | Unify common sink(_input) properties to a base object | Benjamin Franzke | 4 | -48/+51 | |
2011-12-15 | Fix incorrect priority matching comparison | Benjamin Franzke | 1 | -1/+1 | |
2011-12-15 | Rename config.ini to just config | Benjamin Franzke | 3 | -48/+1 | |
2011-12-14 | Increase warning leaves, and fix new occured ones | Benjamin Franzke | 5 | -23/+23 | |
2011-12-14 | Cosmetic | Benjamin Franzke | 1 | -68/+63 | |
2011-12-14 | Remove unused change_callback | Benjamin Franzke | 3 | -20/+3 | |
2011-12-14 | Use g_list_find_custom to find sinks and inputs | Benjamin Franzke | 2 | -69/+58 | |
Used when updating or removing sinks or inputs. | |||||
2011-12-13 | Free old members when updating sinks/inputs | Benjamin Franzke | 1 | -4/+6 | |
2011-12-13 | sink_(input)_info_cb: Use interface_set_status to display errors | Benjamin Franzke | 1 | -5/+7 | |