diff -Nru gnome-shell-extension-remove-dropdown-arrows-11/debian/changelog gnome-shell-extension-remove-dropdown-arrows-13/debian/changelog --- gnome-shell-extension-remove-dropdown-arrows-11/debian/changelog 2019-01-31 09:22:52.000000000 +0000 +++ gnome-shell-extension-remove-dropdown-arrows-13/debian/changelog 2019-09-20 10:14:32.000000000 +0000 @@ -1,6 +1,22 @@ +gnome-shell-extension-remove-dropdown-arrows (13-1) unstable; urgency=medium + + * New upstream release + + -- Jonathan Carter Fri, 20 Sep 2019 10:14:32 +0000 + +gnome-shell-extension-remove-dropdown-arrows (12-1) unstable; urgency=medium + + * New upstream release + * Update standards version to 4.4.0 + * Upgrade to debhelper-compat (=12) + * Remove unneeded shlibs substvar dependency + * Update copyright years + + -- Jonathan Carter Mon, 16 Sep 2019 07:37:20 +0000 + gnome-shell-extension-remove-dropdown-arrows (11-1) unstable; urgency=medium - * New upstream release + * New upstream release * Update standards version to 4.3.0 * Move package to being GNOME team maintained, moving self to uploaders diff -Nru gnome-shell-extension-remove-dropdown-arrows-11/debian/compat gnome-shell-extension-remove-dropdown-arrows-13/debian/compat --- gnome-shell-extension-remove-dropdown-arrows-11/debian/compat 2018-02-12 07:18:27.000000000 +0000 +++ gnome-shell-extension-remove-dropdown-arrows-13/debian/compat 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -11 diff -Nru gnome-shell-extension-remove-dropdown-arrows-11/debian/control gnome-shell-extension-remove-dropdown-arrows-13/debian/control --- gnome-shell-extension-remove-dropdown-arrows-11/debian/control 2019-01-31 09:22:52.000000000 +0000 +++ gnome-shell-extension-remove-dropdown-arrows-13/debian/control 2019-09-16 07:38:35.000000000 +0000 @@ -3,8 +3,8 @@ Priority: optional Maintainer: Debian GNOME Maintainers Uploaders: Jonathan Carter -Build-Depends: debhelper (>=11), zip -Standards-Version: 4.3.0 +Build-Depends: debhelper-compat (=12), zip +Standards-Version: 4.4.0 Homepage: https://github.com/mpdeimos/gnome-shell-remove-dropdown-arrows Vcs-Git: https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-remove-dropdown-arrows.git Vcs-Browser: https://salsa.debian.org/gnome-team/shell-extensions/gnome-shell-extension-remove-dropdown-arrows/ @@ -12,7 +12,7 @@ Package: gnome-shell-extension-remove-dropdown-arrows Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, gnome-shell (>= 3.16) +Depends: ${misc:Depends}, gnome-shell (>= 3.16) Description: removes drop down arrows from panel on GNOME shell Removes the dropdown arrows which were introduced in GNOME 3.10 from the App Menu, System Menu, Input Menu, Access Menu, Places Menu, Applications Menu diff -Nru gnome-shell-extension-remove-dropdown-arrows-11/debian/copyright gnome-shell-extension-remove-dropdown-arrows-13/debian/copyright --- gnome-shell-extension-remove-dropdown-arrows-11/debian/copyright 2018-02-12 07:19:17.000000000 +0000 +++ gnome-shell-extension-remove-dropdown-arrows-13/debian/copyright 2019-09-16 07:39:36.000000000 +0000 @@ -3,11 +3,11 @@ Source: https://github.com/mpdeimos/gnome-shell-remove-dropdown-arrows Files: * -Copyright: 2016-2018 Martin Pöhlmann +Copyright: 2016-2019 Martin Pöhlmann License: GPL-3+ Files: debian/* -Copyright: 2016-2018 Jonathan Carter +Copyright: 2016-2019 Jonathan Carter License: GPL-3+ License: GPL-3+ diff -Nru gnome-shell-extension-remove-dropdown-arrows-11/extension.js gnome-shell-extension-remove-dropdown-arrows-13/extension.js --- gnome-shell-extension-remove-dropdown-arrows-11/extension.js 2019-01-27 21:48:47.000000000 +0000 +++ gnome-shell-extension-remove-dropdown-arrows-13/extension.js 2019-09-17 12:50:57.000000000 +0000 @@ -1,10 +1,10 @@ /* jshint esnext:true */ +const Clutter = imports.gi.Clutter; const GLib = imports.gi.GLib; const Main = imports.ui.main; const Mainloop = imports.mainloop; - const MAX_RECURSE_DEPTH = 3; let signalConnections = []; @@ -132,7 +132,9 @@ function enable() { - Main.panel.actor.get_children().forEach( + let panelActor = Main.panel instanceof Clutter.Actor ? Main.panel : Main.panel.actor; + + panelActor.get_children().forEach( function(actor) { signalConnections.push({ diff -Nru gnome-shell-extension-remove-dropdown-arrows-11/metadata.json gnome-shell-extension-remove-dropdown-arrows-13/metadata.json --- gnome-shell-extension-remove-dropdown-arrows-11/metadata.json 2019-01-27 21:48:47.000000000 +0000 +++ gnome-shell-extension-remove-dropdown-arrows-13/metadata.json 2019-09-17 12:50:57.000000000 +0000 @@ -4,5 +4,5 @@ "name": "Remove Dropdown Arrows", "description": "Removes the dropdown arrows which were introduced in Gnome 3.10 from the App Menu, System Menu, Input Menu, Access Menu, Places Menu, Applications Menu and any other extension that wants to add dropdown arrows.", "url": "http://github.com/mpdeimos/gnome-shell-remove-dropdown-arrows", - "shell-version": ["3.12","3.14", "3.16", "3.18", "3.20", "3.22", "3.24", "3.26", "3.28", "3.30"] + "shell-version": ["3.12","3.14", "3.16", "3.18", "3.20", "3.22", "3.24", "3.26", "3.28", "3.30", "3.32", "3.34"] }