diff options
author | Peter Osterlund <petero2@telia.com> | 2003-09-25 01:40:16 +0200 |
---|---|---|
committer | Peter Osterlund <petero2@telia.com> | 2006-04-09 04:01:12 +0200 |
commit | 86adad50ea56005cc3d6f536b5ea2856c7d1ed57 (patch) | |
tree | 6c81443de75adba2372853b57181eb4b2c1de4aa | |
parent | a37a1239a79d0147dbd76e7346108d4b7a836864 (diff) |
Changed version to 0.11.5.v0.11.5
-rw-r--r-- | NEWS | 12 | ||||
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | synaptics.c | 2 |
3 files changed, 14 insertions, 2 deletions
@@ -1,3 +1,15 @@ +0.11.5 (2003-09-25) +- Use the EVIOCGID ioctl for synaptics event device auto detection. + This is much simpler than parsing /proc/bus/input/devices and more + robust too. +- Added support for the new 2.6 kernel events ABS_TOOL_WIDTH, + BTN_TOOL_FINGER, BTN_TOOL_DOUBLETAP and BTN_TOOL_TRIPLETAP. Note + that this swaps the direction of the Y axis internally to match X + and the linux input subsystem. Because of this, the TopEdge and + BottomEdge parameters must be modified in the config file. There is + some backwards compatibility code for old 2.5/2.6 kernels that will + probably be deleted later. + 0.11.4 (2003-09-22) - Reset the touchpad if it has been out of sync for too long. (By Hartwig Felger, cleaned up somewhat by me.) The synaptics manual @@ -1 +1 @@ -0.11.4 +0.11.5 diff --git a/synaptics.c b/synaptics.c index 522633c..469941f 100644 --- a/synaptics.c +++ b/synaptics.c @@ -107,7 +107,7 @@ typedef enum { #define DEV_INPUT_EVENT "/dev/input" #define EVENT_DEV_NAME "event" -#define VERSION "0.11.4" +#define VERSION "0.11.5" /***************************************************************************** * Forward declaration |