Re: [PATCH libinput] doc: specify the https path for mathjax

2016-09-13 Thread Yong Bakos
On Sep 13, 2016, at 5:23 PM, Peter Hutterer wrote: > > freedesktop.org always serves https for the documentation. if Mathjax is > pulled in from http, browsers reject it [1] > > Let's take the default doxygen value but just add the https to it. In the > future we

[PATCH libinput] udev: add the hwdb_parser.py test from systemd

2016-09-13 Thread Peter Hutterer
upstream for this file lives in systemd, any changes to the actual parser should flow back there. libinput's matches are fairly simple. We have the various LIBINPUT_MODEL_ tags that just take a "1" and the two attributes that are dimensions. Signed-off-by: Peter Hutterer

[PATCH libinput] doc: specify the https path for mathjax

2016-09-13 Thread Peter Hutterer
freedesktop.org always serves https for the documentation. if Mathjax is pulled in from http, browsers reject it [1] Let's take the default doxygen value but just add the https to it. In the future we should just ship a copy of mathjax with our documentation. [1]

Re: [wayland] client: remove duplicate wl_event_queue_init

2016-09-13 Thread Murray Calavera
I can't read, ignore this. Sorry. On 13/09/2016, Murray Calavera wrote: > Signed-off-by: Murray Calavera > --- > src/wayland-client.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/src/wayland-client.c b/src/wayland-client.c >

[wayland] client: remove duplicate wl_event_queue_init

2016-09-13 Thread Murray Calavera
Signed-off-by: Murray Calavera --- src/wayland-client.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wayland-client.c b/src/wayland-client.c index 03c087a..c995a09 100644 --- a/src/wayland-client.c +++ b/src/wayland-client.c @@ -932,7 +932,6 @@

[ANNOUNCE] weston 1.11.94

2016-09-13 Thread Bryce Harrington
This is another release candidate for weston 1.12, requested to give the libweston-desktop work another week to more fully stabilize. 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

[ANNOUNCE] wayland 1.11.94

2016-09-13 Thread Bryce Harrington
This is another release candidate for 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

Re: [PATCH weston 06/14 v3] weston: Port headless backend to new output handling API

2016-09-13 Thread Pekka Paalanen
On Thu, 18 Aug 2016 18:42:34 +0200 Armin Krezović wrote: > This is a complete port of the headless backend that > uses recently added output handling API for output > configuration. > > - Output can be configured at runtime by passing the > necessary configuration

Re: [PATCH] libweston-desktop: update client state when its size was already set

2016-09-13 Thread Arnaud Vrac
On Mon, Sep 12, 2016 at 5:22 PM, Arnaud Vrac wrote: > From: Arnaud Vrac > > The shell can request a specific size via a configure event when > toggling fullscreen or maximizing the client. However, if the client > already has the requested size, the client

Re: [PATCH weston] libweston-desktop: Fix configure event for already well-sized surfaces

2016-09-13 Thread Arnaud Vrac
On Tue, Sep 13, 2016 at 10:05 AM, Quentin Glidic < sardemff7+wayl...@sardemff7.net> wrote: > From: Quentin Glidic > > Even if the surface size is already correct, we need to store the > configured size in case some other state change triggers a configure > event. > >

Re: [PATCH weston 05/14 v2] weston: Port fbdev backend to new output handling API

2016-09-13 Thread Pekka Paalanen
On Thu, 18 Aug 2016 18:42:33 +0200 Armin Krezović wrote: > This is a complete port of the fbdev backend that uses > recently added output handling API for output > configuration. > > It is required that the scale and transform values are > set using the previously

Re: [PATCH wayland] server: Document display parameter

2016-09-13 Thread Pekka Paalanen
On Mon, 29 Aug 2016 17:26:52 -0700 Bryce Harrington wrote: > On Wed, Aug 17, 2016 at 04:08:17PM -0700, Yong Bakos wrote: > > From: Yong Bakos > > > > Signed-off-by: Yong Bakos > > Reviewed-by: Bryce Harrington

Re: [PATCH wayland 1/2] protocol: Replace '#defines' with 'macros'

2016-09-13 Thread Pekka Paalanen
On Wed, 17 Aug 2016 16:36:21 -0700 Bryce Harrington wrote: > On Wed, Aug 17, 2016 at 04:03:31PM -0700, Yong Bakos wrote: > > From: Yong Bakos > > > > The use of # within a description causes the documentation generator > > to mistake C syntax

Re: [PATCH weston 04/14 v3] weston: Port DRM backend to new output handling API

2016-09-13 Thread Silvan Jegen
Hi Found a few typos mentioned below. On Thu, Aug 18, 2016 at 6:42 PM, Armin Krezović wrote: > This is a complete port of the DRM backend that uses > recently added output handling API for output *the* recently added [...] > configuration. > > Output can be

Re: [PATCH weston 04/14 v3] weston: Port DRM backend to new output handling API

2016-09-13 Thread Pekka Paalanen
On Thu, 18 Aug 2016 18:42:32 +0200 Armin Krezović wrote: > This is a complete port of the DRM backend that uses > recently added output handling API for output > configuration. > > Output can be configured at runtime by passing the > necessary configuration parameters,

Re: [REQUEST] weston 1.12 rc2

2016-09-13 Thread Pekka Paalanen
On Mon, 12 Sep 2016 16:38:37 -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

[PATCH weston] libweston-desktop: Fix configure event for already well-sized surfaces

2016-09-13 Thread Quentin Glidic
From: Quentin Glidic Even if the surface size is already correct, we need to store the configured size in case some other state change triggers a configure event. Signed-off-by: Quentin Glidic --- libweston-desktop/wl-shell.c | 4