debian/changelog                        |   14 ++++++++++++--
 debian/local/11-evdev-quirks.conf       |   10 ++++++++++
 debian/local/11-evdev-trackpoint.conf   |   13 +++++++++++++
 debian/xserver-xorg-input-evdev.install |    1 +
 4 files changed, 36 insertions(+), 2 deletions(-)

New commits:
commit 693c43a587e6fa04029ae16ffd3c034fe59e36b7
Author: Timo Aaltonen <tjaal...@ubuntu.com>
Date:   Wed Jun 29 19:17:10 2011 +0300

    Update the changelog for release.

diff --git a/debian/changelog b/debian/changelog
index 9162f60..cc0aa76 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-xserver-xorg-input-evdev (1:2.6.0-1ubuntu12) UNRELEASED; urgency=low
+xserver-xorg-input-evdev (1:2.6.0-1ubuntu12) oneiric; urgency=low
 
   [ Chase Douglas ]
   * Another fix for event handling for devices that provide proximity events
@@ -13,7 +13,7 @@ xserver-xorg-input-evdev (1:2.6.0-1ubuntu12) UNRELEASED; 
urgency=low
   * 11-evdev-quirks.conf: Add a quirk for Kensington Pocket Mouse / Benq m310
     to ignore AbsoluteAxis. (LP: #325581)
 
- -- Chase Douglas <chase.doug...@ubuntu.com>  Thu, 14 Apr 2011 16:09:18 -0400
+ -- Timo Aaltonen <tjaal...@ubuntu.com>  Wed, 29 Jun 2011 19:17:04 +0300
 
 xserver-xorg-input-evdev (1:2.6.0-1ubuntu11) natty; urgency=low
 

commit ed56df7aacd1e22aa7ab66ffc175cb93fb234417
Author: Timo Aaltonen <tjaal...@ubuntu.com>
Date:   Wed Jun 29 11:00:20 2011 +0300

    11-evdev-quirks.conf: Add a quirk for Kensington Pocket Mouse / Benq m310
    
    .. to ignore AbsoluteAxis. (LP: #325581)

diff --git a/debian/changelog b/debian/changelog
index c4079f4..9162f60 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,8 @@ xserver-xorg-input-evdev (1:2.6.0-1ubuntu12) UNRELEASED; 
urgency=low
     Middlemouse emulation is turned on, to allow dragging for instance
     in Nautilus. Thanks to Jens Böning and others for collecting data and
     testing this! (LP: #554984)
+  * 11-evdev-quirks.conf: Add a quirk for Kensington Pocket Mouse / Benq m310
+    to ignore AbsoluteAxis. (LP: #325581)
 
  -- Chase Douglas <chase.doug...@ubuntu.com>  Thu, 14 Apr 2011 16:09:18 -0400
 
diff --git a/debian/local/11-evdev-quirks.conf 
b/debian/local/11-evdev-quirks.conf
index 90ff1bc..60e96d9 100644
--- a/debian/local/11-evdev-quirks.conf
+++ b/debian/local/11-evdev-quirks.conf
@@ -7,3 +7,13 @@ Section "InputClass"
        Option "Emulate3Buttons" "True"
        Option "Emulate3Timeout" "50"
 EndSection
+
+# X/Y axis not working due to device reporting absolute axes
+# 
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/325581
+# https://bugs.freedesktop.org/show_bug.cgi?id=32882
+Section "InputClass"
+       Identifier      "Benq m310"
+       MatchProduct    "HID 0d62:1000"
+       Driver          "evdev"
+       Option          "IgnoreAbsoluteAxes"    "true"
+EndSection

commit 0b5daa16d8ccf0e8b9b7f028a647016ede60e1a6
Author: Timo Aaltonen <tjaal...@ubuntu.com>
Date:   Tue Jun 28 16:52:31 2011 +0300

    Add a config snippet for trackpoint wheel emulation
    
    with middlemouse emulation turned on for those, because dragging
    enabling the wheel emulation alone makes it impossible to drag with
    the physical button, and at least Nautilus uses that.

diff --git a/debian/changelog b/debian/changelog
index 1d50c1a..c4079f4 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,16 @@
 xserver-xorg-input-evdev (1:2.6.0-1ubuntu12) UNRELEASED; urgency=low
 
+  [ Chase Douglas ]
   * Another fix for event handling for devices that provide proximity events
     (LP: #573006)
 
+  [ Timo Aaltonen ]
+  * 11-evdev-trackpoint.conf: Add a config snippet for enabling wheel
+    emulation for trackpoint devices, should support a variety of models.
+    Middlemouse emulation is turned on, to allow dragging for instance
+    in Nautilus. Thanks to Jens Böning and others for collecting data and
+    testing this! (LP: #554984)
+
  -- Chase Douglas <chase.doug...@ubuntu.com>  Thu, 14 Apr 2011 16:09:18 -0400
 
 xserver-xorg-input-evdev (1:2.6.0-1ubuntu11) natty; urgency=low
diff --git a/debian/local/11-evdev-trackpoint.conf 
b/debian/local/11-evdev-trackpoint.conf
new file mode 100644
index 0000000..b7d6c5d
--- /dev/null
+++ b/debian/local/11-evdev-trackpoint.conf
@@ -0,0 +1,13 @@
+# trackpoint users want wheel emulation
+
+Section "InputClass"
+       Identifier      "trackpoint catchall"
+       MatchIsPointer  "true"
+       MatchProduct    "TrackPoint|DualPoint Stick"
+       MatchDevicePath "/dev/input/event*"
+       Option  "Emulate3Buttons"       "true"
+       Option  "EmulateWheel"  "true"
+       Option  "EmulateWheelButton"    "2"
+       Option  "XAxisMapping"  "6 7"
+       Option  "YAxisMapping"  "4 5"
+EndSection
diff --git a/debian/xserver-xorg-input-evdev.install 
b/debian/xserver-xorg-input-evdev.install
index 663af94..79cf636 100644
--- a/debian/xserver-xorg-input-evdev.install
+++ b/debian/xserver-xorg-input-evdev.install
@@ -1,3 +1,4 @@
 usr/lib/xorg/modules/input/*.so
 usr/share/man
 ../local/11-evdev-quirks.conf  usr/share/X11/xorg.conf.d/
+../local/11-evdev-trackpoint.conf      usr/share/X11/xorg.conf.d/


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1qbxtx-00071s...@vasks.debian.org

Reply via email to