~ubuntu-branches/ubuntu/trusty/xinput/trusty

« back to all changes in this revision

Viewing changes to ChangeLog

  • Committer: Package Import Robot
  • Author(s): Cyril Brulebois, Julien Cristau, Chase Douglas, Cyril Brulebois
  • Date: 2012-05-20 13:56:03 UTC
  • mfrom: (1.1.9) (4.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20120520135603-kz0mjqk7s0p84mz0
Tags: 1.6.0-1
[ Julien Cristau ]
* Change Maintainer to the X Strike Force.
* Add Vcs-* control fields.

[ Chase Douglas ]
* Bump Standards-Version to 3.9.2
* Add build deps on libxrandr-dev and libxinerama-dev
* Bump build deps on libxi and x11proto-input-dev

[ Cyril Brulebois ]
* New upstream release.
* Replace Julien with myself in Uploaders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
commit 60fe84e83b14576fb70d79c5d39755a281906607
 
2
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
3
Date:   Tue May 15 15:47:45 2012 +1000
 
4
 
 
5
    xinput 1.6.0
 
6
    
 
7
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
8
 
 
9
commit 2c52e836b8e5a98a1faa5243cb4deb149091c52c
 
10
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
11
Date:   Mon May 14 17:27:55 2012 +1000
 
12
 
 
13
    Add --enable/--disable support
 
14
    
 
15
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
16
    Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
 
17
 
 
18
commit bfac9503e99a266e19bc21805cb4fc38efd16612
 
19
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
20
Date:   Mon Apr 16 12:39:58 2012 +1000
 
21
 
 
22
    xinput 1.5.99.901
 
23
    
 
24
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
25
 
 
26
commit 286edaa10022fad59acd6d1eabb3a74769c99892
 
27
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
28
Date:   Tue Apr 10 09:28:36 2012 +1000
 
29
 
 
30
    Print the sourceid for raw events
 
31
    
 
32
    Due to http://bugs.freedesktop.org/show_bug.cgi?id=34240 this will display 0
 
33
    for XI < 2.2 and libXi < 1.6.1.
 
34
    
 
35
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
36
    Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
 
37
 
 
38
commit 8caaf2f872be80e6aa222505d96d6025cf4f8d80
 
39
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
40
Date:   Tue Feb 21 11:57:19 2012 +1000
 
41
 
 
42
    Handle XA_CARDINAL as property type
 
43
    
 
44
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
45
    Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
 
46
 
 
47
commit b181658db7c72b664d40f2736fe425819421ce52
 
48
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
49
Date:   Fri Feb 17 14:34:23 2012 +1000
 
50
 
 
51
    Replace NVIDIA-specific output checking
 
52
    
 
53
    If the binary driver drives at least one screen, the old method did
 
54
    not allow for randr-style screen binding (on the other screen).
 
55
    
 
56
    Change the logic to:
 
57
    - check if the output an randr output
 
58
    - if not, check if the "default" randr output is present and the output name
 
59
      was "HEAD-n"
 
60
      - if so, use Xinerama-style mapping
 
61
    
 
62
    This keeps the current behaviour of not allowing Xinerama-style mapping if
 
63
    all outputs are RandR capable.
 
64
    
 
65
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
66
    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
 
67
    Tested-by: Aaron Plattner <aplattner@nvidia.com>
 
68
 
 
69
commit eb40d9cc5d59321263fd8fa3f76ddd912d1fb804
 
70
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
71
Date:   Fri Feb 17 14:33:56 2012 +1000
 
72
 
 
73
    Add find_output_xrandr to check for output presence
 
74
    
 
75
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
76
 
 
77
commit 5d32964533e4ebe3c69f1dfa34c709a1f447ad86
 
78
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
79
Date:   Fri Feb 17 13:23:08 2012 +1000
 
80
 
 
81
    Don't leak output_info
 
82
    
 
83
    This inverts the logic to have a more obvious flow for freeing the
 
84
    output_info.
 
85
    
 
86
    ==26716== 1,161 bytes in 8 blocks are definitely lost in loss record 5 of 7
 
87
    ==26716==    at 0x4A074CD: malloc (vg_replace_malloc.c:236)
 
88
    ==26716==    by 0x395D804ABA: XRRGetOutputInfo (in /usr/lib64/libXrandr.so.2.2.0)
 
89
    ==26716==    by 0x40932B: map_output_xrandr (transform.c:150)
 
90
    ==26716==    by 0x40982F: map_to_output (transform.c:263)
 
91
    ==26716==    by 0x4070A4: main (xinput.c:386)
 
92
    
 
93
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
94
 
 
95
commit e1686fdbb8729f9f639ecab6860690103bb25db1
 
96
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
97
Date:   Fri Feb 17 13:19:42 2012 +1000
 
98
 
 
99
    Always call XCloseDisplay()
 
100
    
 
101
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
102
    Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
 
103
 
 
104
commit f427c74b6cd7089690c000c257468629a762b1eb
 
105
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
106
Date:   Fri Feb 17 10:33:06 2012 +1000
 
107
 
 
108
    Enclose property and device names in quotes
 
109
    
 
110
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
111
    Reviewed-by: Chase Douglas <chase.douglas@canonical.com>
 
112
 
 
113
commit c591231a666d8dfdac4d301c0de49f34ac3e4aac
 
114
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
115
Date:   Wed Feb 8 20:46:29 2012 +1000
 
116
 
 
117
    Fix XRRCrtcInfo memory leaks
 
118
    
 
119
    crtc_info isn't used until later, move down to the block it is used to avoid
 
120
    leaking.
 
121
    
 
122
    Reported-by: Aaron Plattner <aplattner@nvidia.com>
 
123
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
124
    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
 
125
 
 
126
commit a0e4d4e1067de2a25e05272238a8503691c5b01a
 
127
Author: Peter Hutterer <peter.hutterer@who-t.net>
 
128
Date:   Tue Feb 7 18:20:37 2012 +1000
 
129
 
 
130
    Rename map-to-crtc to map-to-output
 
131
    
 
132
    xrandr uses "output", let's be consistent there.
 
133
    
 
134
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
 
135
    Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
 
136
 
1
137
commit 30f9ee3f859eb8413099be9eb8dfceaa195a5aa9
2
138
Author: Peter Hutterer <peter.hutterer@who-t.net>
3
139
Date:   Thu Jan 12 16:08:35 2012 +1000