From afbd6aa3658e2782eec307984b3dceae43cc91ee Mon Sep 17 00:00:00 2001 From: Jakub Steiner Date: Fri, 3 Jan 2020 11:28:06 +0100 Subject: icon: fix aliasing / ghosting - stacked objects rendered badly with librsvg on dark backgrounds. --- .../icons/hicolor/scalable/apps/org.gnome.Yelp.svg | 548 ++------------------- 1 file changed, 30 insertions(+), 518 deletions(-) diff --git a/data/icons/hicolor/scalable/apps/org.gnome.Yelp.svg b/data/icons/hicolor/scalable/apps/org.gnome.Yelp.svg index d519387f..012c89d9 100644 --- a/data/icons/hicolor/scalable/apps/org.gnome.Yelp.svg +++ b/data/icons/hicolor/scalable/apps/org.gnome.Yelp.svg @@ -1,520 +1,32 @@ - - - - - Adwaita Icon Template - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - GNOME Design Team - - - - - Adwaita Icon Template - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.1 From 47b0dc96dc0e82102600365b83353d7922f1a94d Mon Sep 17 00:00:00 2001 From: Shaun McCance Date: Sun, 25 Jul 2021 10:54:00 -0400 Subject: Add temporary option to build against webkit2gtk-4.0 --- configure.ac | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index f6d5a402..3cc22de8 100644 --- a/configure.ac +++ b/configure.ac @@ -22,6 +22,15 @@ AC_PROG_LN_S GLIB_GSETTINGS APPSTREAM_XML +# Release team wants WebKitGTK 4.1 for the GNOME 41 release. +# Shaun doesn't have a build environment with that yet. +# Get rid of this option when that stops being true. +AC_ARG_WITH([webkit2gtk-4-0], + AS_HELP_STRING([--with-webkit2gtk-4-0], + [Build against webkit2gtk-4.0 instead of webkit2gtk-4.1]), + [webkitdep="webkit2gtk-4.0 >= 2.19.2";webextdep="webkit2gtk-web-extension-4.0 >= 2.7.2"], + [webkitdep="webkit2gtk-4.1";webextdep="webkit2gtk-web-extension-4.1"]) + # Library dependecies LT_LIB_M PKG_CHECK_MODULES(YELP, @@ -34,7 +43,7 @@ PKG_CHECK_MODULES(YELP, libxslt >= 1.1.4 libexslt >= 0.8.1 sqlite3 - webkit2gtk-4.1 + $webkitdep yelp-xsl >= 3.27.1 ]) AC_SUBST([YELP_CFLAGS]) @@ -45,7 +54,7 @@ AC_SUBST([YELP_LIBS]) LT_PREREQ([2.2.6]) LT_INIT -PKG_CHECK_MODULES([YELP_EXTENSION], [webkit2gtk-web-extension-4.1]) +PKG_CHECK_MODULES([YELP_EXTENSION], [$webextdep]) AC_SUBST(YELP_EXTENSION_CFLAGS) AC_SUBST(YELP_EXTENSION_LIBS) -- cgit v1.2.1