wmbiff: Use unsigned data type for port number.
[dockapps.git] / wmix / NEWS
blob5d9a307a2fd8d92c478a30c81bf5743ef8b2fe1d
1 3.2 NEWS:
2 Added support for volume control keys found on all modern keyboards.
3 Added plenty of information to the man page on invocation and configuration.
4 Made wmix more verbose when something is not right in the configuration.
6 3.1 NEWS:
7 Fixed a 3 years old bug about volume level showing up as "0" when it's
8 actually set to 10. Thank to all 20 or so people who e-mailed me about this.
9 Changed struct mixer_info name to allow compiling wmix under 2.6.1+ kernels.
10 Thanks Neil Burch <burch@cs.ualberta.ca> for the patch.
11 Added a patch to enable exclusion of channels from display - allows you to
12 remove mixer channels you never use. adds '-e <channame>' command line option
13 which can be repeated any number of times. Thanks to Nicolas Descomps <nico_206@noos.fr>.
14 Added #include <string.h> since glibc finally fixed most of the includes since 2001.
16 3.0 NEWS:
17 Major code rewrite. Now uses much better mixer library. New knob drawing code.
18 New config parsing code - no more segfaults. New mouse control code for knob
19 and slider dragging - more intuitive. Documentation updates. Removed runtime
20 config parsing, only reading config file once on startup. New command line
21 options to specify X display, config file, and mixer device. Removed "mixermax"
22 code until someone complains. Current channel title scrolling is now
23 configurable.
25 2.2 NEWS:
26 This is a bugfix release.  On-Screen-Display code now looks for some common
27 large bitmap font.  Check that $HOME is set before trying to write a config
28 file.  Wmix makes a pid file for use with signal changing volume up/down.
29 Minor code reorganization.
31 2.11 NEWS:
32 Mostly bugfixes and other random stuff.  OSD now really stays on top provided
33 you run a GNOME-compliant window manager (wmaker/E/saw-what-ever,etc)
35 2.1 NEWS:
36 Configuration file implemented.  Mousewheel functionality, OSD display,
37 OSD color, main mixer device, and OSS bug work-around can now be selected
38 through WMixer rc file, by default placed in ~/.wmixrc
39 Changes to the rc file are loaded dynamically, while the mixer is running -
40 you can change the OSD color, for example, and see the results right away.
42 2.04 NEWS:
43 New feature: Volume of the current channel can be controlled using signals.
44 Sending SIGUSR1 will increase the volume by 1 step, and SIGUSR2 will decrase
45 the volume by 1 step.  This could be useful if you have a newer style keyboard
46 with volume buttons and all the other extra shit.  You can tell your favorite
47 window manager to run a program on keypress, and that program could be
48 something like "killall -USR1 wmix" for volume up key, and "killall -USR2 wmix"
49 for volume down.  How to assign programs to specific keys is up to you.  I know
50 Blackbox and WindowMaker can both do it.  Keep in mind most X-servers don't
51 automatically support those extra keys, so some hacking might be required.
52 Usually they are sent as a Win95 key scancode plus another scancode.  I don't
53 have one of these keyboards so I don't know.  If enough people ask for it
54 I will add 2 more signal handlers to switch the current "channel" back and
55 forth.
57 2.02 NEWS:
58 Version 2.02 adds mouse wheel support to adjust volume, thanks to the
59 patch from Gilles QUERRET <gilles.querret@free.fr>.  Now instead of
60 dragging the knob, you can use your mouse wheel to adjust the current channel
61 volume.  Position the cursor anywhere on the dockapp, and move the wheel.
62 This behaviour is off by default, but you can compile wmix with -DMOUSEWHEEL
63 in the Makefile to enable this feature.  Incase your mouse has more than 2
64 buttons and a wheel, you can set which button signals the wheel generates as
65 "up" and "down" in mix.c, lines 45 and 46.  The default is for a standard
66 mouse with 2 buttons and a wheel.  WHEEL_STEP is the amount to adjust the knob.
67 The default of 3 should be good for everyone.  Changing the volume using the
68 wheel also brings up OSD for the current channel following same rules as if the
69 knob was used directly.
71 2.01 NEWS:
72 New feature, which isn't really new, but a feature move from WMixer 1.5, is the
73 On-Screen-Display (OSD), just like the one you probably have on your TV.  The
74 concept was the only thing copied from Wmixer 1.5 though, the code has been
75 rewritten to use a modeless window instead of drawing on the root window,
76 and draw code has been optimized not to draw any unnecessary stuff. The OSD
77 only comes up when the Knob is turned, i.e. during manual adjustment.  OSD stays
78 hidden during automatic updates due to mixer reads or changing rec/balance etc.
79 However, due to the way the OSD timer is done, as long as you are moving inside
80 the dockapp (adjusting balance, or just generally moving the mouse inside the
81 dockapp window, the OSD will stay lit.  After all movement is gone, and in
82 approximately 1.5 seconds, the OSD fades out.  If some Xlib programmer knows
83 a /NON GAY/ way to handle always-on-top, feel free to mail me a diff that makes
84 the OSD continuously on top while being displayed.  Right now, it comes up
85 on top, but if you move a window over it or something, it gets hidden.  Not
86 too much of a loss, but still could be improved.  OSD follows the same low-CPU
87 use guidelines as the rest of the code.  No updates happen unless something
88 changes that requires an update.  Also, expose events after uncovering the OSD
89 window are not handled - if you can manage to obscure it in 1.5 seconds and
90 want to see it again after that, you can always go back and twiddle the knob
91 or something.