Re: wl_tablet specification draft

2014-06-25 Thread Pekka Paalanen
Hi, it seems you forgot to reply-to-all, so I have re-added everyone and not trimmed the quotation. On Wed, 25 Jun 2014 18:37:08 -0400 Lyude wrote: > On Wed, 2014-06-25 at 15:19 +0300, Pekka Paalanen wrote: > > On Tue, 24 Jun 2014 21:56:09 -0400 > > Chandler Paul wrote: > > > > > Hello! As yo

[PATCH libinput v2] tablet: Include axes with all events

2014-06-25 Thread Stephen Chandler Paul
Forgot to update the documentation for libinput_event_tablet_get_axis(), fixed Signed-off-by: Stephen Chandler Paul --- src/evdev-tablet.c | 11 +-- src/libinput-private.h | 7 +-- src/libinput.c | 10 -- src/libinput.h | 3 --- 4 files changed, 22 inser

[PATCH libinput 5/5] tablet: Include axes with all events

2014-06-25 Thread Stephen Chandler Paul
Signed-off-by: Stephen Chandler Paul --- src/evdev-tablet.c | 11 +-- src/libinput-private.h | 7 +-- src/libinput.c | 10 -- 3 files changed, 22 insertions(+), 6 deletions(-) diff --git a/src/evdev-tablet.c b/src/evdev-tablet.c index c754060..de8d8cb 100644 ---

[PATCH libinput 3/5] tablet: Include tool with all events

2014-06-25 Thread Stephen Chandler Paul
Signed-off-by: Stephen Chandler Paul --- src/evdev-tablet.c | 41 ++--- src/evdev-tablet.h | 13 ++--- src/libinput-private.h | 5 - src/libinput.c | 10 -- src/libinput.h | 13 - 5 files changed, 48 inse

[PATCH libinput 4/5] tablet: remove libinput_tool_(un)ref()

2014-06-25 Thread Stephen Chandler Paul
Signed-off-by: Stephen Chandler Paul --- src/evdev-tablet.c | 1 - src/libinput-private.h | 1 - src/libinput.c | 19 +-- src/libinput.h | 30 +++--- 4 files changed, 4 insertions(+), 47 deletions(-) diff --git a/src/evdev-tablet.c b/

[PATCH libinput v2 2/5] tablet: Replace tool-update with proximity-in

2014-06-25 Thread Stephen Chandler Paul
A proximity-in event is something we want, especially since the current drafted wayland spec has a proximity-in event. Adding this also makes our events more consistent. And since we can just report the current tool in use with proximity-in events, we can get rid of the tool-update event. Signed-o

[PATCH libinput v2 1/5] tablet: Stop redundant proximity-out events from being reported

2014-06-25 Thread Stephen Chandler Paul
Because bad distance events still trigger calls to tablet_flush(), tablet_flush() will see that the tablet is out of proximity and assume it's an appropriate time to send a proximity-out event, even when we've already sent one. This results in multiple proximity-out events being sent in a row inste

Re: wl_tablet specification draft

2014-06-25 Thread Pekka Paalanen
On Thu, 26 Jun 2014 14:14:33 +1000 Peter Hutterer wrote: > On Wed, Jun 25, 2014 at 08:22:21PM -0700, Jason Ekstrand wrote: > > > > On 06/25/2014 06:05 PM, Peter Hutterer wrote: > > >On Wed, Jun 25, 2014 at 03:19:02PM +0300, Pekka Paalanen wrote: > > >>On Tue, 24 Jun 2014 21:56:09 -0400 > > >>Cha

Re: [PATCH] data-device: Clean up the logic in start_drag

2014-06-25 Thread Pekka Paalanen
On Wed, 25 Jun 2014 09:09:33 -0700 Jason Ekstrand wrote: > On Wed, Jun 25, 2014 at 6:16 AM, Pekka Paalanen wrote: > > > On Tue, 24 Jun 2014 21:23:53 -0700 > > Jason Ekstrand wrote: > > > > > Previoiusly, we had a mess of logic that was repeated with one of the > > > repeats negated. Not only

RE: Candidates for Weston 1.5 stable branch

2014-06-25 Thread Srivardhan
> -Original Message- > From: wayland-devel [mailto:wayland-devel- > boun...@lists.freedesktop.org] On Behalf Of Pekka Paalanen > Sent: Wednesday, June 25, 2014 7:14 PM > To: wayland-devel@lists.freedesktop.org; Kristian Høgsberg > Subject: Candidates for Weston 1.5 stable branch > > Hi,

Re: [PATCH weston] desktop-shell: Don't resize into the panel

2014-06-25 Thread Boyan Ding
Oh, sorry I didn't go through the mails carefully... On Thu, 2014-06-26 at 05:26 +, Vivek Ellur wrote: > Hi, > > I think you have duplicated the effort :). I had submitted the patch > for the same bug few days before. > > http://lists.freedesktop.org/archives/wayland-devel/2014-June/015528.h

Re: [PATCH weston] desktop-shell: Don't resize into the panel

2014-06-25 Thread Vivek Ellur
Title: Samsung Enterprise Portal mySingle Hi, I think you have duplicated the effort :). I had submitted the patch for the same bug few days before. http://lists.freedesktop.org/archives/wayland-devel/2014-June/015528.html. Regards, Vivek Ellur   --- Original Message --- Sender : Boyan D

Re: wl_tablet specification draft

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 08:22:21PM -0700, Jason Ekstrand wrote: > > On 06/25/2014 06:05 PM, Peter Hutterer wrote: > >On Wed, Jun 25, 2014 at 03:19:02PM +0300, Pekka Paalanen wrote: > >>On Tue, 24 Jun 2014 21:56:09 -0400 > >>Chandler Paul wrote: > >> > >>>Hello! As you all know I've been working o

Re: [PATCH libinput 3/3] tablet: Fix warnings in test/tablet.c

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 02:30:17AM -0400, Stephen Chandler Paul wrote: > Signed-off-by: Stephen Chandler Paul merged, thanks. Cheers, Peter > --- > test/tablet.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/test/tablet.c b/test/tablet.c > index 0f0728e..105a

Re: [PATCH libinput 2/3] tablet: Replace tool-update with proximity-in

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 02:30:16AM -0400, Stephen Chandler Paul wrote: > A proximity-in event is something we want, especially since the current > drafted > wayland spec has a proximity-in event. Adding this also makes our events more > consistent. And since we can just report the current tool in

[PATCH weston] desktop-shell: Don't resize into the panel

2014-06-25 Thread Boyan Ding
Previously we can resize windows into panel in weston. This patch puts a constraint in position when resizing just like what was done in moving to avoid resizing window into the panel. https://bugs.freedesktop.org/show_bug.cgi?id=80228 Signed-off-by: Boyan Ding --- desktop-shell/shell.c | 35 +++

Re: wl_tablet specification draft

2014-06-25 Thread Jason Ekstrand
On 06/25/2014 06:05 PM, Peter Hutterer wrote: On Wed, Jun 25, 2014 at 03:19:02PM +0300, Pekka Paalanen wrote: On Tue, 24 Jun 2014 21:56:09 -0400 Chandler Paul wrote: Hello! As you all know I've been working on adding drawing tablet support to the Wayland protocol. Now that we've added suppor

[PATCH] Fixes to parse_options

2014-06-25 Thread Bill Spitzak
- Rejects malformed or missing numbers - Boolean switches must not have an = sign, others must have = - Single-letter non-boolean can have optional = sign: -x=foo - Single-letter boolean switches can be merged: -xyz - Fixed addressing string[strlen+1] - new parse_options_or_exit() prints help infor

[PATCH weston v2] shell: fix segfault in fullscreen binding

2014-06-25 Thread Boyan Ding
Commit 9aa8ce69 forgot to set shsurf->fullscreen_output in fullscreen_binding(), causing segfault when fullscreening using key bindings. This patch fixes that. https://bugs.freedesktop.org/show_bug.cgi?id=79828 Signed-off-by: Boyan Ding --- desktop-shell/shell.c | 1 + 1 file changed, 1 insertio

Re: [PATCH libinput 1/3] tablet: Stop redundant proximity-out events from being reported

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 02:30:15AM -0400, Stephen Chandler Paul wrote: > Because bad distance events still trigger calls to tablet_flush(), > tablet_flush() will see that the tablet is out of proximity and assume it's an > appropriate time to send a proximity-out event, even when we've already sent

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Bill Spitzak
Sorry I did not realize that it had actually been updated. Updating within 2 hours certainly seems ok to me. On 06/25/2014 03:01 PM, Peter Hutterer wrote: On Wed, Jun 25, 2014 at 12:07:07PM -0700, Bill Spitzak wrote: Reading gmail using a local client works fine, I have done several git am cal

Re: wl_tablet specification draft

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 03:19:02PM +0300, Pekka Paalanen wrote: > On Tue, 24 Jun 2014 21:56:09 -0400 > Chandler Paul wrote: > > > Hello! As you all know I've been working on adding drawing tablet > > support to the Wayland protocol. Now that we've added support for > > tablets to libinput, the ne

Re: Comments about adding tablet support to Wayland

2014-06-25 Thread Peter Hutterer
Replying to three emails at once here to keep the thread a bit more managable. On Wed, Jun 25, 2014 at 01:38:22PM -0700, Jason Gerecke wrote: > On Wed, Jun 25, 2014 at 12:38 AM, Lyude wrote: > > On Wed, 2014-06-25 at 11:06 +0400, Dmitry Kazakov wrote: > >> Hi, all! > >> > >> > >> I am a developer

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 12:07:07PM -0700, Bill Spitzak wrote: > Reading gmail using a local client works fine, I have done several git am > calls using this, after doing save-as to the email. > > That said, it may be a nice idea to not update the master for weston at the > same time the master for

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 08:56:55AM -0400, Jasper St. Pierre wrote: > On Wed, Jun 25, 2014 at 2:59 AM, Lyude wrote: > > > On Tue, 2014-06-24 at 23:40 -0700, Andrea Giammarchi wrote: > > > Yeah Peter, I know how to apply a patch and no, I don't have any of > > > them in my inbox, that's why I've as

Re: EGL clients suddenly work!

2014-06-25 Thread Bill Spitzak
I suspect that --enable_gallium_egl for Mesa fixed it, along with some fix in recent Weston or Mesa. On 06/23/2014 07:37 PM, Bill Spitzak wrote: I'm not sure what changed, but the most recent Wayland/Mesa/Weston can now run the clients that require EGL under the X11 compositor on my nVidia X se

Re: [PATCH weston] Require libinput 0.4.0

2014-06-25 Thread Jonas Ådahl
On Wed, Jun 25, 2014 at 09:42:28AM -0700, Andrea Giammarchi wrote: > Not sure this is the right place for this question but weston does not > build when libinput 0.4 is used: > > ./autogen.sh --prefix=$WLD \ > --disable-rpi-compositor \ > --enable-libinput-backend \ > --enable-eg

Re: Comments about adding tablet support to Wayland

2014-06-25 Thread Jason Gerecke
On Wed, Jun 25, 2014 at 12:38 AM, Lyude wrote: > On Wed, 2014-06-25 at 11:06 +0400, Dmitry Kazakov wrote: >> Hi, all! >> >> >> I am a developer from Krita painting application team. We recently did >> quite much work on incorporating better tablet support in Krita. I >> have several comments about

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Bill Spitzak
Reading gmail using a local client works fine, I have done several git am calls using this, after doing save-as to the email. That said, it may be a nice idea to not update the master for weston at the same time the master for libinput is updated. On 06/25/2014 12:02 AM, Lyude wrote: Ah, som

Re: [PATCH weston] Require libinput 0.4.0

2014-06-25 Thread Andrea Giammarchi
Not sure this is the right place for this question but weston does not build when libinput 0.4 is used: ./autogen.sh --prefix=$WLD \ --disable-rpi-compositor \ --enable-libinput-backend \ --enable-egl --with-cairo-glesv2 --enable-wayland-compositor \ --disable-x11-composito

Re: [PATCH] data-device: Clean up the logic in start_drag

2014-06-25 Thread Jason Ekstrand
On Wed, Jun 25, 2014 at 6:16 AM, Pekka Paalanen wrote: > On Tue, 24 Jun 2014 21:23:53 -0700 > Jason Ekstrand wrote: > > > Previoiusly, we had a mess of logic that was repeated with one of the > > repeats negated. Not only was this unnecisaraly confusing, but it > > segfaulted and one of the neg

Re: Candidates for Weston 1.5 stable branch

2014-06-25 Thread Jason Ekstrand
On Wed, Jun 25, 2014 at 8:29 AM, Andrew Wedgbury < andrew.wedgb...@realvnc.com> wrote: > Hi Pekka, > > Would there be any chance of including this patch of mine: > http://lists.freedesktop.org/archives/wayland-devel/2014-May/014562.html > It adds a weston.ini config key for setting the command to

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Andrea Giammarchi
Wow, I couldn't expect all these detailed replies and yes, I haven't seen this way to deal with patches yet but thank you all for the help, I'll figure out following your instructions and now I know what to google too :-) Best Regards On Wed, Jun 25, 2014 at 5:56 AM, Jasper St. Pierre wrote: >

Re: Candidates for Weston 1.5 stable branch

2014-06-25 Thread Andrew Wedgbury
Hi Pekka, Would there be any chance of including this patch of mine: http://lists.freedesktop.org/archives/wayland-devel/2014-May/014562.html It adds a weston.ini config key for setting the command to run for screen sharing. I guess it needs to go into master first, but Kristian mentioned he w

Re: [PATCH V2] Do not assume 64x64 cursor, added support for other sizes (like in AMD Kaveri, 128x128).

2014-06-25 Thread Alex Deucher
On Wed, Jun 25, 2014 at 10:09 AM, Alvaro Fernando García wrote: > Init cursor size to 64x64 if drmGetCap() fails. > > Use Mesa GBM_BO_USE_CURSOR define (which removes 64x64 restriction) > > Signed-off-by: Alvaro Fernando García Reviewed-by: Alex Deucher > --- > src/compositor-drm.c | 43 +

[PATCH V2] Do not assume 64x64 cursor, added support for other sizes (like in AMD Kaveri, 128x128).

2014-06-25 Thread Alvaro Fernando García
Init cursor size to 64x64 if drmGetCap() fails. Use Mesa GBM_BO_USE_CURSOR define (which removes 64x64 restriction) Signed-off-by: Alvaro Fernando García --- src/compositor-drm.c | 43 --- 1 file changed, 36 insertions(+), 7 deletions(-) diff --git a/src

Candidates for Weston 1.5 stable branch

2014-06-25 Thread Pekka Paalanen
Hi, I'm currently working on top of the stable 1.5 Weston branch, and was picking fixes from master. Below is what I picked that seemed worthwhile for stable: The following changes since commit a35d028d66cdd83a4a08663231dd2504f1b228f9: comp-wayland: use safe foreach when destroying outputs (2

Re: [PATCH 1/3] Do not assume 64x64 cursor, added support for other sizes (like in AMD Kaveri, 128x128).

2014-06-25 Thread Alex Deucher
On Tue, Jun 24, 2014 at 11:29 PM, Alvaro Fernando García wrote: > Signed-off-by: Alvaro Fernando García I think it would be better to just squash this entire patch set into one patch. Alex > --- > src/compositor-drm.c | 35 --- > 1 file changed, 28 insertions(+

Re: [PATCH] Better error message when exec'ing Xwayland fails

2014-06-25 Thread Pekka Paalanen
On Fri, 20 Jun 2014 21:36:54 +0200 Arnout Engelen wrote: > --- > xwayland/launcher.c | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/xwayland/launcher.c b/xwayland/launcher.c > index 70703a4..bf1e17e 100644 > --- a/xwayland/launcher.c > +++ b/xwayland/launcher.c >

Re: [PATCH] data-device: Clean up the logic in start_drag

2014-06-25 Thread Pekka Paalanen
On Tue, 24 Jun 2014 21:23:53 -0700 Jason Ekstrand wrote: > Previoiusly, we had a mess of logic that was repeated with one of the > repeats negated. Not only was this unnecisaraly confusing, but it > segfaulted and one of the negations was wrong. This cleans the whole mess > up and should fix bu

Re: [PATCH weston] shell: fix segfault in fullscreen binding

2014-06-25 Thread Jasper St. Pierre
Well, I removed recommended_output in that patch, because it became unnecessary. The set to NULL makes no sense to me either. You should just be able to do a one-line patch: +shsurf->fullscreen_output = shsurf->output; I don't see any need for anything more fancy. I'd also add a comment alon

Threading in Wayland

2014-06-25 Thread Marek Chalupa
Hi, I was recently discovering/playing with threading in Wayland. Here are some notes and questions I gathered: * display_thread variable in struct wl_display (wayland-client.c) is not used anywhere * pthread_cont_t cond in wl_event_queue is broadcasted/signaled but there's no code waiting on it

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Jasper St. Pierre
On Wed, Jun 25, 2014 at 2:59 AM, Lyude wrote: > On Tue, 2014-06-24 at 23:40 -0700, Andrea Giammarchi wrote: > > Yeah Peter, I know how to apply a patch and no, I don't have any of > > them in my inbox, that's why I've asked what was wrong in my > > process ... right now I'm on Gmail in chrome and

Re: [PATCH] compositor: unmap subsurface views before destroying the subsurfaces

2014-06-25 Thread Pekka Paalanen
On Fri, 13 Jun 2014 18:10:26 +0200 George Kiagiadakis wrote: > This is to avoid recursing into weston_compositor_build_view_list() > and therefore fix crashing when destroying a stack of visible subsurfaces > due to weston_compositor_build_view_list() being called recursively > and corrupting the

Re: [PATCH] tests: add multiple-queues testcases

2014-06-25 Thread Marek Chalupa
I meant to send it in reply-to http://lists.freedesktop.org/archives/wayland-devel/2014-June/015627.html and http://lists.freedesktop.org/archives/wayland-devel/2014-May/015098.html Regards, Marek On 25 June 2014 14:35, Marek Chalupa wrote: > Test if events are going to the right queue and if

[PATCH] tests: add multiple-queues testcases

2014-06-25 Thread Marek Chalupa
Test if events are going to the right queue and if the queue is interrupted from polling when an error to the main queue comes. The last one is failing. --- tests/queue-test.c | 128 + 1 file changed, 128 insertions(+) diff --git a/tests/queue-t

queue-tests

2014-06-25 Thread Marek Chalupa
Hi, I wrote these two testcases and the later one is failing - the thing is that the wl_display_dispatch_queue is not interrupted from polling when the main queue got an error. I suppose this is not the desired behaviour. Could you, please, review the test code if it's correct? Thanks, Marek ___

Re: wl_tablet specification draft

2014-06-25 Thread Pekka Paalanen
On Tue, 24 Jun 2014 21:56:09 -0400 Chandler Paul wrote: > Hello! As you all know I've been working on adding drawing tablet > support to the Wayland protocol. Now that we've added support for > tablets to libinput, the next step is writing the actual protocol that > will be implemented by the com

[PATCH weston-ivi-shell v6 9/9] clients: modify example clients to support ivi-application.xml

2014-06-25 Thread Nobuhiko Tanibata
Signed-off-by: Nobuhiko Tanibata --- Changes for v2, v3 and v4: - nothing. Version number aligned to the first patch Changes for v5: - rebase weston v1.5 branch - remove Macros to enable ivi-application Changes for v6: - the same as v5 Makefile.am | 12 ++-- clients/simpl

[PATCH weston-ivi-shell v6 8/9] ivi-shell: a reference of weston.ini for ivi-shell and ivi-hmi-controller.

2014-06-25 Thread Nobuhiko Tanibata
Signed-off-by: Nobuhiko Tanibata --- Changes for v2: - squash Makefile to this patch Changes for v3 and v4: - nothing. Version number aligned to the first patch Changes for v5: - rebase weston v1.5 branch Changes for v6: - the same as v5 Makefile.am | 13 +-- ivi-shell

[PATCH weston-ivi-shell v6 7/9] data: add reference image files for weston-ivi-shell-user-interface

2014-06-25 Thread Nobuhiko Tanibata
Signed-off-by: Nobuhiko Tanibata --- Changes for v2: - squash Makefile to this patch Changes for v3, v4, and v5: - nothing. Version number aligned to the first patch Changes for v6: - apply review comment from mailing list; Makefile.am. Makefile.am | 14 +- da

[PATCH weston-ivi-shell v6 6/9] clients: a reference implementation of UI client how to use ivi-hmi-controller.

2014-06-25 Thread Nobuhiko Tanibata
This is launched from hmi-controller by launch_hmi_client_process and invoke a client process. The basic flow is as followed, 1/ process invoked 2/ read configuration from weston.ini. 3/ draw png file to surface according to configuration of weston.ini 4/ all parts of UI are ready. request "UI_rea

[PATCH weston-ivi-shell v6 4/9] protocol: ivi hmi controller protocol to set up IVI style UI

2014-06-25 Thread Nobuhiko Tanibata
This protocol realizes following features, - UI ready - changing modes; tiling, side by side, full_screen, and random - Give control a surface; workspace to be controlled by using ivi layout APIs - Display/undisplay a surface; home contains sevaral workspaces to launch application Signed-off-by:

[PATCH weston-ivi-shell v6 2/9] ivi-shell: add the shell plugin for In-Vehicle Infotainment system

2014-06-25 Thread Nobuhiko Tanibata
In-Vehicle Infotainment system traditionally manages surfaces with global identification. A protocol, ivi_application, supports such a feature by implementing a request, ivi_application::surface_creation defined in ivi_application.xml. The ivi-shell explicitly loads ivi-layout.so and a module to a

[PATCH weston-ivi-shell v6 1/9] protocol: add interface ivi_application extension

2014-06-25 Thread Nobuhiko Tanibata
ivi_applicatoin extension creates ivi_surface objects tied to a given wl_surface with a given id. The given id can be used in a shell to identify which application is assigned to a wl_surface and layout the surface wherever the shell wants. ivi_surface objects can be used to receive status of wl_su

Re: [PATCH weston-ivi-shell v5 7/9] data: add reference image files for weston-ivi-shell-user-interface

2014-06-25 Thread Nobuhiko Tanibata
Hi Manuel, Thank you! I will resend my patches. BR, Nobuhiko 2014-06-25 18:48 に Manuel Bachmann さんは書きました: Hello Tanibata-San, I think your forget to include the changes to "Makefile.am" in this series. What is more, as Weston has now a unique "Makefile.am" in the root directory I modified th

Re: mapping of keyboard symbols in linux/input.h that wayland uses

2014-06-25 Thread Pekka Paalanen
On Wed, 28 May 2014 08:15:55 +0530 Rohit Nandan wrote: > I am taking input from the keyboard and handler function give me key press > in the form of symbols in linux/input.h . How to map them to their real > char value. Nothing similar to xlookupstring.Shall I declare them in thier > only? You

Re: [PATCH weston-ivi-shell v5 7/9] data: add reference image files for weston-ivi-shell-user-interface

2014-06-25 Thread Manuel Bachmann
Hello Tanibata-San, I think your forget to include the changes to "Makefile.am" in this series. What is more, as Weston has now a unique "Makefile.am" in the root directory I modified the patch this way : --- a/Makefile.am +++ b/Makefile.am @@ -638,7 +638,19 @@ dist_westondata_DATA =

RE: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Srivardhan
> From: wayland-devel [mailto:wayland-devel-boun...@lists.freedesktop.org] On > Behalf Of Andrea Giammarchi > Sent: Wednesday, June 25, 2014 12:11 PM > To: Peter Hutterer > Cc: Jonas Ådahl; wayland-devel@lists.freedesktop.org > Subject: Re: [ANNOUNCE] libinput 0.4.0 > > Yeah Peter, I know how

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Peter Hutterer
On Wed, Jun 25, 2014 at 02:06:32PM +1000, Peter Hutterer wrote: > A new release of libinput, 0.4, is available. [...] > git tag: 0.4.0 > > http://wayland.freedesktop.org/releases/libinput-0.4.0.tar.xz > MD5: 60969c60e11792fab4ecaa7222f43697 libinput-0.4.0.tar.xz > SHA1: f7638a1e7f1306976211c6

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Silvan Jegen
On Wed, Jun 25, 2014 at 9:02 AM, Lyude wrote: > Ah, something else I forgot to mention: > > git-am requires that the patches be in .mbox format, otherwise it won't > work properly. I don't think there's a way to do this in gmail since the > last time I checked, it can't save e-mails in that format

Re: Comments about adding tablet support to Wayland

2014-06-25 Thread Lyude
On Wed, 2014-06-25 at 11:06 +0400, Dmitry Kazakov wrote: > Hi, all! > > > I am a developer from Krita painting application team. We recently did > quite much work on incorporating better tablet support in Krita. I > have several comments about your proposal of the tablet protocol > (sorry for nor

Re: Comments about adding tablet support to Wayland

2014-06-25 Thread Hans de Goede
Hi, On 06/25/2014 09:06 AM, Dmitry Kazakov wrote: > Hi, all! > > I am a developer from Krita painting application team. We recently did > quite much work on incorporating better tablet support in Krita. I have > several comments about your proposal of the tablet protocol (sorry for nor > replying

Comments about adding tablet support to Wayland

2014-06-25 Thread Dmitry Kazakov
Hi, all! I am a developer from Krita painting application team. We recently did quite much work on incorporating better tablet support in Krita. I have several comments about your proposal of the tablet protocol (sorry for nor replying directly, since I wasn't subscribed to the list before). 1) A

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Lyude
Ah, something else I forgot to mention: git-am requires that the patches be in .mbox format, otherwise it won't work properly. I don't think there's a way to do this in gmail since the last time I checked, it can't save e-mails in that format. To actually take advantage of this sort of thing you'd

Re: [ANNOUNCE] libinput 0.4.0

2014-06-25 Thread Lyude
On Tue, 2014-06-24 at 23:40 -0700, Andrea Giammarchi wrote: > Yeah Peter, I know how to apply a patch and no, I don't have any of > them in my inbox, that's why I've asked what was wrong in my > process ... right now I'm on Gmail in chrome and wayland-devel channel > and zero attachment whatsoever.