gnome-software string freeze break request 2

2018-02-28 Thread Kalev Lember
Hi,

I would like to request a string freeze break for a string in the new
repositories dialog in gnome-software. It's a one line change that
changes "_Remove" to "_Remove All", as seen in 
https://www.dropbox.com/s/ou49uxs51k84c5g/special-hotdog-sauce.png?dl=0
mockup.


-- 
Thanks,
Kalev
___
release-team@gnome.org
https://mail.gnome.org/mailman/listinfo/release-team
Release-team lurker? Do NOT participate in discussions.


libepoxy 1.5.0

2018-02-28 Thread Emmanuele Bassi
ChangeLog
=

commit 28ca626eda5c331d94ad96b9e67f0b98177a9dbf
Author: Emmanuele Bassi 
Date:   Sat Feb 24 14:07:18 2018 +

tests: Add EGL test for Epoxy API

We have a few public entry points that we ought to test properly.

Using the EGL API is easier to set up a test case, so let's just do
that.

 test/Makefile.am |   3 ++
 test/egl_epoxy_api.c | 143 +++
 test/meson.build |   1 +
 3 files changed, 147 insertions(+)

commit e1ffd32d83d87c2bd90812f20344f253139d5c1b
Author: Emmanuele Bassi 
Date:   Sat Feb 24 14:03:06 2018 +

Support encoding minor versions bigger than 10

The GL version minor numbers haven't hit 10, yet, but if they do we're
going to get non-sensical encoded versions when calling
epoxy_gl_version(), like we're getting right now, with the GLSL version
numbers.

If the minor number is larger than the multiplication factor used for
the major number, we should bump up the factor to the next order of
magnitude.

 src/dispatch_common.c | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

commit 1489c20770f882e2cf778190269d4abab5cc018e
Author: Emmanuele Bassi 
Date:   Sat Feb 24 14:01:46 2018 +

meson: Use get_supported_arguments()

Instead of iterating over the list of compiler flags, we should use the
get_supported_arguments() method of the compiler object, which does it
for us — and maybe, in the future, will be optimised to do the checks in
parallel.

 meson.build | 7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

commit 60bb7672c10494aa6521ba3a1579893490a2
Author: Emmanuele Bassi 
Date:   Sat Feb 24 13:39:16 2018 +

Fix epoxy_internal_gl_version()

The glGetString() function takes a GLenum, so we should too.

 src/dispatch_common.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 309142f2443327b9824e49b751e954f1e39db294
Author: Emmanuele Bassi 
Date:   Fri Feb 23 20:07:24 2018 +

ci: Update the version of Meson for Appveyor

We require a newer version than 0.39.1.

 .appveyor.yml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

commit f6d2b1f6adce7ab86f44705889b0fafe6e91ffed
Author: Emmanuele Bassi 
Date:   Fri Feb 23 19:59:48 2018 +

Do not use OPENGL_LIB on Android

When building on Android we end up in the Linux branch of the symbol
loading logic, but the __ANDROID__ conditional does not have the
OPENGL_LIB symbol defined, and that breaks the build.

Closes: #152

 src/dispatch_common.c | 2 ++
 1 file changed, 2 insertions(+)

commit 158ce2bc816097adff5a9e2506b42a788b47c631
Author: Emmanuele Bassi 
Date:   Fri Feb 23 16:56:52 2018 +

Document epoxy_set_resolver_failure_handler()

 src/dispatch_common.c | 7 +++
 1 file changed, 7 insertions(+)

commit d8726f265e53ce6a1d5f11a1d261e2f8957f7c62
Author: Emmanuele Bassi 
Date:   Fri Feb 23 16:46:55 2018 +

Add epoxy_glsl_version()

Epoxy should provide a function that returns the version of the GL
shading language in use, in the same vein as it allows to get the
version of GL.

Closes: #145

 include/epoxy/gl.h|  1 +
 src/dispatch_common.c | 33 +
 2 files changed, 30 insertions(+), 4 deletions(-)

commit a7c3178f86afa016ddeed8ebbb668ec308b71122
Author: Emmanuele Bassi 
Date:   Fri Feb 23 15:51:56 2018 +

meson: Rename the configuration options

The `enable-` prefix is an Autotool-ism; idiomatic naming for Meson
projects should just use the name of the option, and rely on the type
to convey meaning, especially because Meson does not have `disable`
aliases that avoid the explicit `enable-foo=no` cases.

 .travis.yml   | 5 +++--
 meson.build   | 6 +++---
 meson_options.txt | 6 +++---
 3 files changed, 9 insertions(+), 8 deletions(-)

commit c794dce0a088235344851e81511c6c5a532ec36c
Author: Emmanuele Bassi 
Date:   Fri Feb 23 15:48:44 2018 +

docs: Update the supported GL version to 4.6

 README.md | 2 +-
 src/dispatch_common.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

commit ce8cbdbe064f5fd7f3e78b6349fa86604e6189d7
Author: Emmanuele Bassi 
Date:   Fri Feb 23 15:44:50 2018 +

Allow building Epoxy without X11

Epoxy can be compiled with GLX and X11 native resources on EGL. We can
disable the former, but the latter is always built in when enabling EGL
support.

Some platforms do not support X11 at all, so we need a way to disable
X11 when configuring Epoxy.

 configure.ac  | 27 +--
 meson.build   |  9 +
 meson_options.txt |  4