From 4b60812aad6ba998e6f46927dbdd375362c39da0eae9a79b5a37b051d30ba9e3 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Wed, 22 Feb 2017 20:41:15 +0000 Subject: [PATCH 1/7] Accepting request 459860 from GNOME:Next scripted push OBS-URL: https://build.opensuse.org/request/show/459860 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=288 --- SLEClassicExt.js | 16 +++++++- gnome-shell-3.22.3.tar.xz | 3 -- gnome-shell-3.23.90.tar.xz | 3 ++ gnome-shell.changes | 83 ++++++++++++++++++++++++++++++++++++++ gnome-shell.spec | 13 +++--- 5 files changed, 107 insertions(+), 11 deletions(-) delete mode 100644 gnome-shell-3.22.3.tar.xz create mode 100644 gnome-shell-3.23.90.tar.xz diff --git a/SLEClassicExt.js b/SLEClassicExt.js index c75fe96..eaafcc2 100644 --- a/SLEClassicExt.js +++ b/SLEClassicExt.js @@ -112,13 +112,25 @@ function toggleAppMenu() { // treated as true by XSettings const showAppMenuKey = 'Gtk/ShellShowsAppMenu'; const showAppMenuSLESetKey = 'Gtk/ShellShowsAppMenu/SLESet'; + // NOTE double `unpack` is needed as 'a{sv}' construction would wrap the value + // in an extra Variant container. let showAppMenuP = valueObj[showAppMenuKey] - ? valueObj[showAppMenuKey].unpack() + ? valueObj[showAppMenuKey].unpack().unpack() : 1; let showAppMenuSLESet = valueObj[showAppMenuSLESetKey] - ? valueObj[showAppMenuSLESetKey].unpack() + ? valueObj[showAppMenuSLESetKey].unpack().unpack() : 0; + // NOTE extra check to make sure `showAppMenuP` and `showAppMenuSLESet` are + // numbers. ('v' can be many other types and it's possible the user sets so) + // The fallback value is the same as above defaults. + if (typeof showAppMenuP !== 'number') { + showAppMenuP = 1; + } + if (typeof showAppMenuSLESet !== 'number') { + showAppMenuSLESet = 0; + } + // NOTE: In SLE Classic mode, if app menu is set to shown, hide it and set a // special flag to mark this change for restoring. if (isSLEClassicModeGlobal() && showAppMenuP) { diff --git a/gnome-shell-3.22.3.tar.xz b/gnome-shell-3.22.3.tar.xz deleted file mode 100644 index a2be393..0000000 --- a/gnome-shell-3.22.3.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d1e6bd80ddd1fef92d80b518d4dbeffa296e8f003402551b8c37c42744b7d42f -size 1952576 diff --git a/gnome-shell-3.23.90.tar.xz b/gnome-shell-3.23.90.tar.xz new file mode 100644 index 0000000..a3f53f7 --- /dev/null +++ b/gnome-shell-3.23.90.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ccb1fae1b0f2c9ca7ec4d1bb60cc1e1f1229c09863d0128e7b07c3bc32a3ac9 +size 1958264 diff --git a/gnome-shell.changes b/gnome-shell.changes index f9e6c06..9e899e8 100644 --- a/gnome-shell.changes +++ b/gnome-shell.changes @@ -1,3 +1,80 @@ +------------------------------------------------------------------- +Fri Feb 17 10:44:31 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.23.90: + + Handle Ctrl+Q and Ctrl+W in portal window (bgo#764133). + + Allow to scroll through ibus candidates with mouse + (bgo#776032). + + Reload apps on .desktop file content changes (bgo#773636). + + Use private data/cache directories in portal helper + (bgo#775639). + + Fix subsurfaces not showing up in previews (bgo#756715). + + Fix theme node transitions (bgo#778145). + + Update pad (o)leds on mode switches (bgo#776543). + + Add security indicators to defend against malicious portals + (bgo#749197). + + Don't allow type ahead at the login screen (bgo#766139). + + Don't fail to load because of TLS errors (bgo#778253). + + Ensure the network lists remains sorted on rename (bgo#778686). + + Toggle power-off/suspend button on long-press (bgo#721173). + + Add "kill-switch" for user extensions (bgo#778664). + + Add night light indicator to status area (bgo#741224). + + Misc. bug fixes: bgo#759793, bgo#735233, bgo#762444, + bgo#777784, bgo#777934, bgo#778158, bgo#776199, bgo#778425, + bgo#771098, bgo#778552, bgo#777317, bgo#778660, bgo#778661, + bgo#745626, bgo#778672. + + Updated translations. +- Replace pkgconfig(libmutter), pkgconfig(mutter-clutter-1.0) and + pkgconfig(mutter-cogl-pango-1.0) with pkgconfig(libmutter-0), + pkgconfig(mutter-clutter-0) and pkgconfig(mutter-cogl-pango-0) + BuildRequires following upstream changes in mutter. + +------------------------------------------------------------------- +Fri Feb 17 10:44:30 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.23.3: + + Fix replacing of GNotifications (bgo#775149). + + Prepare for mozjs31 GJS (bgo#775374). + + Misc. bug fixes: bgo#775507, bgo#776130. + + Updated translations. + +------------------------------------------------------------------- +Fri Feb 17 10:44:29 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.23.2: + + Implement Pad configuration OSD (bgo#771067). + + Show overview on three-finger touchpad pinch (bgo#765937). + + Summarize network sections with too many devices (bgo#773892). + + Always show primary network icon when connected (bgo#773890). + + Fix fullscreen transitions on wayland (bgo#770345). + + Work around portal failures by using a URL without HTPPS + redirect (bgo#769940). + + Fix app view hiding when no usage data is available + (bgo#774381). + + Misc. bug fixes: bgo#773875, bgo#740043, bgo#773893, + bgo#774643, bgo#774805. + + Updated translations. +- Drop + gnome-shell-bgo774805-guard-against-animations-that-dont-load.patch: + Fixed upstream. + +------------------------------------------------------------------- +Fri Feb 17 10:44:28 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.23.1: + + Request periodic scans while WiFi list is open (bgo#767918). + + Include extension UUID in structured log metadata (bgo#770717). + + Line-wrap PAM messages on login screen (bgo#764445). + + Add a way to launch an app on the discrete GPU (bgo#773117). + + Only allow graphs to lift screen shield when locked + (bgo#773328). + + Add reload option to gnome-shell-extension-tool (bgo#772593). + + Update background animations when resuming from suspend + (bgo#773265). + + Misc. bug fixes: bgo#772723, bgo#772287, bgo#756432, + bgo#772386, bgo#772386, bgo#773085, bgo#773634. + + Updated translations. + ------------------------------------------------------------------- Fri Feb 17 10:44:27 UTC 2017 - zaitor@opensuse.org @@ -32,6 +109,12 @@ Fri Nov 11 09:59:26 UTC 2016 - dimstar@opensuse.org + Misc. bug fixes: bgo#773875, bgo#740043, bgo#773893. + Updated translations. +------------------------------------------------------------------- +Tue Nov 1 18:03:33 CST 2016 - cxiong@suse.com + +- Fix SLEClassic Xsettings overrides bug (boo#993341) + + Also add extra check for other rogue types + ------------------------------------------------------------------- Tue Oct 11 09:29:44 UTC 2016 - zaitor@opensuse.org diff --git a/gnome-shell.spec b/gnome-shell.spec index a9a8d5e..095b543 100644 --- a/gnome-shell.spec +++ b/gnome-shell.spec @@ -19,13 +19,13 @@ %global __requires_exclude typelib\\(Meta\\) Name: gnome-shell -Version: 3.22.3 +Version: 3.23.90 Release: 0 Summary: GNOME Shell License: GPL-2.0+ Group: System/GUI/GNOME Url: http://live.gnome.org/GnomeShell -Source: http://download.gnome.org/sources/gnome-shell/3.22/%{name}-%{version}.tar.xz +Source: http://download.gnome.org/sources/gnome-shell/3.23/%{name}-%{version}.tar.xz # SOURCE-FEATURE-SLE SLE-Classic specific core extension file, see bnc#862615 Source1: SLEClassicExt.js # SOURCE-FEATURE-SLE The SLE theme, with icons/background/gnome-shell.css, works with gnome-shell-sle-theme.patch @@ -75,7 +75,7 @@ BuildRequires: pkgconfig(atk-bridge-2.0) BuildRequires: pkgconfig(gcr-base-3) >= 3.7.5 BuildRequires: pkgconfig(gdk-pixbuf-2.0) BuildRequires: pkgconfig(gio-2.0) >= 2.45.3 -BuildRequires: pkgconfig(gjs-1.0) >= 1.39.0 +BuildRequires: pkgconfig(gjs-1.0) >= 1.47.0 BuildRequires: pkgconfig(gnome-bluetooth-1.0) >= 3.9.0 BuildRequires: pkgconfig(gnome-desktop-3.0) >= 3.7.90 BuildRequires: pkgconfig(gnome-keybindings) @@ -90,7 +90,7 @@ BuildRequires: pkgconfig(libcanberra-gtk3) BuildRequires: pkgconfig(libcroco-0.6) >= 0.6.8 BuildRequires: pkgconfig(libedataserver-1.2) >= 3.5.3 BuildRequires: pkgconfig(libgnome-menu-3.0) >= 3.5.3 -BuildRequires: pkgconfig(libmutter) >= 3.22.3 +BuildRequires: pkgconfig(libmutter-0) >= 3.23.90 BuildRequires: pkgconfig(libnm-glib) BuildRequires: pkgconfig(libnm-gtk) >= 0.9.8 BuildRequires: pkgconfig(libnm-util) >= 0.9.8 @@ -100,8 +100,8 @@ BuildRequires: pkgconfig(libsecret-unstable) BuildRequires: pkgconfig(libsoup-2.4) BuildRequires: pkgconfig(libstartup-notification-1.0) >= 0.11 BuildRequires: pkgconfig(libsystemd) -BuildRequires: pkgconfig(mutter-clutter-1.0) >= 1.26.1 -BuildRequires: pkgconfig(mutter-cogl-pango-1.0) +BuildRequires: pkgconfig(mutter-clutter-0) >= 1.26.1 +BuildRequires: pkgconfig(mutter-cogl-pango-0) BuildRequires: pkgconfig(polkit-agent-1) >= 0.100 BuildRequires: pkgconfig(telepathy-glib) >= 0.17.5 BuildRequires: pkgconfig(telepathy-logger-0.2) >= 0.2.4 @@ -267,6 +267,7 @@ rm -rf %{buildroot} %{_datadir}/applications/org.gnome.Shell.desktop %{_datadir}/applications/gnome-shell-extension-prefs.desktop %{_datadir}/applications/org.gnome.Shell.PortalHelper.desktop +%{_datadir}/dbus-1/interfaces/org.gnome.Shell.PadOsd.xml %{_datadir}/dbus-1/interfaces/org.gnome.Shell.Screencast.xml %{_datadir}/dbus-1/interfaces/org.gnome.Shell.Screenshot.xml %{_datadir}/dbus-1/interfaces/org.gnome.ShellSearchProvider.xml From 3f6108d97f4d0926c0d6e26e8c9be0bd5bf70c2972d0215ed23e4f0a67c2cfdd Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Thu, 2 Mar 2017 08:54:01 +0000 Subject: [PATCH 2/7] Accepting request 461646 from GNOME:Next 1 OBS-URL: https://build.opensuse.org/request/show/461646 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=289 --- gnome-shell-3.23.90.tar.xz | 3 --- gnome-shell-3.23.91.tar.xz | 3 +++ gnome-shell.changes | 15 +++++++++++++++ gnome-shell.spec | 8 ++++---- 4 files changed, 22 insertions(+), 7 deletions(-) delete mode 100644 gnome-shell-3.23.90.tar.xz create mode 100644 gnome-shell-3.23.91.tar.xz diff --git a/gnome-shell-3.23.90.tar.xz b/gnome-shell-3.23.90.tar.xz deleted file mode 100644 index a3f53f7..0000000 --- a/gnome-shell-3.23.90.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4ccb1fae1b0f2c9ca7ec4d1bb60cc1e1f1229c09863d0128e7b07c3bc32a3ac9 -size 1958264 diff --git a/gnome-shell-3.23.91.tar.xz b/gnome-shell-3.23.91.tar.xz new file mode 100644 index 0000000..1e6eb58 --- /dev/null +++ b/gnome-shell-3.23.91.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52401ecb15d7979ba7ed328181698c8b84f008094ad2883fcd2244a0140fb15e +size 1975784 diff --git a/gnome-shell.changes b/gnome-shell.changes index 9e899e8..d5a50c3 100644 --- a/gnome-shell.changes +++ b/gnome-shell.changes @@ -1,3 +1,18 @@ +------------------------------------------------------------------- +Wed Mar 1 15:28:00 UTC 2017 - zaitor@opensuse.org + +- Update to version 3.23.91: + + Use the original timestamps for restored notifications + (bgo#766410). + + Add weather information to date+time drop-down (bgo#754031). + + Refine message list layout in date+time drop-down (bgo#775763). + + Make next/prev media controls insensitive when unavailable + (bgo#773884). + + Misc. bug fixes: bgo#772210, bgo#769546, bgo#775799. + + Updated translations. +- Replace gnome-common with libtool BuildRequires followings + upstream changes. + ------------------------------------------------------------------- Fri Feb 17 10:44:31 UTC 2017 - zaitor@opensuse.org diff --git a/gnome-shell.spec b/gnome-shell.spec index 095b543..4c09b6e 100644 --- a/gnome-shell.spec +++ b/gnome-shell.spec @@ -19,7 +19,7 @@ %global __requires_exclude typelib\\(Meta\\) Name: gnome-shell -Version: 3.23.90 +Version: 3.23.91 Release: 0 Summary: GNOME Shell License: GPL-2.0+ @@ -61,11 +61,11 @@ Patch12: gnome-shell-sle-theme.patch Patch1000: gs-sle-classic-ext.patch BuildRequires: docbook-xsl-stylesheets BuildRequires: gcc-c++ +# Needed for patch2 +BuildRequires: libtool %if !0%{?is_opensuse} BuildRequires: translation-update-upstream %endif -# Needed for patch2 -BuildRequires: gnome-common BuildRequires: update-desktop-files BuildRequires: xsltproc BuildRequires: python(abi) >= 3 @@ -90,7 +90,7 @@ BuildRequires: pkgconfig(libcanberra-gtk3) BuildRequires: pkgconfig(libcroco-0.6) >= 0.6.8 BuildRequires: pkgconfig(libedataserver-1.2) >= 3.5.3 BuildRequires: pkgconfig(libgnome-menu-3.0) >= 3.5.3 -BuildRequires: pkgconfig(libmutter-0) >= 3.23.90 +BuildRequires: pkgconfig(libmutter-0) >= 3.23.91 BuildRequires: pkgconfig(libnm-glib) BuildRequires: pkgconfig(libnm-gtk) >= 0.9.8 BuildRequires: pkgconfig(libnm-util) >= 0.9.8 From 2343846cc959ba2d6b363cadee9b261b19ce7c6f6f10ecc317c664b17e545088 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Thu, 2 Mar 2017 18:19:21 +0000 Subject: [PATCH 3/7] Accepting request 461997 from GNOME:Next - Provide dbus(org.freedesktop.Notifications): gnome-shell impplements the Notifications interface. OBS-URL: https://build.opensuse.org/request/show/461997 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=290 --- gnome-shell.changes | 6 ++++++ gnome-shell.spec | 2 ++ 2 files changed, 8 insertions(+) diff --git a/gnome-shell.changes b/gnome-shell.changes index d5a50c3..a76a34c 100644 --- a/gnome-shell.changes +++ b/gnome-shell.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Thu Mar 2 18:01:06 UTC 2017 - dimstar@opensuse.org + +- Provide dbus(org.freedesktop.Notifications): gnome-shell + impplements the Notifications interface. + ------------------------------------------------------------------- Wed Mar 1 15:28:00 UTC 2017 - zaitor@opensuse.org diff --git a/gnome-shell.spec b/gnome-shell.spec index 4c09b6e..ea99717 100644 --- a/gnome-shell.spec +++ b/gnome-shell.spec @@ -136,6 +136,8 @@ Recommends: gnome-shell-search-provider-documents Recommends: NetworkManager-gnome #merged into gnome-shell in 3.19 Obsoletes: gnome-shell-wayland +# gnome-shell implements the dbus interface org.freedesktop.Notifications directly +Provides: dbus(org.freedesktop.Notifications) BuildRoot: %{_tmppath}/%{name}-%{version}-build %glib2_gsettings_schema_requires From 13b6bed9859eadd2bf19ab1422c82b2a973da02c71fd18f55bf1c44b815f5e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Lie?= Date: Fri, 10 Mar 2017 11:56:27 +0000 Subject: [PATCH 4/7] Accepting request 478479 from GNOME:Next Fix typo OBS-URL: https://build.opensuse.org/request/show/478479 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=291 --- gnome-shell.changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnome-shell.changes b/gnome-shell.changes index a76a34c..7a82d6e 100644 --- a/gnome-shell.changes +++ b/gnome-shell.changes @@ -2,7 +2,7 @@ Thu Mar 2 18:01:06 UTC 2017 - dimstar@opensuse.org - Provide dbus(org.freedesktop.Notifications): gnome-shell - impplements the Notifications interface. + implements the Notifications interface. ------------------------------------------------------------------- Wed Mar 1 15:28:00 UTC 2017 - zaitor@opensuse.org From 2a60707fb38f8a993fdbcaea8aa29b39a79b4d5b17114b414f2af8a1e5673e85 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Tue, 14 Mar 2017 18:48:10 +0000 Subject: [PATCH 5/7] Accepting request 479306 from GNOME:Next Update to 3.23.92 OBS-URL: https://build.opensuse.org/request/show/479306 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=292 --- gnome-shell-3.23.91.tar.xz | 3 --- gnome-shell-3.23.92.tar.xz | 3 +++ gnome-shell.changes | 18 ++++++++++++++++++ gnome-shell.spec | 6 ++---- 4 files changed, 23 insertions(+), 7 deletions(-) delete mode 100644 gnome-shell-3.23.91.tar.xz create mode 100644 gnome-shell-3.23.92.tar.xz diff --git a/gnome-shell-3.23.91.tar.xz b/gnome-shell-3.23.91.tar.xz deleted file mode 100644 index 1e6eb58..0000000 --- a/gnome-shell-3.23.91.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:52401ecb15d7979ba7ed328181698c8b84f008094ad2883fcd2244a0140fb15e -size 1975784 diff --git a/gnome-shell-3.23.92.tar.xz b/gnome-shell-3.23.92.tar.xz new file mode 100644 index 0000000..88e9e2c --- /dev/null +++ b/gnome-shell-3.23.92.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ddd8c3c23e10cd9889fa9e379c7aeecbface63803cf606b67794a0e8ca101f4 +size 1964748 diff --git a/gnome-shell.changes b/gnome-shell.changes index 7a82d6e..d72c5df 100644 --- a/gnome-shell.changes +++ b/gnome-shell.changes @@ -1,3 +1,21 @@ +------------------------------------------------------------------- +Tue Mar 14 17:45:21 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.23.92: + + Implement DND to overview on wayland (bgo#765003). + + Make telepathy optional at runtime (bgo#771721, bgo#779878). + + Don't show forecasts for NYC when geoclue gets stuck + (bgo#779898). + + Add bottom edge drag gesture to bring up the OSK (bgo#757712). + + Allow switching between pads in the same group (bgo#779986). + + Ignore showBanners policy for critical notifications + (bgo#779974). + + Misc. bug fixes: bgo#779435, bgo#779819, bgo#779820. + + Updated translations. +- Drop pkgconfig(telepathy-glib) and + pkgconfig(telepathy-logger-0.2) BuildRequires: no longer + required. + ------------------------------------------------------------------- Thu Mar 2 18:01:06 UTC 2017 - dimstar@opensuse.org diff --git a/gnome-shell.spec b/gnome-shell.spec index ea99717..3b162e4 100644 --- a/gnome-shell.spec +++ b/gnome-shell.spec @@ -19,7 +19,7 @@ %global __requires_exclude typelib\\(Meta\\) Name: gnome-shell -Version: 3.23.91 +Version: 3.23.92 Release: 0 Summary: GNOME Shell License: GPL-2.0+ @@ -90,7 +90,7 @@ BuildRequires: pkgconfig(libcanberra-gtk3) BuildRequires: pkgconfig(libcroco-0.6) >= 0.6.8 BuildRequires: pkgconfig(libedataserver-1.2) >= 3.5.3 BuildRequires: pkgconfig(libgnome-menu-3.0) >= 3.5.3 -BuildRequires: pkgconfig(libmutter-0) >= 3.23.91 +BuildRequires: pkgconfig(libmutter-0) >= 3.23.92 BuildRequires: pkgconfig(libnm-glib) BuildRequires: pkgconfig(libnm-gtk) >= 0.9.8 BuildRequires: pkgconfig(libnm-util) >= 0.9.8 @@ -103,8 +103,6 @@ BuildRequires: pkgconfig(libsystemd) BuildRequires: pkgconfig(mutter-clutter-0) >= 1.26.1 BuildRequires: pkgconfig(mutter-cogl-pango-0) BuildRequires: pkgconfig(polkit-agent-1) >= 0.100 -BuildRequires: pkgconfig(telepathy-glib) >= 0.17.5 -BuildRequires: pkgconfig(telepathy-logger-0.2) >= 0.2.4 BuildRequires: pkgconfig(xtst) Requires: gdk-pixbuf-loader-rsvg Requires: gnome-session From 4c34b63d01fd2d130d5ac67bfffab424c3f36dd398110c39b871701ddbce1922 Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Mon, 20 Mar 2017 14:18:05 +0000 Subject: [PATCH 6/7] Accepting request 480888 from home:fcrozat:branches:GNOME:Factory - Drop Recommends on browser plugin, we use supplements now. - Replace Supplements on Firefox with Supplements on Epiphany for browser plugin (bsc#1029915). OBS-URL: https://build.opensuse.org/request/show/480888 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=293 --- gnome-shell.changes | 7 +++++++ gnome-shell.spec | 3 +-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gnome-shell.changes b/gnome-shell.changes index d72c5df..ff23570 100644 --- a/gnome-shell.changes +++ b/gnome-shell.changes @@ -1,3 +1,10 @@ +------------------------------------------------------------------- +Fri Mar 17 14:49:39 UTC 2017 - fcrozat@suse.com + +- Drop Recommends on browser plugin, we use supplements now. +- Replace Supplements on Firefox with Supplements on Epiphany for + browser plugin (bsc#1029915). + ------------------------------------------------------------------- Tue Mar 14 17:45:21 UTC 2017 - dimstar@opensuse.org diff --git a/gnome-shell.spec b/gnome-shell.spec index 3b162e4..efaea93 100644 --- a/gnome-shell.spec +++ b/gnome-shell.spec @@ -124,7 +124,6 @@ Requires: libgdmgreeter1 %endif # Due to now private typelib(Meta) Requires: mutter -Recommends: %{name}-browser-plugin Recommends: %{name}-calendar Recommends: %{name}-lang # The dateTime applet in the panel launches gnome-clocks upon user request @@ -159,7 +158,7 @@ documents, and organizing open windows in GNOME. Summary: GNOME Shell Browser Plugin for the Extensions Repository Group: System/GUI/GNOME Requires: %{name} = %{version} -Supplements: packageand(%{name}:MozillaFirefox) +Supplements: packageand(%{name}:epiphany) %description browser-plugin The GNOME Shell Browser Plugin provides integration with gnome-shell From 7574ac0265991ddd0af9e25ad25c0a23da1e31b92f929717e0ade27df2ae49ea Mon Sep 17 00:00:00 2001 From: Dominique Leuenberger Date: Mon, 20 Mar 2017 20:52:12 +0000 Subject: [PATCH 7/7] Accepting request 481580 from GNOME:Next Update to 3.24.0 OBS-URL: https://build.opensuse.org/request/show/481580 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gnome-shell?expand=0&rev=294 --- gnome-shell-3.23.92.tar.xz | 3 --- gnome-shell-3.24.0.tar.xz | 3 +++ gnome-shell.changes | 6 ++++++ gnome-shell.spec | 4 ++-- 4 files changed, 11 insertions(+), 5 deletions(-) delete mode 100644 gnome-shell-3.23.92.tar.xz create mode 100644 gnome-shell-3.24.0.tar.xz diff --git a/gnome-shell-3.23.92.tar.xz b/gnome-shell-3.23.92.tar.xz deleted file mode 100644 index 88e9e2c..0000000 --- a/gnome-shell-3.23.92.tar.xz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7ddd8c3c23e10cd9889fa9e379c7aeecbface63803cf606b67794a0e8ca101f4 -size 1964748 diff --git a/gnome-shell-3.24.0.tar.xz b/gnome-shell-3.24.0.tar.xz new file mode 100644 index 0000000..65653c8 --- /dev/null +++ b/gnome-shell-3.24.0.tar.xz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86e1bd1ee9f721b25ebcf7edd80f39fafe7342fc0695ba6ddf804152cd45ada7 +size 1980436 diff --git a/gnome-shell.changes b/gnome-shell.changes index ff23570..1db7515 100644 --- a/gnome-shell.changes +++ b/gnome-shell.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Mar 20 20:39:20 UTC 2017 - dimstar@opensuse.org + +- Update to version 3.24.0: + + Updated translations. + ------------------------------------------------------------------- Fri Mar 17 14:49:39 UTC 2017 - fcrozat@suse.com diff --git a/gnome-shell.spec b/gnome-shell.spec index efaea93..fa5cf21 100644 --- a/gnome-shell.spec +++ b/gnome-shell.spec @@ -19,13 +19,13 @@ %global __requires_exclude typelib\\(Meta\\) Name: gnome-shell -Version: 3.23.92 +Version: 3.24.0 Release: 0 Summary: GNOME Shell License: GPL-2.0+ Group: System/GUI/GNOME Url: http://live.gnome.org/GnomeShell -Source: http://download.gnome.org/sources/gnome-shell/3.23/%{name}-%{version}.tar.xz +Source: http://download.gnome.org/sources/gnome-shell/3.24/%{name}-%{version}.tar.xz # SOURCE-FEATURE-SLE SLE-Classic specific core extension file, see bnc#862615 Source1: SLEClassicExt.js # SOURCE-FEATURE-SLE The SLE theme, with icons/background/gnome-shell.css, works with gnome-shell-sle-theme.patch