Skip to content

Commit 0067430

Browse files
committed
Release v0.5.0
1 parent 01c4f25 commit 0067430

8 files changed

Lines changed: 44 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
xf86-input-mtrack
22
=================
3-
###### v0.4.1
3+
###### v0.5.0
44

55
An Xorg driver for multitouch trackpads. Supports any trackpad whose kernel
66
driver uses the slotted multitouch protocol. For more information on the
@@ -13,7 +13,7 @@ the [mtdev][4] library to operate.
1313
License
1414
-------
1515

16-
* Copyright (C) 2017 Paweł Turkowski <p2rkw0@gmail.com>
16+
* Copyright (C) 2015-2018 Paweł Turkowski <p2rkw0@gmail.com>
1717
* Copyright (C) 2011 Ryan Bourgeois <bluedragonx@gmail.com>
1818
* Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se>
1919

RELEASE.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## v0.5.0
2+
* Add tap-to-drag lock timeout
3+
* Make edge size configurable for each edge individually
4+
* Add edge scrolling
5+
* Fix movement truncation
6+
* Fix crash during suspend/wake up
7+
* Make movement speed resolution independent
8+
* Lock smooth scroll to one axis at time
9+
* Post button events before move events
10+
* New emulated buttons implementation
11+
* Reduce max recognized fingers/touch points from 32 to 16
12+
* New fancy readme with anchors
13+
* Fix warnings, improve logging
14+
* New examples
15+
* Helper script to parse output of xinput --list-props
16+
117
## v0.4.1
218
* Smooth scroll: detect and handle flipped up&down, left&right buttons
319
* Add examples with my current configuration as first example.

debian/changelog

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
xserver-xorg-input-mtrack (0.5.0) unstable; urgency=medium
2+
3+
* Add tap-to-drag lock timeout
4+
* Make edge size configurable for each edge individually
5+
* Add edge scrolling
6+
* Fix movement truncation
7+
* Fix crash during suspend/wake up
8+
* Make movement speed resolution independent
9+
* Lock smooth scroll to one axis at time
10+
* Post button events before move events
11+
* New emulated buttons implementation
12+
* Reduce max recognized fingers/touch points from 32 to 16
13+
* New fancy readme with anchors
14+
* Fix warnings, improve logging
15+
* New examples
16+
* Helper script to parse output of xinput --list-props
17+
18+
-- Paweł Turkowski <p2rkw0@gmail.com> Sun, 28 Jan 2018 20:02:28 +0100
19+
120
xserver-xorg-input-mtrack (0.4.1) unstable; urgency=low
221

322
* Smooth scroll: detect and handle flipped up&down, left&right buttons

debian/copyright

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Upstream Authors: Ryan Bourgeois <bluedragonx@gmail.com>
66
Copyright:
77
Copyright (C) 2008 Henrik Rydberg (rydberg@euromail.se)
88
Copyright (C) 2011 Ryan Bourgeois (bluedragonx@gmail.com)
9-
Copyright (C) 2016 Paweł Turkowski (p2rkw0@gmail.com)
9+
Copyright (C) 2018 Paweł Turkowski (p2rkw0@gmail.com)
1010

1111
License:
1212

@@ -27,6 +27,6 @@ License:
2727
Packaging:
2828
Copyright (C) 2008 by Henrik Rydberg <rydberg@euromail.se>
2929
Copyright (C) 2011 by Ryan Bourgeois <bluedragonx@gmail.com>
30-
Copyright (C) 2016 by Paweł Turkowski <p2rkw0@gmail.com>
30+
Copyright (C) 2018 by Paweł Turkowski <p2rkw0@gmail.com>
3131
released under GPL 2
3232

driver/mtrack.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Multitouch X driver
44
* Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se>
55
* Copyright (C) 2011 Ryan Bourgeois <bluedragonx@gmail.com>
6+
* Copyright (C) 2015-2018 Paweł Turkowski <p2rkw0@gmail.com>
67
*
78
* This program is free software; you can redistribute it and/or modify
89
* it under the terms of the GNU General Public License as published by

include/gestures.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Multitouch X driver
44
* Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se>
55
* Copyright (C) 2011 Ryan Bourgeois <bluedragonx@gmail.com>
6+
* Copyright (C) 2015-2018 Paweł Turkowski <p2rkw0@gmail.com>
67
*
78
* This program is free software; you can redistribute it and/or modify
89
* it under the terms of the GNU General Public License as published by

include/mtouch.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* Multitouch X driver
44
* Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se>
55
* Copyright (C) 2011 Ryan Bourgeois <bluedragonx@gmail.com>
6+
* Copyright (C) 2015-2018 Paweł Turkowski <p2rkw0@gmail.com>
67
*
78
* This program is free software; you can redistribute it and/or modify
89
* it under the terms of the GNU General Public License as published by

src/gestures.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,13 @@
33
* Multitouch X driver
44
* Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se>
55
* Copyright (C) 2011 Ryan Bourgeois <bluedragonx@gmail.com>
6+
* Copyright (C) 2015-2018 Paweł Turkowski <p2rkw0@gmail.com>
67
*
78
* Gestures
89
* Copyright (C) 2008 Henrik Rydberg <rydberg@euromail.se>
910
* Copyright (C) 2010 Arturo Castro <mail@arturocastro.net>
1011
* Copyright (C) 2011 Ryan Bourgeois <bluedragonx@gmail.com>
12+
* Copyright (C) 2015-2018 Paweł Turkowski <p2rkw0@gmail.com>
1113
*
1214
* This program is free software; you can redistribute it and/or modify
1315
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)