configure.ac | 2 +- doc/publican/sources/Book_Info.xml | 2 +- protocol/wayland.xml | 2 +- src/wayland-server.c | 1 + tests/list-test.c | 13 +++++++++++++ 5 files changed, 17 insertions(+), 3 deletions(-)
New commits: commit a4aba37ba178f8400cfdc2b595005bb76d6af2c0 Author: Bryce Harrington <br...@osg.samsung.com> Date: Tue Sep 13 12:13:57 2016 -0700 configure.ac: bump to version 1.11.94 for the RC2 release diff --git a/configure.ac b/configure.ac index 429a590..11e42c4 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.64]) m4_define([wayland_major_version], [1]) m4_define([wayland_minor_version], [11]) -m4_define([wayland_micro_version], [93]) +m4_define([wayland_micro_version], [94]) m4_define([wayland_version], [wayland_major_version.wayland_minor_version.wayland_micro_version]) commit 9afa4bfb7b1e8abfb798e25fc28545e60673ed50 Author: Yong Bakos <yba...@humanoriented.com> Date: Wed Aug 17 16:08:17 2016 -0700 server: Document display parameter Signed-off-by: Yong Bakos <yba...@humanoriented.com> Reviewed-by: Bryce Harrington <br...@osg.samsung.com> Reviewed-by: Pekka Paalanen <pekka.paala...@collabora.co.uk> diff --git a/src/wayland-server.c b/src/wayland-server.c index 9ecfd97..9d7d9c1 100644 --- a/src/wayland-server.c +++ b/src/wayland-server.c @@ -1528,6 +1528,7 @@ wl_log_set_handler_server(wl_log_func_t handler) * * \a errno is set on error. * + * \param display The display object * \param func The function to call to log a new protocol message * \param user_data The user data pointer to pass to \a func * commit 2c8fc3eae27c9c0b02694c60d46886ebf47cc83c Author: Yong Bakos <yba...@humanoriented.com> Date: Wed Aug 17 16:03:31 2016 -0700 protocol: Replace '#defines' with 'macros' The use of # within a description causes the documentation generator to mistake C syntax with a documentation link. Remove the # from the documentation, suppressing the warning. Signed-off-by: Yong Bakos <yba...@humanoriented.com> Reviewed-by: Bryce Harrington <br...@osg.samsung.com> Reviewed-by: Pekka Paalanen <pekka.paala...@collabora.co.uk> diff --git a/protocol/wayland.xml b/protocol/wayland.xml index 3f2d967..6c6d078 100644 --- a/protocol/wayland.xml +++ b/protocol/wayland.xml @@ -287,7 +287,7 @@ formats are optional and may not be supported by the particular renderer in use. - The drm format codes match the #defines in drm_fourcc.h. + The drm format codes match the macros defined in drm_fourcc.h. The formats actually supported by the compositor will be reported by the format event. </description> commit da58173cfe047864d073ba078e0b8db982a31b12 Author: Bryce Harrington <br...@osg.samsung.com> Date: Tue Sep 6 14:22:03 2016 -0700 configure.ac: bump to version 1.11.93 for the RC1 release diff --git a/configure.ac b/configure.ac index 5f416a1..429a590 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.64]) m4_define([wayland_major_version], [1]) m4_define([wayland_minor_version], [11]) -m4_define([wayland_micro_version], [92]) +m4_define([wayland_micro_version], [93]) m4_define([wayland_version], [wayland_major_version.wayland_minor_version.wayland_micro_version]) commit 2bdbb741e2ac0ec9ecc564463a59b3ef8f499f6a Author: Yong Bakos <yba...@humanoriented.com> Date: Sun Sep 4 13:23:05 2016 -0700 tests: Add test for wl_list_length list-test.c did not cover wl_list_length, so add one test that specifically tests this method. Signed-off-by: Yong Bakos <yba...@humanoriented.com> Reviewed-by: Eric Engestrom <eric.engest...@imgtec.com> Reviewed-by: Pekka Paalanen <pekka.paala...@collabora.co.uk> diff --git a/tests/list-test.c b/tests/list-test.c index 21ca4ec..0752618 100644 --- a/tests/list-test.c +++ b/tests/list-test.c @@ -57,6 +57,19 @@ TEST(list_insert) assert(e.link.prev == &list); } +TEST(list_length) +{ + struct wl_list list; + struct element e; + + wl_list_init(&list); + assert(wl_list_length(&list) == 0); + wl_list_insert(&list, &e.link); + assert(wl_list_length(&list) == 1); + wl_list_remove(&e.link); + assert(wl_list_length(&list) == 0); +} + TEST(list_iterator) { struct wl_list list; commit d9ef882139e6178edf68c3fce147afdb3b57b894 Author: Yong Bakos <yba...@humanoriented.com> Date: Sun Sep 4 10:15:49 2016 -0700 doc: Correct docbook title The docbook title was "The Wayland display server," which is inaccurate. Change the title to "The Wayland Protocol". Signed-off-by: Yong Bakos <yba...@humanoriented.com> Reviewed-by: Pekka Paalanen <pekka.paala...@collabora.co.uk> diff --git a/doc/publican/sources/Book_Info.xml b/doc/publican/sources/Book_Info.xml index e9e5ff0..0b7bf07 100644 --- a/doc/publican/sources/Book_Info.xml +++ b/doc/publican/sources/Book_Info.xml @@ -5,7 +5,7 @@ ]> <bookinfo id="book-Wayland-Wayland"> <title>Wayland</title> - <subtitle>The Wayland display server</subtitle> + <subtitle>The Wayland Protocol</subtitle> <productname>Documentation</productname> <productnumber>0.1</productnumber> <edition>1</edition> commit 2d7b34e2ee7627e125496c8816f656f485fcfc81 Author: Bryce Harrington <br...@osg.samsung.com> Date: Tue Aug 30 11:40:23 2016 -0700 configure.ac: bump to version 1.11.92 for the beta release diff --git a/configure.ac b/configure.ac index 109b758..5f416a1 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.64]) m4_define([wayland_major_version], [1]) m4_define([wayland_minor_version], [11]) -m4_define([wayland_micro_version], [91]) +m4_define([wayland_micro_version], [92]) m4_define([wayland_version], [wayland_major_version.wayland_minor_version.wayland_micro_version])