From caaeb6746631d47efbe599eca54b44f06c4f51bd Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: May 20 2020 10:04:40 +0000 Subject: import gnome-shell-extensions-3.28.1-12.el7 --- diff --git a/SOURCES/more-classic-classic-mode.patch b/SOURCES/more-classic-classic-mode.patch index 2e60b40..5bf81c4 100644 --- a/SOURCES/more-classic-classic-mode.patch +++ b/SOURCES/more-classic-classic-mode.patch @@ -1,7 +1,7 @@ From 05833ca853e5e661cf43f59734ca0a29219159fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Thu, 18 Jul 2019 00:39:49 +0200 -Subject: [PATCH 01/33] apps-menu: Add drop-shadow to application icons +Subject: [PATCH 01/32] apps-menu: Add drop-shadow to application icons ... to make sure they are readable on light backgrounds. @@ -26,13 +26,13 @@ index 49a05c7..860cb77 100644 }; -- -2.21.0 +2.26.0 From 4ace6d5da8e0edc590706af8afb8cfc843a06af4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 29 May 2019 10:17:20 +0000 -Subject: [PATCH 02/33] places-menu: Don't hardcode position +Subject: [PATCH 02/32] places-menu: Don't hardcode position The extension currently assumes that we have the "Activities" button at the left of the top bar. This is currently true, not only in the @@ -68,47 +68,13 @@ index 429e81d..cdecb7b 100644 } -- -2.21.0 +2.26.0 -From 829929350bda3a03795c43d303273a7c9ff225b3 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Florian=20M=C3=BCllner?= -Date: Thu, 27 Jun 2019 03:57:53 +0200 -Subject: [PATCH 03/33] apps-menu: Add missing chain-up - -PanelMenu.Button is a bit weird in that it also "contains" its parent -actor. That container is supposed to be destroyed with the button, but -as we currently don't chain up to the parent class' _onDestroy(), we -leave behind an empty container every time the extension is disabled. - -Fix this by adding the missing chain-up. - -https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/75 ---- - extensions/apps-menu/extension.js | 2 ++ - 1 file changed, 2 insertions(+) - -diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js -index 860cb77..08eda10 100644 ---- a/extensions/apps-menu/extension.js -+++ b/extensions/apps-menu/extension.js -@@ -491,6 +491,8 @@ class ApplicationsButton extends PanelMenu.Button { - } - - _onDestroy() { -+ super._onDestroy(); -+ - Main.overview.disconnect(this._showingId); - Main.overview.disconnect(this._hidingId); - appSys.disconnect(this._installedChangedId); --- -2.21.0 - - -From 83e93a115f7375991893877ea82f2409569fee0f Mon Sep 17 00:00:00 2001 +From 5985dd5d6867a305d80f1e3d8f7f4b22c30702f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 29 May 2019 08:32:03 +0000 -Subject: [PATCH 04/33] apps-menu: Stop taking over Activities button +Subject: [PATCH 03/32] apps-menu: Stop taking over Activities button We don't want the "Activities" button in GNOME Classic, but the current way of handling it is confusing: @@ -132,7 +98,7 @@ https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/69 1 file changed, 6 insertions(+), 57 deletions(-) diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js -index 08eda10..9e02946 100644 +index 860cb77..4bde0d5 100644 --- a/extensions/apps-menu/extension.js +++ b/extensions/apps-menu/extension.js @@ -30,22 +30,6 @@ const HORIZ_FACTOR = 5; @@ -218,7 +184,7 @@ index 08eda10..9e02946 100644 _createVertSeparator() { let separator = new St.DrawingArea({ style_class: 'calendar-vertical-separator', pseudo_class: 'highlighted' }); -@@ -509,14 +474,6 @@ class ApplicationsButton extends PanelMenu.Button { +@@ -507,14 +472,6 @@ class ApplicationsButton extends PanelMenu.Button { this._desktopTarget.destroy(); } @@ -233,7 +199,7 @@ index 08eda10..9e02946 100644 _onMenuKeyPress(actor, event) { let symbol = event.get_key_symbol(); if (symbol == Clutter.KEY_Left || symbol == Clutter.KEY_Right) { -@@ -651,11 +608,6 @@ class ApplicationsButton extends PanelMenu.Button { +@@ -649,11 +606,6 @@ class ApplicationsButton extends PanelMenu.Button { x_fill: true, y_fill: true, y_align: St.Align.START }); @@ -245,7 +211,7 @@ index 08eda10..9e02946 100644 this.applicationsBox = new St.BoxLayout({ vertical: true }); this.applicationsScrollBox.add_actor(this.applicationsBox); this.categoriesBox = new St.BoxLayout({ vertical: true }); -@@ -760,19 +712,16 @@ class ApplicationsButton extends PanelMenu.Button { +@@ -758,19 +710,16 @@ class ApplicationsButton extends PanelMenu.Button { }; let appsMenuButton; @@ -269,13 +235,13 @@ index 08eda10..9e02946 100644 function init(metadata) { -- -2.21.0 +2.26.0 -From ea66ad17fe7b5d1a8071a6aa693603be5e62ae27 Mon Sep 17 00:00:00 2001 +From 25d6a4dbcd0ecbe5778ee097c681ef871bcd4064 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 7 Jun 2019 14:30:16 +0000 -Subject: [PATCH 05/33] apps-menu: Stop hiding the overview when toggled +Subject: [PATCH 04/32] apps-menu: Stop hiding the overview when toggled Now that the extension no longer doubles as the "Activities" button, that behavior is confusing. @@ -286,7 +252,7 @@ https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/69 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js -index 9e02946..50fe55a 100644 +index 4bde0d5..c7253fb 100644 --- a/extensions/apps-menu/extension.js +++ b/extensions/apps-menu/extension.js @@ -229,12 +229,8 @@ class ApplicationsMenu extends PopupMenu.PopupMenu { @@ -304,13 +270,13 @@ index 9e02946..50fe55a 100644 } }; -- -2.21.0 +2.26.0 -From 8b850a7f9b17cafbd417f597650a2a13cf8cfefa Mon Sep 17 00:00:00 2001 +From b4f735a3b8c1d17a7248f57be3f8fd1837346f26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 7 Jun 2019 20:07:19 +0000 -Subject: [PATCH 06/33] apps-menu: Hide overview when launching app +Subject: [PATCH 05/32] apps-menu: Hide overview when launching app Now that we no longer hide the overview when the menu is opened, it is possible to activate menu entries from the overview. Start @@ -323,7 +289,7 @@ https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/69 1 file changed, 2 insertions(+) diff --git a/extensions/apps-menu/extension.js b/extensions/apps-menu/extension.js -index 50fe55a..8d59e6d 100644 +index c7253fb..4bf4fc2 100644 --- a/extensions/apps-menu/extension.js +++ b/extensions/apps-menu/extension.js @@ -75,6 +75,8 @@ class ApplicationMenuItem extends PopupMenu.PopupBaseMenuItem { @@ -336,13 +302,13 @@ index 50fe55a..8d59e6d 100644 setActive(active, params) { -- -2.21.0 +2.26.0 -From 9762c3507177fe3a420bb228549aca03757d73c5 Mon Sep 17 00:00:00 2001 +From a890a0b2aad2f4f1ce1638988c6bc34f7751f52b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 29 May 2019 09:44:30 +0000 -Subject: [PATCH 07/33] classic: Disable overview +Subject: [PATCH 06/32] classic: Disable overview The overview is one of the defining features of GNOME 3, and thus almost by definition at odds with the classic session, which @@ -378,13 +344,13 @@ index fdb3762..c1c0544 100644 "right": ["a11y", "keyboard", "dateMenu", "aggregateMenu"] } -- -2.21.0 +2.26.0 -From 1fee42083afafef861fc57e5d886e4e00945a19c Mon Sep 17 00:00:00 2001 +From 53f2eb6a89ae4b75aa604474cf9425d179a57d59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 14 May 2019 19:51:22 +0200 -Subject: [PATCH 08/33] window-list: Add window picker button +Subject: [PATCH 07/32] window-list: Add window picker button MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @@ -612,7 +578,7 @@ index f5285cb..91383ab 100644 diff --git a/extensions/window-list/windowPicker.js b/extensions/window-list/windowPicker.js new file mode 100644 -index 0000000..59875d5 +index 0000000..c134b98 --- /dev/null +++ b/extensions/window-list/windowPicker.js @@ -0,0 +1,260 @@ @@ -792,7 +758,7 @@ index 0000000..59875d5 + }); + + if (!this._modal) { -+ this.hide(); ++ this.actor.hide(); + return false; + } + } else if (this._modal) { @@ -877,13 +843,13 @@ index 0000000..59875d5 + } +}); -- -2.21.0 +2.26.0 -From ea3f6be47066e1e4a2f86824576a17bc09bcd39d Mon Sep 17 00:00:00 2001 +From 05bb3a140706891bd81e368997c4464c309f84cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 29 Jun 2019 02:52:45 +0200 -Subject: [PATCH 09/33] window-list: Fix resetting handler ID +Subject: [PATCH 08/32] window-list: Fix resetting handler ID This is embarrassing, although destroy() is expected to only run once, so the bug shouldn't have an effect in practice. @@ -894,7 +860,7 @@ https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/78 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/window-list/windowPicker.js b/extensions/window-list/windowPicker.js -index 59875d5..c8a3dd6 100644 +index c134b98..6c8f5e8 100644 --- a/extensions/window-list/windowPicker.js +++ b/extensions/window-list/windowPicker.js @@ -255,6 +255,6 @@ class WindowPickerToggle extends St.Button { @@ -906,13 +872,13 @@ index 59875d5..c8a3dd6 100644 } }); -- -2.21.0 +2.26.0 -From eaa96905569de6640bd59cb89aa47fcdb8f486c4 Mon Sep 17 00:00:00 2001 +From b77a8ed7be50501f500a13e9c2b838cac2ea86d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 2 Jul 2019 17:39:55 +0200 -Subject: [PATCH 10/33] window-list: Move super-key handling into WindowPicker +Subject: [PATCH 09/32] window-list: Move super-key handling into WindowPicker We have an option to put a window list on each monitor, so we may have more than one window picker toggle. We don't want each of those try to @@ -925,7 +891,7 @@ https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/80 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/extensions/window-list/windowPicker.js b/extensions/window-list/windowPicker.js -index c8a3dd6..088ebf2 100644 +index 6c8f5e8..c3c8391 100644 --- a/extensions/window-list/windowPicker.js +++ b/extensions/window-list/windowPicker.js @@ -67,6 +67,8 @@ var WindowPicker = class { @@ -1000,13 +966,13 @@ index c8a3dd6..088ebf2 100644 - } }); -- -2.21.0 +2.26.0 -From 381290b9938339768501e34aee6f21d7040e9394 Mon Sep 17 00:00:00 2001 +From 0e53b834147b380fbd155738eb30244d96f18ec2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 2 Jul 2019 18:12:31 +0200 -Subject: [PATCH 11/33] window-list: Handle closing window picker with Escape +Subject: [PATCH 10/32] window-list: Handle closing window picker with Escape Just like the overview can be closed with Escape, it makes sense to allow the same for the window picker (in addition to pressing super @@ -1018,7 +984,7 @@ https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/80 1 file changed, 18 insertions(+) diff --git a/extensions/window-list/windowPicker.js b/extensions/window-list/windowPicker.js -index 088ebf2..461a4d1 100644 +index c3c8391..4895ae5 100644 --- a/extensions/window-list/windowPicker.js +++ b/extensions/window-list/windowPicker.js @@ -68,6 +68,7 @@ var WindowPicker = class { @@ -1068,13 +1034,13 @@ index 088ebf2..461a4d1 100644 _updateBackgrounds() { -- -2.21.0 +2.26.0 -From 22a3bb1051ebda5cba050cdc95114673dae7dab8 Mon Sep 17 00:00:00 2001 +From aa92589bb24aa3e354cf7e4f262144de1a9e7c5a Mon Sep 17 00:00:00 2001 From: Jakub Steiner Date: Mon, 15 Jul 2019 23:40:09 +0200 -Subject: [PATCH 12/33] classic: hover state for panel buttons +Subject: [PATCH 11/32] classic: hover state for panel buttons - prelight before active - lighten up slightly, similar to what the default does (inverted) @@ -1116,13 +1082,13 @@ index e8f4803..a231534 100644 .system-status-icon { -- -2.21.0 +2.26.0 -From da9d0ffad1b75413027f95c112be9d6a5e92ba78 Mon Sep 17 00:00:00 2001 +From f11b024ae46c2228cb43f9f4d3455b542ce55f9e Mon Sep 17 00:00:00 2001 From: Jakub Steiner Date: Mon, 15 Jul 2019 23:03:41 +0200 -Subject: [PATCH 13/33] classic: Update window-list styling +Subject: [PATCH 12/32] classic: Update window-list styling Make buttons flatter, rounder to match default styling. @@ -1198,13 +1164,13 @@ index c506bea..cc967e0 100644 + box-shadow: none; } -- -2.21.0 +2.26.0 -From f9268e6d38e174d78a98f1e64734a00917724032 Mon Sep 17 00:00:00 2001 +From 771696cab5481ba7a9ab1a39ca5ee3992f12633e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 00:23:13 +0000 -Subject: [PATCH 14/33] window-list: Split out workspaceIndicator +Subject: [PATCH 13/32] window-list: Split out workspaceIndicator The extension has grown unwieldily big, so before starting to improve on the workspace indicator, move it to its own source file. @@ -1504,13 +1470,13 @@ index 0000000..ac4037b +}; + -- -2.21.0 +2.26.0 -From aa6079ff69f942420f806523463337fe81b23121 Mon Sep 17 00:00:00 2001 +From a60571c04f37574df81f44cb1a0269f0f006b4f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 04:54:50 +0200 -Subject: [PATCH 15/33] window-list: Make some properties private +Subject: [PATCH 14/32] window-list: Make some properties private There's no reason why they should be public. @@ -1579,13 +1545,13 @@ index ac4037b..cd3e394 100644 _activate(index) { -- -2.21.0 +2.26.0 -From 54f5bf585056267f63e2a28153ae709325afe9ca Mon Sep 17 00:00:00 2001 +From cfb7486f7d0616e3831c4f43687ab85374745daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 04:57:39 +0200 -Subject: [PATCH 16/33] window-list: Update workspace names in-place +Subject: [PATCH 15/32] window-list: Update workspace names in-place There's no good reason to rebuild the entire menu on workspace names changes, we can simply update the labels in-place. @@ -1624,13 +1590,13 @@ index cd3e394..5157e6e 100644 this.menu.removeAll(); this._workspacesItems = []; -- -2.21.0 +2.26.0 -From a2fb1382b9ac7c50c556c1a41dc19ceca43bd320 Mon Sep 17 00:00:00 2001 +From 5ac4899fcce6eb0caba19dc0787c7cebb726015f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 04:59:19 +0200 -Subject: [PATCH 17/33] window-list: Minor cleanup +Subject: [PATCH 16/32] window-list: Minor cleanup Mutter has a dedicated method for getting the index of the active workspace, use that instead of getting first the active workspace @@ -1681,13 +1647,13 @@ index 5157e6e..f9778f7 100644 for (let i = 0; i < global.screen.n_workspaces; i++) { let name = Meta.prefs_get_workspace_name(i); -- -2.21.0 +2.26.0 -From fe93812275cc44f01a4c3877fc5efdb9121da78a Mon Sep 17 00:00:00 2001 +From 3b1e8d3d95bd6d4a04cceb3fdc2b5715b96af4a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 05:11:34 +0200 -Subject: [PATCH 18/33] window-list: Improve workspace label styling +Subject: [PATCH 17/32] window-list: Improve workspace label styling The border currently looks off - it extends all the way vertically and leaves zero spacing to the label horizontally. Fix both issues @@ -1746,13 +1712,13 @@ index f9778f7..132d621 100644 this._workspacesItems = []; -- -2.21.0 +2.26.0 -From 2edb23239c7d3c2120d59cfe74cba36674be515f Mon Sep 17 00:00:00 2001 +From 9115456651cb4e004941212e8edda89bd6ed2927 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 05:08:31 +0200 -Subject: [PATCH 19/33] window-list: Refactor workspace signal handlers +Subject: [PATCH 18/32] window-list: Refactor workspace signal handlers We are about to support a separate representation if horizontal workspaces are used. To prepare for that, rename the handlers to @@ -1811,13 +1777,13 @@ index 132d621..6352763 100644 let current = global.screen.get_active_workspace_index(); let total = global.screen.n_workspaces; -- -2.21.0 +2.26.0 -From 1fa782c8ab1d3e69f99cbe0a68110a557d828c78 Mon Sep 17 00:00:00 2001 +From ad5bb7b307f65afc8b3ddc9b820021fe15d610d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 02:53:38 +0000 -Subject: [PATCH 20/33] window-list: Support horizontal workspace layout +Subject: [PATCH 19/32] window-list: Support horizontal workspace layout Unlike in GNOME 2, the workspace indicator we display in the window list isn't a workspace switcher, but a menu button that allows switching @@ -2016,13 +1982,13 @@ index 6352763..77acf8a 100644 if (index >= 0 && index < global.screen.n_workspaces) { let metaWorkspace = global.screen.get_workspace_by_index(index); -- -2.21.0 +2.26.0 -From 8ab04d7d1fe9807cdde949afa743de97539769cc Mon Sep 17 00:00:00 2001 +From 398701ed86ca2dd035f3099fae75631a43764c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 11 Jun 2019 23:01:20 +0000 -Subject: [PATCH 21/33] window-list: Turn workspace thumbs into drop targets +Subject: [PATCH 20/32] window-list: Turn workspace thumbs into drop targets It makes some sense to allow using the workspace indicator for moving windows between workspaces as well as for workspace switching. This @@ -2081,13 +2047,13 @@ index 77acf8a..edf176e 100644 on_clicked() { -- -2.21.0 +2.26.0 -From a4d0ccc3122891f9e164b2b45c9540dbdebba0de Mon Sep 17 00:00:00 2001 +From 3599401643526ed8c2b689356843c150630607b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 26 Jun 2019 23:55:58 +0000 -Subject: [PATCH 22/33] window-list: Show previews in workspace switcher +Subject: [PATCH 21/32] window-list: Show previews in workspace switcher Currently the new horizontal workspace switcher only shows a series of buttons, with no indication of the workspaces' contents. Go full GNOME 2 @@ -2328,13 +2294,13 @@ index edf176e..0bcee80 100644 var WorkspaceIndicator = class WorkspaceIndicator extends PanelMenu.Button { -- -2.21.0 +2.26.0 -From 73e31ec6a601b2f692cf58b5377a1d92fce8d5ca Mon Sep 17 00:00:00 2001 +From 5bd8ce7731440cf27ab46b2a92e4210ef6bb28a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Wed, 5 Jun 2019 03:31:16 +0000 -Subject: [PATCH 23/33] classic: Add 'horizontal-workspaces' extension +Subject: [PATCH 22/32] classic: Add 'horizontal-workspaces' extension Vertical workspaces are another defining characteristics of GNOME 3, and thus rather un-classic. That switch was driven by the overall @@ -2359,7 +2325,7 @@ https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/72 diff --git a/extensions/horizontal-workspaces/extension.js b/extensions/horizontal-workspaces/extension.js new file mode 100644 -index 0000000..bade48b +index 0000000..c9a3d13 --- /dev/null +++ b/extensions/horizontal-workspaces/extension.js @@ -0,0 +1,38 @@ @@ -2382,7 +2348,7 @@ index 0000000..bade48b + -1); + + ThumbnailsBox.prototype._updateSwitcherVisibility = function() { -+ this.hide(); ++ this.actor.hide(); + }; + } + @@ -2448,13 +2414,13 @@ index fa4aa9c..c1581a5 100644 'launch-new-instance', 'top-icons', -- -2.21.0 +2.26.0 -From 1269e9226cf93903957acc58029f4db3e095d5ca Mon Sep 17 00:00:00 2001 +From 25dfeb4a421da3c7eb5410b984440ad54b573c76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 29 Jun 2019 01:24:54 +0200 -Subject: [PATCH 24/33] workspace-indicator: Fix whitespace error +Subject: [PATCH 23/32] workspace-indicator: Fix whitespace error We only want a single space before and after operators, not at least one. Unfortunately eslint only enforces the latter ... @@ -2478,13 +2444,13 @@ index ace1703..f6d9912 100644 metaWorkspace.activate(global.get_current_time()); } -- -2.21.0 +2.26.0 -From fee1399f6862ca99ed063b795fc3014b0d18414f Mon Sep 17 00:00:00 2001 +From 3363591fd2c39b5edece8b131ab95dd705e5bf03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 9 Jun 2019 22:58:29 +0000 -Subject: [PATCH 25/33] workspace-indicator: Make some properties private +Subject: [PATCH 24/32] workspace-indicator: Make some properties private There's no reason why they should be public. @@ -2575,13 +2541,13 @@ index f6d9912..67dec14 100644 _activate(index) { -- -2.21.0 +2.26.0 -From 9f8beea12da86dfa0540fc022ef36de0fa67a932 Mon Sep 17 00:00:00 2001 +From 78cacf078515d8e102588f73a52c5c1692ae3020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 9 Jun 2019 23:03:55 +0000 -Subject: [PATCH 26/33] workspace-indicator: Update workspace names in-place +Subject: [PATCH 25/32] workspace-indicator: Update workspace names in-place There's no good reason to rebuild the entire menu on workspace names changes, we can simply update the labels in-place. @@ -2621,13 +2587,13 @@ index 67dec14..3befe14 100644 this._workspaceSection.removeAll(); this._workspacesItems = []; -- -2.21.0 +2.26.0 -From 2d2baa3981a3d061c7b32d57ad07da9a3553dfa3 Mon Sep 17 00:00:00 2001 +From 6bdf542a42d24d3c6954c970bcdf8b29aeb037f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 9 Jun 2019 23:05:00 +0000 -Subject: [PATCH 27/33] workspace-indicator: Minor cleanup +Subject: [PATCH 26/32] workspace-indicator: Minor cleanup Mutter has a dedicated method for getting the index of the active workspace, use that instead of getting first the active workspace @@ -2679,13 +2645,13 @@ index 3befe14..d341b93 100644 } }; -- -2.21.0 +2.26.0 -From 7c3dfb2c2d5713f84a11d59dba9e34e50a51e204 Mon Sep 17 00:00:00 2001 +From 6a42b20ff12531aeaf74a157ca1d807a9285c953 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 9 Jun 2019 23:09:12 +0000 -Subject: [PATCH 28/33] workspace-indicator: Refactor workspace signal handlers +Subject: [PATCH 27/32] workspace-indicator: Refactor workspace signal handlers We are about to support a separate representation if horizontal workspaces are used. To prepare for that, rename the handlers to @@ -2751,13 +2717,13 @@ index d341b93..58ac865 100644 if(workspaceIndex == undefined) { workspaceIndex = this._currentWorkspace; -- -2.21.0 +2.26.0 -From e5b8c870ff750973d615eb801e15b56ad8f614db Mon Sep 17 00:00:00 2001 +From 41b8bc803b979d9edfd2263a40c817dcf0b16ac5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 9 Jun 2019 23:17:35 +0000 -Subject: [PATCH 29/33] workspace-indicator: Minor cleanup +Subject: [PATCH 28/32] workspace-indicator: Minor cleanup Pass the style class at construction time instead of setting it later. @@ -2789,13 +2755,13 @@ index 58ac865..e6fffe4 100644 this._settingsChangedId = this._settings.connect( `changed::${WORKSPACE_KEY}`, -- -2.21.0 +2.26.0 -From cce0e2b739cab74a166cfa75631836a7bfd06429 Mon Sep 17 00:00:00 2001 +From e1f5d9a15179eecba5561a647bc870b20ffd61bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 9 Jun 2019 23:45:24 +0000 -Subject: [PATCH 30/33] workspace-indicator: Support horizontal workspace +Subject: [PATCH 29/32] workspace-indicator: Support horizontal workspace layout Just like we did for the workspace indicator in the window-list, improve @@ -2990,13 +2956,13 @@ index 1271f1c..5118194 100644 + border-left-width: 1px; +} -- -2.21.0 +2.26.0 -From 98df229b8a62e575529ebc28e085df53154ebc42 Mon Sep 17 00:00:00 2001 +From 530f8d477593b9d8c569facc1009c84c5450b076 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 28 Jun 2019 11:33:16 +0200 -Subject: [PATCH 31/33] workspace-indicator: Show previews in workspace +Subject: [PATCH 30/32] workspace-indicator: Show previews in workspace switcher Currently the new horizontal workspace switcher only shows a series of @@ -3243,13 +3209,13 @@ index 5118194..8601c3e 100644 + border: 2px solid #ccc; +} -- -2.21.0 +2.26.0 -From 9b1fb384f2f46a953c4838991ec58cd3c2872b31 Mon Sep 17 00:00:00 2001 +From 6b1543bd04f4f731cae6c4ecb6a6f831954dbb15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 6 Sep 2019 20:41:23 +0200 -Subject: [PATCH 32/33] window-list: Exclude DESKTOP windows from window +Subject: [PATCH 31/32] window-list: Exclude DESKTOP windows from window previews While nautilus removed its desktop support a while ago in favor of an @@ -3276,13 +3242,13 @@ index 0bcee80..c0dd65d 100644 if (!this.visible) -- -2.21.0 +2.26.0 -From 59d4e3377072507f95562c8516913b1d257651c0 Mon Sep 17 00:00:00 2001 +From 45592d2262dd2e59c0880c7ad28035cdd8f7fd2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 6 Sep 2019 20:47:56 +0200 -Subject: [PATCH 33/33] workspace-indicator: Exclude DESKTOP windows from +Subject: [PATCH 32/32] workspace-indicator: Exclude DESKTOP windows from window previews While nautilus removed its desktop support a while ago in favor of an @@ -3309,5 +3275,5 @@ index 6b656c8..6b7947d 100644 if (!this.visible) -- -2.21.0 +2.26.0 diff --git a/SPECS/gnome-shell-extensions.spec b/SPECS/gnome-shell-extensions.spec index 28084d4..2a5a589 100644 --- a/SPECS/gnome-shell-extensions.spec +++ b/SPECS/gnome-shell-extensions.spec @@ -6,7 +6,7 @@ Name: gnome-shell-extensions Version: 3.28.1 -Release: 10%{?dist} +Release: 12%{?dist} Summary: Modify and extend GNOME Shell functionality and behavior Group: User Interface/Desktops @@ -561,6 +561,14 @@ fi %changelog +* Mon Apr 20 2020 Florian Müllner - 3.28.1-12 +- Drop faulty patch from backport + Resolves: #1782102 + +* Fri Dec 06 2019 Jonas Ådahl - 3.28.1-11 +- A couple of fixes to the classic backports + Resolves: #1778270 + * Wed Sep 25 2019 Jonas Ådahl - 3.28.1-10 - Fix unwanted appearance of workspace switcher menu Resolves: #1752357