[ANNOUNCE] weston 1.11.1

2016-09-20 Thread Bryce Harrington
This is a bugfix point release for the 1.11 series, containing half a dozen fixes to minor issues. Arnaud Vrac (1): fullscreen-shell: avoid access to freed data Benoit Gschwind (1): compositor-x11: fix title overflow in x11_backend_create_output Bryce Harrington (1):

[ANNOUNCE] wayland 1.11.1

2016-09-20 Thread Bryce Harrington
This is a point release for the 1.11 series, backporting a few minor fixes from the 1.12 release. Bryce Harrington (2): scanner: Fix reported executable name to 'wayland-scanner' configure.ac: bump to version 1.11.1 for the point release Yong Bakos (2): doc: Correct

[ANNOUNCE] weston 1.12.0

2016-09-20 Thread Bryce Harrington
Welcome to the official release of Weston 1.12. Weston's internal code has been restructured into a new software library, libweston. This is intended for use by other compositor efforts that want to more easily utilize Weston's internal functionalities. Weston's own compositor is now a user of

[ANNOUNCE] wayland 1.12.0

2016-09-20 Thread Bryce Harrington
This is the official release of Wayland 1.12. Here is a brief run-down of a few of the main changes since 1.11. The core protocol documentation has received numerous refinements to improve its clarity and consistency. Along with this, many blank areas of the protocol documentation have been

Re: [REQUEST] weston 1.12 rc2

2016-09-20 Thread Bryce Harrington
On Mon, Sep 12, 2016 at 04:38:37PM -0700, Bryce Harrington wrote: > On Mon, Sep 12, 2016 at 09:33:12PM +0200, Quentin Glidic wrote: > > Hi, > > > > With the libweston-desktop work, several sneaky bugs and regressions > > went in. We are still discovering some of them, and I think we > > should do

Re: [PATCH wayland v4] util: Document wl_list methods

2016-09-20 Thread Pekka Paalanen
On Tue, 6 Sep 2016 06:28:19 -0700 Yong Bakos wrote: > From: Yong Bakos > > Add doxygen comment blocks to all wl_list methods. > > Signed-off-by: Yong Bakos > --- > v4: Fix variable name in sample code. (pq) >

Re: [PATCH wayland 4/4] array-test: Include wayland-util.h and simplify init test

2016-09-20 Thread Pekka Paalanen
On Fri, 16 Sep 2016 15:37:39 -0700 Yong Bakos wrote: > From: Yong Bakos > > Include wayland-util.h instead of wayland-private.h, because that's where > wl_array is and nothing in wayland-private.h is required. > > Remove the useless repeated

Re: [PATCH wayland 2/4] wl_array: Set data to null after free

2016-09-20 Thread Pekka Paalanen
On Mon, 19 Sep 2016 12:08:21 +0100 Eric Engestrom wrote: > On Mon, Sep 19, 2016 at 11:59:03AM +0100, Eric Engestrom wrote: > > On Fri, Sep 16, 2016 at 03:37:37PM -0700, Yong Bakos wrote: > > > From: Yong Bakos > > > > > > Explicitly set

Re: [PATCH wayland 1/4] util: Document wl_array

2016-09-20 Thread Pekka Paalanen
On Fri, 16 Sep 2016 15:37:36 -0700 Yong Bakos wrote: > From: Yong Bakos > > Add doxygen comments for wl_array and its methods. > > Signed-off-by: Yong Bakos > --- > src/wayland-util.h | 66 >

Re: [PATCH wayland 3/4] tests: Test wl_array_release

2016-09-20 Thread Pekka Paalanen
On Fri, 16 Sep 2016 15:37:38 -0700 Yong Bakos wrote: > From: Yong Bakos > > array-test.c did not cover wl_array_release, so add one test that specifically > tests this method. > > Signed-off-by: Yong Bakos > --- >