[PATCH wayland v2] Contributing: explain Patchwork

2015-09-21 Thread Pekka Paalanen
From: Pekka Paalanen Add general guidelines for using Patchwork, as we heavily rely on it nowadays. v2: - mention also Xwayland and libinput patch management - reword "if not found in Patchwork" - reword "Not applicable" - mention pwclient Cc: Bryce Harrington Cc: Olivier Fourdan Signed-off-

Re: [PATCH wayland] Contributing: explain Patchwork

2015-09-21 Thread Pekka Paalanen
On Mon, 21 Sep 2015 12:31:21 -0700 Bryce Harrington wrote: > On Mon, Sep 21, 2015 at 10:41:59AM +0300, Pekka Paalanen wrote: > > From: Pekka Paalanen > > > > Add general guidelines for using Patchwork, as we heavily rely on it > > nowadays. > > > > Signed-off-by: Pekka Paalanen > > --- > > d

[ANNOUNCE] weston 1.9.0

2015-09-21 Thread Bryce Harrington
This is the official release of Weston 1.9. This release of Weston updates the license text, just as is done for Wayland 1.9. MIT has released software under several slightly different licenses, including the old 'X11 License' or 'MIT License'. X.org used the X11 License originally but now prefe

[ANNOUNCE] wayland 1.9.0

2015-09-21 Thread Bryce Harrington
This is the official release of Wayland 1.9. This release brings fixes and modest refactoring compared with 1.8.0. One notable change for this release of Wayland is an update of the license text. MIT has released software under several slightly different licenses, including the old 'X11 License

Re: [PATCH][weston] ivi-shell: initialize all fields in create_layout_transition

2015-09-21 Thread John-John Tedro
On Mon, Sep 21, 2015 at 09:33:29AM -0700, Bill Spitzak wrote: >=20 > Maybe this should be using xzalloc, that seems to be the standard method = in > Weston Yikes. It looks like create_move_resize_view_transition (and others?) returns NULL on allocation failures, which is fed unchecked into layout

Re: [PATCH][weston 1/2] ivi-layout-transition: Change layout_transition_register return type

2015-09-21 Thread Bryce Harrington
On Mon, Sep 21, 2015 at 11:53:07PM +, Tanibata, Nobuhiko (ADITJ/SWG) wrote: > > > > -Original Message- > > From: wayland-devel [mailto:wayland-devel-boun...@lists.freedesktop.org] On > > Behalf Of Bryce Harrington > > Sent: Tuesday, September 22, 2015 7:31 AM > > To: Lucas Tanure > >

RE: [PATCH][weston 1/2] ivi-layout-transition: Change layout_transition_register return type

2015-09-21 Thread Tanibata, Nobuhiko (ADITJ/SWG)
> -Original Message- > From: wayland-devel [mailto:wayland-devel-boun...@lists.freedesktop.org] On > Behalf Of Bryce Harrington > Sent: Tuesday, September 22, 2015 7:31 AM > To: Lucas Tanure > Cc: wayland-devel@lists.freedesktop.org > Subject: Re: [PATCH][weston 1/2] ivi-layout-transition

Re: [PATCH][weston 1/2] ivi-layout-transition: Change layout_transition_register return type

2015-09-21 Thread Bryce Harrington
Hi Lucas, Thanks for all the IVI patches! I've only spot checked them but they all look like good solid patches worth landing. The only reason I've been holding off is because we're literally on the eve of the release, and this week I'm trying to restrain myself just to landing critical bug fixe

[PATCH] weston_wm: Implement _NET_ACTIVE_WINDOW

2015-09-21 Thread Benoit Gschwind
--- xwayland/window-manager.c | 21 + xwayland/xwayland.h | 2 ++ 2 files changed, 23 insertions(+) diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c index f9544d8..254bd45 100644 --- a/xwayland/window-manager.c +++ b/xwayland/window-manager.c @@ -163,6

Re: [PATCH wayland] Contributing: explain Patchwork

2015-09-21 Thread Bryce Harrington
On Mon, Sep 21, 2015 at 10:41:59AM +0300, Pekka Paalanen wrote: > From: Pekka Paalanen > > Add general guidelines for using Patchwork, as we heavily rely on it > nowadays. > > Signed-off-by: Pekka Paalanen > --- > doc/Contributing | 59 > +++

[pull request] xwayland fixes

2015-09-21 Thread Olivier Fourdan
Hi Adam, Could you please pull from the following git tree some fixes for Xwayland (some are quite old). Cheers, Olivier --- The following changes since commit 58d54ee82dfae5486bc09d04d2760c922d54d631: glamor: explicitly check for GL_OES_EGL_image (2015-09-17 11:03:15 -0400) are available

[PATCH][weston 2/2] ivi-layout-transition: Fix potential leak of memory pointed to by transition

2015-09-21 Thread Lucas Tanure
Check if layout_transition_register worked, otherwise destroy transition Signed-off-by: Lucas Tanure --- ivi-shell/ivi-layout-transition.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ivi-shell/ivi-layout-transition.c b/ivi-shell/ivi-layout-transition.c index 8d477b4..b

[PATCH][weston 1/2] ivi-layout-transition: Change layout_transition_register return type

2015-09-21 Thread Lucas Tanure
layout_transition_register could not work and we need to free trans in the calling function. Signed-off-by: Lucas Tanure --- ivi-shell/ivi-layout-transition.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ivi-shell/ivi-layout-transition.c b/ivi-shell/ivi-layout-trans

Re: [PATCH weston] compositor: fix initializing idle timeout at startup

2015-09-21 Thread Bill Spitzak
On Fri, Sep 18, 2015 at 4:14 AM, Egor Starkov wrote: > > + if (idle_time < 0) > + weston_config_section_get_int(section, "idle-time", > &idle_time, -1); > + if (idle_time < 0) > + idle_time = 300; /* default idle timeout, in seconds */ > You can just pass

Re: [PATCH][weston] ivi-shell: initialize all fields in create_layout_transition

2015-09-21 Thread Bill Spitzak
On Sat, Sep 19, 2015 at 5:47 PM, John-John Tedro wrote: > create_layout_transition does not initialize is_transition_func. > > This patch initializes it to NULL. > > Signed-off-by: John-John Tedro > --- > ivi-shell/ivi-layout-transition.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a

Re: [PATCH xwayland 1/4] xwayland: Add xwl_touch struct

2015-09-21 Thread Carlos Garnacho
Hey!, On Fri, Sep 18, 2015 at 3:06 PM, Olivier Fourdan wrote: > > Hey Carlos, > > On 27/05/15 18:41, Carlos Garnacho wrote: >> >> This struct holds information about each individual, ongoing touchpoint. >> A list of these is held by the xwl_seat. >> >> Signed-off-by: Carlos Garnacho > > > lgtm >

[PATCH][weston, v2] ivi-layout-transition: Fix potential leak of memory pointed to by transition

2015-09-21 Thread Lucas Tanure
Free transition before return. We don't need to use layout_transition_destroy, because transition was not registered yet. v2: consolidate memory leaks fixes Signed-off-by: Lucas Tanure --- ivi-shell/ivi-layout-transition.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ivi-shell/ivi-lay

[weston] weston-terminal: Add a few nice features

2015-09-21 Thread ahmet acar
Hi.This trivial patch adds 'cwd' (current working directory) and 'command' (run specified command immediatelly after open) features to weston-terminal.So this adds more use cases and flexibility to our terminal. Changes from: commit 90e2d07ec1e6e46136e7b43f427a838f3e5b01ed Author: Bryce Harrington

Re: [PATCH wayland] Contributing: explain Patchwork

2015-09-21 Thread Pekka Paalanen
On Mon, 21 Sep 2015 13:38:35 +0200 Olivier Fourdan wrote: > > Hi Pekka, > > On 21/09/15 09:41, Pekka Paalanen wrote: > > From: Pekka Paalanen > > > > Add general guidelines for using Patchwork, as we heavily rely on it > > nowadays. > > > > Signed-off-by: Pekka Paalanen > > > Maybe you coul

Re: State of Wayland protocol development

2015-09-21 Thread Pekka Paalanen
On Fri, 18 Sep 2015 22:44:16 +0800 Jonas Ådahl wrote: > On Fri, Sep 18, 2015 at 04:35:52PM +0300, Pekka Paalanen wrote: > > On Fri, 18 Sep 2015 15:00:19 +0800 > > Jonas Ådahl wrote: > > > > > Hi, > > > > > > I'd like to start a discussion on the state of how development of Wayland > > > interf

Re: [PATCH wayland] Contributing: explain Patchwork

2015-09-21 Thread Olivier Fourdan
Hi Pekka, On 21/09/15 09:41, Pekka Paalanen wrote: From: Pekka Paalanen Add general guidelines for using Patchwork, as we heavily rely on it nowadays. Signed-off-by: Pekka Paalanen Maybe you could also mention the command line interface for patchwork, pwclient and its configuration file

[PATCH weston] compositor: fix initializing idle timeout at startup

2015-09-21 Thread Egor Starkov
Read and store idle-time setting before calling weston_compositor_create that makes initial setting of idle timeout. Fixes https://bugs.freedesktop.org/show_bug.cgi?id=92030 Signed-off-by: Egor Starkov --- src/compositor.c | 3 ++- src/compositor.h | 2 +- src/main.c | 13 ++---

[PATCH weston] compositor: fix initializing idle timeout at startup

2015-09-21 Thread Egor Starkov
idle-time setting is currently read and set after weston_compositor_create is called. This causes an issue that screen never goes dark after weston started until first input event. Change is fixing that by reading idle-time setting before timer initialization. Egor Starkov (1): compositor: fix i

[PATCH wayland] Contributing: explain Patchwork

2015-09-21 Thread Pekka Paalanen
From: Pekka Paalanen Add general guidelines for using Patchwork, as we heavily rely on it nowadays. Signed-off-by: Pekka Paalanen --- doc/Contributing | 59 1 file changed, 59 insertions(+) diff --git a/doc/Contributing b/doc/Contributi