Re: [ANNOUNCE] wayland 1.13.0

2017-04-28 Thread Bryce Harrington
On Wed, Apr 26, 2017 at 06:47:57PM +0200, Daniel Stone wrote: > Hi, > > On 21 February 2017 at 22:59, Bryce Harrington wrote: > > Our next major release will be version 1.14, which will be scheduled > > tentatively as follows: > > > > √ Development opens immediately > > > > - 1.14-alpha in ea

[PATCH 1/2] Restore zoom-follows-text-cursor functionality

2017-04-28 Thread Scott Moreau
This restores the functionality removed by a7af70436. It demonstrates text-cursor-position protocol that can be seen when typing in weston-terminal while zoomed in. --- desktop-shell/shell.c | 3 +- libweston/compositor.c | 2 +- libweston/compositor.h | 18 +++- libweston/zoom.c |

Re: starting " weston " with non root user

2017-04-28 Thread Daniel Stone
Hi Shrawan, On 28 April 2017 at 07:48, shrawan kumar wrote: > I want to start weston as non root user and I do not want to take > "weston-launch" approach . Without knowing why you don't want to use 'weston-launch', I can only guess as to what would be acceptable for you. Nonetheless, if you use

Re: [RFC v2 wayland-protocols] inputfd - direct input access protocol

2017-04-28 Thread Stephan Sokolow (You actually CAN reply)
NOTE: I'm not sure what my current status with the list is, so this could take a LONG time to show up in the list if it gets stuck in the moderation queue. On 17-04-24 03:57 AM, Pekka Paalanen wrote: The downside of a secondary communication channel is that it will be hard to correlate between

starting " weston " with non root user

2017-04-28 Thread shrawan kumar
Hello All, I want to start weston as non root user and I do not want to take "weston-launch" approach . I could see relevant work has been done as per this post : https://lists.tizen.org/pipermail/dev/2014-April/002481.html Could someone help locate relevant changes ? Regards ___

[PATCH xf86-input-libinput] Allow symbolic link device path

2017-04-28 Thread Kögler Christian
Motivation Assign calibration to a specific device. Problem LIBINPUT_CALIBRATION_MATRIX is not used, because the used context creation function libinput_path_create_context do not recognize Udev variables. The documented approach is to set the option "CalibrationMatrix" and "Device" in xorg.conf f

[PATCH libinput 2/3] udev: Add generic pressure range values for I2C Elan touchpads

2017-04-28 Thread Paul Kocialkowski
This adds generic pressure range values for I2C Elan touchpads used with device-tree. These values were tested to work with various devices and should be acceptable in most cases. Signed-off-by: Paul Kocialkowski --- udev/90-libinput-model-quirks.hwdb | 3 +++ 1 file changed, 3 insertions(+) di

[PATCH libinput 3/3] udev: Add specific pressure range for the Chromebook R13 CB5-312T

2017-04-28 Thread Paul Kocialkowski
This adds specific pressure range values for the Elan touchpad found in the Chromebook R13 CB5-312T (codename elm). These values allow using the touchpad from the tip of the finger and makes scrolling generally more reactive. Signed-off-by: Paul Kocialkowski --- udev/90-libinput-model-quirks.hw

[PATCH libinput 1/3] udev: Add support for device-tree-based model selection

2017-04-28 Thread Paul Kocialkowski
This adds support for detecting input peripherals based on their name and the device-tree model of the device they're used with. This is mostly an equivalent to dmi-based model detection (e.g. on x86 devices) for device that use device-tree (e.g. on ARM devices). Signed-off-by: Paul Kocialkowski

[PATCH libinput 0/3] Device-tree-based model detection

2017-04-28 Thread Paul Kocialkowski
This series introduces device-tree-based model detection and uses it for fine tuning on the Chromebook R13 CB5-312T. It applies on top of my series fixing the default range values for PS/2 Elantech touchpads. For this to work properly, a patch in systemd (that is still under review) is required:

[PATCH 1/3] udev: Remove unused Elantech touchpad model binding

2017-04-28 Thread Paul Kocialkowski
The Elantech touchpad model binding in udev is currently unused, since pressure values were moved to a udev binding of their own. This gets rid of the deprecated model binding. Signed-off-by: Paul Kocialkowski --- src/evdev.c| 1 - src/evdev.h| 1

[PATCH 3/3] udev: Add specific pressure range for the ASUS ZenBook UX21E

2017-04-28 Thread Paul Kocialkowski
This adds specific pressure range values for the Elantech touchpad found in the ASUS ZenBook UX21E. Signed-off-by: Paul Kocialkowski --- udev/90-libinput-model-quirks.hwdb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/udev/90-libinput-model-quirks.hwdb b/udev/90-libinput-model-quirks.h

[PATCH 2/3] udev: Select more generic pressure range values for Elantech touchpads

2017-04-28 Thread Paul Kocialkowski
The current pressure values for Elantech touchpads are too high for various devices and make the touchpad almost unusable on them. Decreasing the pressure range values makes those devices usable again. Signed-off-by: Paul Kocialkowski --- udev/90-libinput-model-quirks.hwdb | 2 +- 1 file change

Re: [PATCH libinput 3/5] test: allow running the symbols-leak-test.in script directly

2017-04-28 Thread Eric Engestrom
On Wednesday, 2017-04-26 12:20:39 +1000, Peter Hutterer wrote: > With autotools, we replace the @top_srcdir@ during configure and then run teh > resulting scripts. > > With meson, it's easier to just pass top-srcdir it in as argument. > > Signed-off-by: Peter Hutterer > --- > test/symbols-leak-