Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2010-07-15 | use pa_cvolume_set instead of iterating manually | ben | 1 | -4/+5 | |
2010-07-15 | replace own VOLUME_MAX def with PA_VOLUME_NORM def | ben | 6 | -11/+7 | |
2010-07-15 | syntax cleanup | ben | 6 | -79/+81 | |
2010-07-15 | replace sink_input_list implementation with GArray | ben | 6 | -126/+44 | |
2010-07-15 | sink_clear() marked static (only private use) | ben | 2 | -11/+11 | |
2010-07-15 | replace own sink-list implementation with GArray | ben | 4 | -148/+74 | |
2010-07-14 | replace pulseaudio's mainloop with glib-mainloop | ben | 3 | -17/+31 | |
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 | 12 | -10/+11 | |
2010-07-12 | wip: code cleanup | younix | 1 | -1/+5 | |
2010-07-12 | makefile: add header files (for make dist) | ben | 1 | -0/+2 | |
2010-07-11 | move {C,LD}FLAGS from configure.ac to Makefile.am | ben | 2 | -5/+8 | |
2010-07-11 | Merge branch 'master' of gitorious.org:pa-sink-ctl/pa-sink-ctl | ben | 0 | -0/+0 | |
2010-07-11 | add files for autotools usage | ben | 10 | -0/+1124 | |
2010-07-11 | switch to autotools | ben | 1 | -0/+0 | |
2010-07-11 | switch to autotools | ben | 1 | -0/+0 | |
2010-07-11 | makefile: restart make after depend creation now | ben | 1 | -1/+4 | |
without this fix, dependency changes were recognized not before executing make 2 times | |||||
2010-07-11 | wip: impl. management function | younix | 4 | -44/+71 | |
2010-07-09 | wip: cleanup sink & co. | Jan Klemkow | 5 | -31/+82 | |
2010-07-08 | makefile: cleanup | ben | 1 | -2/+2 | |
2010-07-08 | makefile: add dynamic dependencies for make-rules | ben | 1 | -5/+17 | |
2010-07-08 | makefile is more dynamic now | ben | 1 | -17/+12 | |
2010-07-08 | adding binary to clean section | Jan Klemkow | 1 | -1/+1 | |
2010-07-08 | Makefile | Jan Klemkow | 1 | -0/+3 | |
2010-07-08 | splitting project into seperat files | Jan Klemkow | 7 | -0/+327 | |
2010-07-08 | splitting project into seperat files | Jan Klemkow | 2 | -138/+59 | |
2010-07-02 | bugfix: volume bar | Jan Klemkow | 1 | -1/+1 | |
2010-07-02 | bugfix: volume bar | Jan Klemkow | 1 | -4/+19 | |
2010-07-02 | finish: sink chooser | Jan Klemkow | 1 | -2/+33 | |