Wayland 1.12 release cycle

2016-08-09 Thread Bryce Harrington
I'm going to be cutting the alpha in a week. Here's our schedule[1]: - 1.12-alpha around Aug 16th. Major features done by this point. - 1.12-beta around Aug 30th. - 1.12-rc1 around Sep 6th. - 1.12.0 release around Sep 13th. Bryce ___

Re: [PATCH wayland-web] qt5: Updated list of dependencies

2016-08-09 Thread Bryce Harrington
On Tue, Aug 09, 2016 at 10:36:15PM +0200, Samuel Gaist wrote: > qtjsbackend has been removed by: > > http://code.qt.io/cgit/qt/qtwayland.git/commit/?id=1024bb390e72d66887fd37a3af32677d9b73cfaf > > Signed-off-by: Samuel Gaist LGTM, Reviewed-by: Bryce Harrington

Re: [PATCH wayland-web] qt5: fixed bug tracker link

2016-08-09 Thread Bryce Harrington
On Tue, Aug 09, 2016 at 10:36:14PM +0200, Samuel Gaist wrote: > The bug tracker has also moved under qt.io. > > Signed-off-by: Samuel Gaist > --- > qt5.html | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/qt5.html b/qt5.html > index

Re: [PATCH] libweston/compositor-rdp: fix no-break space U+A0 (U8+C2A0)

2016-08-09 Thread Yong Bakos
On Aug 9, 2016, at 11:11 AM, Yann E. MORIN wrote: > > There is a UTF-8 no-break space (U+A0, U8+C2A0) in the definition of > macro NSC_RESET in the case of 1.2.2 <= FreeRDP < 2.0. > > This is causing build issues (\302 is 0xC2, \240 is 0xA0): > >

Re: [PATCH weston v3 2/6] Add API to retrieve the interface name of a wl_resource

2016-08-09 Thread Yong Bakos
Hi Giulio, I missed these Wayland patches due to the weston subject line, so forgive me for the late feedback. Suggestion inline below. > On Aug 9, 2016, at 3:46 AM, Giulio Camuffo wrote: > > Signed-off-by: Giulio Camuffo > Reviewed-by: Jonas

[PATCH wayland-web] qt5: fixed bug tracker link

2016-08-09 Thread Samuel Gaist
The bug tracker has also moved under qt.io. Signed-off-by: Samuel Gaist --- qt5.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt5.html b/qt5.html index 752d63b..8fbb040 100644 --- a/qt5.html +++ b/qt5.html @@ -151,7 +151,7 @@ and for

[PATCH wayland-web] qt5: Updated list of dependencies

2016-08-09 Thread Samuel Gaist
qtjsbackend has been removed by: http://code.qt.io/cgit/qt/qtwayland.git/commit/?id=1024bb390e72d66887fd37a3af32677d9b73cfaf Signed-off-by: Samuel Gaist --- qt5.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qt5.html b/qt5.html index

Re: [PATCH weston v4 5/5] Switch to use safe_strtoint instead of strtol

2016-08-09 Thread Bryce Harrington
On Mon, Aug 08, 2016 at 02:55:14PM +0300, Pekka Paalanen wrote: > On Wed, 3 Aug 2016 17:40:52 -0700 > Bryce Harrington wrote: > > > Reviewed-by: Eric Engestrom > > Signed-off-by: Bryce Harrington > > --- > >

[PATCH] libweston/compositor-rdp: fix no-break space U+A0 (U8+C2A0)

2016-08-09 Thread Yann E. MORIN
There is a UTF-8 no-break space (U+A0, U8+C2A0) in the definition of macro NSC_RESET in the case of 1.2.2 <= FreeRDP < 2.0. This is causing build issues (\302 is 0xC2, \240 is 0xA0): http://autobuild.buildroot.net/results/f49/f49a9cbb7bdc5d9e05dcf0a20bd83f059e234e74/build-end.log Fix that

Re: [PATCH wayland-web] qt5: fix outdated links

2016-08-09 Thread Bryce Harrington
On Tue, Aug 09, 2016 at 06:06:27PM +0200, Samuel Gaist wrote: > gitorious is now a ready-only archive. > > The Qt project code and wiki have moved under qt.io > > Signed-off-by: Samuel Gaist Thanks, pushed and deployed: 7deb6a4..882d470 master -> master > --- >

[PATCH wayland-web] qt5: fix outdated links

2016-08-09 Thread Samuel Gaist
gitorious is now a ready-only archive. The Qt project code and wiki have moved under qt.io Signed-off-by: Samuel Gaist --- qt5.html | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/qt5.html b/qt5.html index 00b0221..752d63b 100644 ---

Re: [PATCH 1/3 v3] wayland-server: Add API to control globals visibility

2016-08-09 Thread Yong Bakos
Hi Olivier, > On Aug 8, 2016, at 1:10 AM, Olivier Fourdan wrote: > > Add a new API to let compositor decide whether or not a wl_global > should be advertised to the clients via wl_registry_bind() or > display_get_registry() > > By using its own filter, the compositor can

Re: [PATCH weston v2 5/6] Add API to retrieve and iterate over the resources list of a client

2016-08-09 Thread Pekka Paalanen
On Tue, 9 Aug 2016 18:03:21 +0800 Jonas Ådahl wrote: > On Tue, Aug 09, 2016 at 11:51:18AM +0200, Giulio Camuffo wrote: > > 2016-08-09 10:17 GMT+02:00 Jonas Ådahl : > > > On Tue, Jul 05, 2016 at 09:51:10AM +0200, Giulio Camuffo wrote: > > >> To complement

[PATCH weston v3 4/6] Add a resource creation signal

2016-08-09 Thread Giulio Camuffo
This change allows to add a resource creation listener to a wl_client, which will be notified when a new resource is created for that client. The alternative would be to have a per wl_display listener, but i think that resources are really client specific objects, so it makes sense to use the

[PATCH weston v3 6/6] Add API to install protocol loggers on the server wl_display

2016-08-09 Thread Giulio Camuffo
The new wl_display_add_protocol_logger allows to set a function as a logger, which will get called when a new request is received or an event is sent. This is akin to setting WAYLAND_DEBUG=1, but more powerful because it can be enabled at run time and allows to show the log e.g. in a UI view. A

[PATCH weston v3 5/6] Add API to retrieve and iterate over the resources list of a client

2016-08-09 Thread Giulio Camuffo
To complement on the new resource created signal, this allows to iterate over the existing resources of a client. Signed-off-by: Giulio Camuffo Reviewed-by: Jonas Ådahl --- v3: - add a new wl_iterator_enum to be used instead of the plain int as the

[PATCH weston v3 3/6] Add API to get the list of connected clients

2016-08-09 Thread Giulio Camuffo
This patch chooses the wl_list_for_each-style of iterating over the clients, instead of using an iterator function, because i think it is easier to use. Signed-off-by: Giulio Camuffo Reviewed-by: Jonas Ådahl --- v3: check that the client in the test

[PATCH weston v3 1/6] server: add listener API for new clients

2016-08-09 Thread Giulio Camuffo
From: Sungjae Park Using display object, Emit a signal if a new client is created. In the server-side, we can get the destroy event of a client, But there is no way to get the created event of it. Of course, we can get the client object from the global registry binding

[PATCH weston v3 2/6] Add API to retrieve the interface name of a wl_resource

2016-08-09 Thread Giulio Camuffo
Signed-off-by: Giulio Camuffo Reviewed-by: Jonas Ådahl --- src/wayland-server-core.h | 2 ++ src/wayland-server.c | 12 2 files changed, 14 insertions(+) diff --git a/src/wayland-server-core.h b/src/wayland-server-core.h index

Re: [PATCH weston v2 5/6] Add API to retrieve and iterate over the resources list of a client

2016-08-09 Thread Jonas Ådahl
On Tue, Aug 09, 2016 at 11:51:18AM +0200, Giulio Camuffo wrote: > 2016-08-09 10:17 GMT+02:00 Jonas Ådahl : > > On Tue, Jul 05, 2016 at 09:51:10AM +0200, Giulio Camuffo wrote: > >> To complement on the new resource created signal, this allows to > >> iterate over the existing

Re: [PATCH weston v2 5/6] Add API to retrieve and iterate over the resources list of a client

2016-08-09 Thread Giulio Camuffo
2016-08-09 10:17 GMT+02:00 Jonas Ådahl : > On Tue, Jul 05, 2016 at 09:51:10AM +0200, Giulio Camuffo wrote: >> To complement on the new resource created signal, this allows to >> iterate over the existing resources of a client. >> >> Signed-off-by: Giulio Camuffo

Re: [PATCH weston v2 6/6] Add API to install protocol loggers on the server wl_display

2016-08-09 Thread Jonas Ådahl
On Tue, Jul 05, 2016 at 09:51:11AM +0200, Giulio Camuffo wrote: > The new wl_display_add_protocol_logger allows to set a function as > a logger, which will get called when a new request is received or an > event is sent. > This is akin to setting WAYLAND_DEBUG=1, but more powerful because it > can

Re: [PATCH weston v2 5/6] Add API to retrieve and iterate over the resources list of a client

2016-08-09 Thread Jonas Ådahl
On Tue, Jul 05, 2016 at 09:51:10AM +0200, Giulio Camuffo wrote: > To complement on the new resource created signal, this allows to > iterate over the existing resources of a client. > > Signed-off-by: Giulio Camuffo I know the break:ability of the iteration was

Re: [PATCH weston v2 4/6] Add a resource creation signal

2016-08-09 Thread Jonas Ådahl
On Tue, Jul 05, 2016 at 09:51:09AM +0200, Giulio Camuffo wrote: > This change allows to add a resource creation listener to a wl_client, > which will be notified when a new resource is created for that client. > The alternative would be to have a per wl_display listener, but i think > that

Re: [PATCH weston v2 2/6] Add API to retrieve the interface name of a wl_resource

2016-08-09 Thread Jonas Ådahl
On Tue, Jul 05, 2016 at 09:51:07AM +0200, Giulio Camuffo wrote: > Signed-off-by: Giulio Camuffo Reviewed-by: Jonas Ådahl > --- > > v2: - return the interface name instead of the interface struct > > src/wayland-server-core.h | 2 ++ >

Re: [PATCH weston v2 3/6] Add API to get the list of connected clients

2016-08-09 Thread Jonas Ådahl
On Tue, Jul 05, 2016 at 09:51:08AM +0200, Giulio Camuffo wrote: > This patch chooses the wl_list_for_each-style of iterating over > the clients, instead of using an iterator function, because i think > it is easier to use. > > Signed-off-by: Giulio Camuffo One comment

Re: [PATCH weston v2 1/6] server: add listener API for new clients

2016-08-09 Thread Jonas Ådahl
On Tue, Jul 05, 2016 at 09:51:06AM +0200, Giulio Camuffo wrote: > From: Sungjae Park > > Using display object, Emit a signal if a new client is created. > > In the server-side, we can get the destroy event of a client, > But there is no way to get the created event of it. >

Re: [PATCH wayland 2/2] scanner: Generate all SINCE_VERSION macros for everyone

2016-08-09 Thread Pekka Paalanen
On Mon, 8 Aug 2016 15:59:37 +0200 Quentin Glidic wrote: > On 08/08/2016 15:45, Pekka Paalanen wrote: > > On Tue, 5 Jul 2016 20:41:50 +0200 > > Quentin Glidic wrote: > > > >> From: Quentin Glidic >