[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

xserver-xorg-input-evdev: Changes to 'refs/tags/xserver-xorg-input-evdev-1_2.8.1-1'



Tag 'xserver-xorg-input-evdev-1_2.8.1-1' created by Julien Cristau <jcristau@debian.org> at 2013-09-05 18:07 +0000

Tagging upload of xserver-xorg-input-evdev 1:2.8.1-1 to unstable.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.14 (GNU/Linux)

iQIcBAABAgAGBQJSKMhbAAoJEDEBgAUJBeQMlLcP/3pTvT9+2VrzGn5cyG1/QO0+
PZ+3lBvedMWpeNrlkHo5whx5oHL29s9+8S+4Cb0ccfn3B6RzWc+FInEXQt2AxJuZ
Qph9t3kEJ/65cioZE6/TTIXTWWDd8YWfq5Kq0NGpa8KTlsN7qcjC7KtreOtVLUBU
ENkkQcVZRoKdZ9F2Y2nOhAI8uCsgflxlV2rW7PFuKSv6iFEqFQag23JXlJ25i0d4
FEAv8C6aGz6rk0prvlo1YCPQ0EuEioisyAcoebLiTq1waTBmIidZsfPvN3tLdO5N
S28KK1Rj/8rq+Rximu9uRWiMVP51/sV+UPUQvSSJ6+L5dRt+rJijoo2x7+Mbbq/a
xGkqLnRzTw3bZQN82rgyUhUCqBQbivjsY+/fPSew5Qpl+yXjtJfu5dqAL5HoVt+l
G9DpAw6Gl2OzEndC0o6H/puL8eizZcInaWRpkxYN/EQSNXzwPGuDTqTBckOgUllR
TsmIzawAVmroLJW660huP3HuXDvj/Mj91fr7/YPzEc/Qskon0LuGoyKP1/Tuge5l
rHykz/awdeAXyJOhMYuLm0ZRDn2RiFZQl9bv0MxO77NH3PMvnlUqapRMVrZe+sXF
JpGX9PxXq9johQTFFpYp3gaRh6VuUBp3GgAVYgLwaHjLDS+32R7/QG4s0bH+MmZM
YvJk4j3SyKWWoX7aOdB2
=LI3i
-----END PGP SIGNATURE-----

Changes since xserver-xorg-input-evdev-1_2.7.1-1:
Adam Jackson (1):
      configure: Drop AM_MAINTAINER_MODE

Benjamin Tissoires (1):
      Add missing mt axis labels

Chase Douglas (2):
      Report the correct number of touches for MT protocol B devices
      Fix buffer overrun when populating axis label property array

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

Daniel Stone (1):
      Fix compilation warnings for non-multitouch builds

Julien Cristau (3):
      Revert "Build against Xserver 1.14"
      Disable silent build rules.
      Upload to unstable

Maarten Lankhorst (2):
      Merge tag 'xf86-input-evdev-2.7.2' into debian-experimental
      New upstream release.

Marcin Slusarz (1):
      Fix some obvious constness-related compile warnings.

Mauro Carvalho Chehab (1):
      Force a button if MT axes are present and it is not a gamepad

Michele Cane (5):
      Merge branch 'debian-experimental' into debian-unstable
      Merge branch 'upstream-unstable' into debian-unstable
      Bump changelogs.
      Bump Standards-Version to 3.9.4, no changes needed.
      Build against Xserver 1.14

Peter Hutterer (43):
      Devices configured as mice need REL_X/Y
      Use xf86IDrvMsg in emuMB.c instead of ErrorF
      strtol doesn't need a empty string, NULL is good enough.
      Release mtdev data whenever we close the fd
      Close the fd when mtdev open fails
      Move duplicate check up before mtdev allocation
      Constify InputDriverRec->default_options
      Split initializing one axis label out into a helper function
      Move axis labels into a separate header file
      Don't re-open mtdev after PreInit
      Only use mtdev for multitouch devices
      evdev 2.7.2
      Don't delete the device on ENODEV
      Link against libudev
      Don't delete the device on ENODEV
      Link against libudev
      Fix broken ButtonMapping option (#53168)
      Use LogMessageVerbSigSafe if available
      Fix broken ButtonMapping option (#53168)
      evdev 2.7.3
      If stat fails, pretend it's not a virtual device
      Localise XKB initialization
      Drop special XKB option handling
      Localise tmp variable
      Move valuator swapping into a helper function
      Move calibration adjustments to helper function
      Handle axis swap, calibration, and inversion for touch events (#59340)
      Move allocation of EvdevRec into a helper function
      Move some stuff into the new alloc function
      Split rel and abs axis mapping into two separate arrays
      Allow relative scroll valuators on absolute devices (#54387)
      Merge branch 'touch-axis-swap'
      Always init axis mapping for the first two rel axes (#59784)
      Make errors on EVIOCGBIT more obvious
      Return BadValue if EvdevOpenMTDev fails
      evdev 2.8.0
      Add option TypeName (#62831)
      Fail to set up axes for devices that only have MT axes but no ABS_X/Y equivalents (#64029)
      Switch default model to pc104.
      Drop cached name and led_bitmask - nothing reads this
      Use EvdevBitIsSet, not the server's BitIsOn
      Don't allow a wheel emulation inertia of 0 (#66125)
      evdev 2.8.1

Timo Aaltonen (5):
      Merge branch 'upstream-experimental' into debian-experimental
      update the changelogs
      Merge branch 'upstream-experimental' into d-e
      Merge branch 'debian-experimental' into d-e
      update the changelogs

---
 ChangeLog         |  514 ++++++++++++++++++++++++++++++++++----
 autogen.sh        |    4 
 configure.ac      |    3 
 debian/changelog  |   14 +
 debian/control    |    2 
 debian/rules      |    3 
 man/evdev.man     |    6 
 src/Makefile.am   |    5 
 src/axis_labels.h |  198 ++++++++++++++
 src/emuMB.c       |    4 
 src/emuWheel.c    |    4 
 src/evdev.c       |  729 ++++++++++++++++++++++++++----------------------------
 src/evdev.h       |   14 -
 13 files changed, 1071 insertions(+), 429 deletions(-)
---


Reply to: