aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* makefile: -std=c++11 should be part of CFLAGSDave Reisner2013-08-031-3/+1
|
* pulse: capture the only needed arg, and by referenceDave Reisner2013-05-291-1/+1
| | | | oh dear c++....
* implement --max-volume to override baked in defaultsDave Reisner2013-04-302-1/+28
| | | | Solves GH#19.
* add version function, wire it up from the makefileDave Reisner2013-04-104-5/+23
|
* Favor nullptr over NULLDave Reisner2013-04-101-1/+1
|
* clamp max volume based on max(dev->vol(), 100)Dave Reisner2013-04-101-1/+3
| | | | Fixes GHI#17.
* remove unnecessary indirect varsDave Reisner2013-04-081-13/+5
|
* Merge pull request #16 from vodik/masterDave Reisner2013-04-081-1/+1
|\ | | | | Don't connect to pulseaudio with PA_CONTEXT_NOFAIL
| * Don't connect with PA_CONTEXT_NOFAILSimon Gomizelj2013-04-081-1/+1
|/ | | | | | | | | | | | | | | NOFAIL means we don't fail if the daemon is not available when pa_context_connect() is called and instead enter PA_CONTEXT_CONNECTING state and wait for the daemon to appear. So currently if pulseaudio isn't running or available, ponymix will just block and wait. Since a lot of people use ponymix bound to their volume keys, this could potentially mean spawning 100s of processes before actually catching on that things aren't working. PA_CONTEXT_NOFLAGS was introduced in 0.9.19. Its really just 0. Signed-off-by: Simon Gomizelj <simongmzlj@gmail.com>
* check for exact match before matching on a prefixDave Reisner2013-03-121-1/+7
|
* allow matching commands on prefixesDave Reisner2013-03-011-8/+30
| | | | | | | | | | Allow for invocations such as "ponymix get-v" or "ponymix -d SB set-d". Bail when the command is ambiguous and print the possible matches. This necessarily means changing the return type of string_to_command to return the whole pair<> out of the action map to allow for useful errors when we do arg checking (as we don't necessarily have the full command name from the user).
* remove unused headerDave Reisner2013-02-281-1/+0
|
* add dist targetDave Reisner2013-01-271-0/+4
|
* whitespace policeDave Reisner2013-01-271-1/+1
|
* document --notifyDave Reisner2013-01-223-2/+7
|
* add support for libnotify based notifierDave Reisner2013-01-223-1/+71
|
* always use nullptr instead of NULLDave Reisner2013-01-212-3/+3
|
* abstract volume/balance output away from ponymixDave Reisner2013-01-215-39/+80
| | | | | | Add a Notifier virtual base class and a CommandLineNotifier implementation which handles output of volume and balance levels after a change.
* clamp volume betweem 0-100 when using increase/decreaseDave Reisner2013-01-201-16/+10
|
* use convenient methods for increase/decreaseDave Reisner2013-01-062-3/+3
|
* avoid copying the passed vector to find_fuzzyDave Reisner2013-01-062-2/+2
|
* generalize gitignoreDave Reisner2013-01-061-1/+1
|
* bash-completion: detect devtype via -tDave Reisner2013-01-051-3/+6
|
* unify logic for finding by name fragmentDave Reisner2013-01-052-33/+29
|
* fix completion for device names with whitespaceDave Reisner2013-01-051-3/+8
| | | | Not sure this is the best way, but it's relatively clean, and it works.
* offer appropriate device completion for moveDave Reisner2013-01-041-0/+16
|
* install bash completion too....Dave Reisner2013-01-041-0/+1
|
* add rudimentary bash completionDave Reisner2013-01-041-0/+92
|
* restrict list when using the -t flagDave Reisner2013-01-031-0/+1
|
* store possible device/card matches as pointersDave Reisner2013-01-031-8/+9
| | | | | Avoid invoking the copy constructors and storing new objects which can't be returned (as they're local variables).
* allow fuzzy matching on devicesDave Reisner2013-01-032-6/+30
|
* 80 columns!Dave Reisner2013-01-033-6/+12
|
* add zsh completionDaniel Wallace2013-01-032-0/+129
| | | | Updated but doesn't include card/profile completion
* README -> README.mdDave Reisner2013-01-032-3/+5
|
* allow overriding the compilerDave Reisner2013-01-031-1/+1
|
* we're c++ now.Dave Reisner2013-01-033-1028/+4
|
* fixup testsDave Reisner2013-01-031-2/+2
|
* Merge remote-tracking branch 'pwnymix/master'Dave Reisner2013-01-035-53/+1605
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * pwnymix/master: (25 commits) show description in list-short properly clamp values in Set{Balance,Volume} resolve the card choice as late as possible allow card lookup by index Cleanup manpage, reintroduce application commands section add manpage reorg usage output remove defunct enum implement -short variations of list verbs A dash of color... fix abort on set-profile after removing profile whitespace police remove string_to_device; PulseClient can do this now always defined behaviors for devices Derive the card from the targetted device ponymix: validate arg count before invoking function rename class Pulse to PulseClient makefile: CFLAGS -> CXXFLAGS eschew _unused_ attribute alias sane types to --device flags ... Conflicts: Makefile ponymix.1
| * show description in list-shortDave Reisner2013-01-031-2/+3
| |
| * properly clamp values in Set{Balance,Volume}Dave Reisner2013-01-031-8/+6
| |
| * resolve the card choice as late as possibleDave Reisner2013-01-031-24/+21
| | | | | | | | | | | | | | Avoid some needless churn of back and forth between a card name and Card*. We rarely actually need the card unless we're performing an operation on it, so delay it as long as possible. Add a convenience function to resolve the active card or die.
| * allow card lookup by indexDave Reisner2013-01-031-0/+3
| |
| * Cleanup manpage, reintroduce application commands sectionDave Reisner2013-01-032-5/+22
| | | | | | | | | | | | | | 99d86934399e9 implies that I lied. move and kill have special behavior since they only ever really operate on sink-inputs and source-outputs. Reflect this in Kill on the frontend, since it previously required the exact device type.
| * add manpageDave Reisner2013-01-021-0/+99
| | | | | | | | Yay, the makefile is no longer a lie!
| * reorg usage outputDave Reisner2013-01-021-11/+7
| |
| * remove defunct enumDave Reisner2013-01-021-28/+1
| |
| * implement -short variations of list verbsDave Reisner2013-01-021-60/+130
| |
| * A dash of color...Dave Reisner2013-01-021-6/+85
| |
| * fix abort on set-profile after removing profileDave Reisner2013-01-021-0/+4
| | | | | | | | | | | | ponymix set-profile off ponymix set-profile output:stereo-da+input:stereo-analog <kaboom>
| * whitespace policeDave Reisner2013-01-021-24/+24
| |