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