Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-07-14 | replace pulseaudio's mainloop with glib-mainloop | ben | 2 | -16/+28 | |
2010-07-13 | code cleanup | Jan Klemkow | 3 | -45/+2 | |
2010-07-13 | display name instead of device when device prop is not available | ben | 2 | -2/+3 | |
2010-07-13 | Merge branch 'master' of gitorious.org:pa-sink-ctl/pa-sink-ctl | ben | 4 | -1/+8 | |
2010-07-13 | add mute support for sinks and inputs | ben | 4 | -8/+36 | |
2010-07-13 | change sink-name to sink-device | Jan Klemkow | 4 | -1/+8 | |
sink-device is the name of the device | |||||
2010-07-13 | volume made changable for sinks | ben | 1 | -9/+25 | |
2010-07-13 | add volume output for sinks | ben | 3 | -0/+4 | |
2010-07-13 | add vim-like (hjkl) shortcuts | ben | 1 | -1/+7 | |
2010-07-13 | sink_inputs volume made changable | ben | 4 | -8/+32 | |
2010-07-13 | inputs made movable | ben | 1 | -8/+26 | |
2010-07-13 | remove all tabs and use direct positioning | ben | 1 | -3/+5 | |
2010-07-13 | made test alignment and highlighting consistent | ben | 1 | -3/+3 | |
2010-07-13 | disable showing the cursor | ben | 1 | -0/+1 | |
2010-07-13 | add werase before printing (no more overwriting) | ben | 1 | -0/+1 | |
2010-07-13 | stop setting local pntrs NULL when globals needed (tmp commented out) | ben | 2 | -4/+9 | |
all *_clear functions get a pointer that should be freed by that function. after freeing they are set to NULL, but thats only in local scope, i.e: the global pointer stays NOT NULL void sink_list_clear(sink_info** sink_list, ...) { [..] free(sink_list); sink_list = NULL; } so if it is really intended, all clear functions need to be changed to: void sink_list_clear(sink_info ***sink_list,...) { [..] free(*sink_list); *sink_list = NULL; } | |||||
2010-07-13 | sink_input_list_clear: fix null pointer free | ben | 1 | -1/+2 | |
2010-07-13 | fix reallocs that saved pointer only in local vars | ben | 5 | -17/+19 | |
2010-07-12 | fix: some problems | Jan Klemkow | 2 | -5/+4 | |
2010-07-12 | interface: add volume output | Jan Klemkow | 1 | -0/+4 | |
2010-07-12 | pulseaudio connection: just use NULL as server str | ben | 1 | -1/+1 | |
things like $PULSE_SERVER are respected now see ENVIRONMENT VARIABLES in pulseaudio(1) | |||||
2010-07-12 | fix: interface | Jan Klemkow | 1 | -11/+21 | |
2010-07-12 | wip: bugfix: interface | Jan Klemkow | 7 | -26/+67 | |
2010-07-12 | move sources to src/ | ben | 9 | -0/+622 | |