diff options
author | Peter Osterlund <petero2@telia.com> | 2003-07-30 01:30:42 +0200 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2006-04-09 04:01:06 +0200 |
commit | 95d116296d757aca38a41c90ee52955876900471 (patch) | |
tree | ac283c1f5cf0cb5f65d4a0d3cddcbf4302bc8932 | |
parent | 32408625df8b41757515459b52e97c3e2eaa1937 (diff) |
Changed version to 0.11.3p10.
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | synaptics.c | 2 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,11 @@ +0.11.3p10 (2003-07-30) +- Improved support for the old-style synaptics protocol. +- Cleanup: Moved middle mouse button emulation to a separate function. +- Cleanup: Moved finger detection to a separate function. +- More robust resynchronization code, after an idea from Harwig + Felger. When we realize we are out of sync, only throw away one + byte, not all bytes already read from the touchpad. + 0.11.3p9: (2003-07-29) - Added support for the old synaptics protocol. By Hartwig Felger. diff --git a/synaptics.c b/synaptics.c index 1e68622..b5d9499 100644 --- a/synaptics.c +++ b/synaptics.c @@ -92,7 +92,7 @@ typedef enum { #define DEV_INPUT_EVENT "/dev/input/" #define PROC_BUS_INPUT_DEV "/proc/bus/input/devices" -#define VERSION "0.11.3p9" +#define VERSION "0.11.3p10" /***************************************************************************** * Forward declaration |