1
0

Accepting request 955574 from GNOME:Factory

Fix build or last submission

OBS-URL: https://build.opensuse.org/request/show/955574
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-shell-extensions?expand=0&rev=121
This commit is contained in:
Dominique Leuenberger 2022-02-17 22:40:01 +00:00 committed by Git OBS Bridge
commit 25d933b250
5 changed files with 41 additions and 34 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d0e6f2273f08d52d925fc2bb66b47b28e5ef50d1b8a14020877c662423d507d3
size 219848

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad9ba82f4cbd04726973b5e87afad18afdaa323860a0af3e7240f3a74d222f19
size 222528

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Feb 15 20:22:07 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>
- Update to version 41.2:
+ window-list: Update window tracking to avoid missing icons.
- Rebase gse-sle-classic-ext.patch.
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Feb 3 05:51:27 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com> Thu Feb 3 05:51:27 UTC 2022 - Bjørn Lie <bjorn.lie@gmail.com>

View File

@ -19,7 +19,7 @@
%global __requires_exclude typelib\\(Meta\\) %global __requires_exclude typelib\\(Meta\\)
Name: gnome-shell-extensions Name: gnome-shell-extensions
Version: 41.1 Version: 41.2
Release: 0 Release: 0
Summary: A collection of extensions for GNOME Shell Summary: A collection of extensions for GNOME Shell
License: GPL-2.0-or-later License: GPL-2.0-or-later

View File

@ -1,7 +1,7 @@
Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js Index: gnome-shell-extensions-41.2/extensions/window-list/extension.js
=================================================================== ===================================================================
--- gnome-shell-extensions-41.0.orig/extensions/window-list/extension.js --- gnome-shell-extensions-41.2.orig/extensions/window-list/extension.js
+++ gnome-shell-extensions-41.0/extensions/window-list/extension.js +++ gnome-shell-extensions-41.2/extensions/window-list/extension.js
@@ -177,6 +177,9 @@ class WindowTitle extends St.BoxLayout { @@ -177,6 +177,9 @@ class WindowTitle extends St.BoxLayout {
} }
}); });
@ -46,7 +46,7 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
this._appSystem = Shell.AppSystem.get_default(); this._appSystem = Shell.AppSystem.get_default();
this._appStateChangedId = this._appSystem.connect( this._appStateChangedId = this._appSystem.connect(
@@ -839,7 +846,8 @@ class WindowList extends St.Widget { @@ -842,7 +849,8 @@ class WindowList extends St.Widget {
let workspacesOnMonitor = this._monitor === Main.layoutManager.primaryMonitor || let workspacesOnMonitor = this._monitor === Main.layoutManager.primaryMonitor ||
!this._mutterSettings.get_boolean('workspaces-only-on-primary'); !this._mutterSettings.get_boolean('workspaces-only-on-primary');
@ -56,7 +56,7 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
} }
_updateWindowListVisibility() { _updateWindowListVisibility() {
@@ -875,6 +883,9 @@ class WindowList extends St.Widget { @@ -878,6 +886,9 @@ class WindowList extends St.Widget {
} }
_getMaxWindowListWidth() { _getMaxWindowListWidth() {
@ -66,7 +66,7 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
let indicatorsBox = this._workspaceIndicator.get_parent(); let indicatorsBox = this._workspaceIndicator.get_parent();
return this.width - indicatorsBox.get_preferred_width(-1)[1]; return this.width - indicatorsBox.get_preferred_width(-1)[1];
} }
@@ -1075,7 +1086,8 @@ class WindowList extends St.Widget { @@ -1047,7 +1058,8 @@ class WindowList extends St.Widget {
this._mutterSettings.disconnect(this._workspacesOnlyOnPrimaryChangedId); this._mutterSettings.disconnect(this._workspacesOnlyOnPrimaryChangedId);
this._mutterSettings.disconnect(this._dynamicWorkspacesChangedId); this._mutterSettings.disconnect(this._dynamicWorkspacesChangedId);
@ -76,7 +76,7 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
Main.ctrlAltTabManager.removeGroup(this); Main.ctrlAltTabManager.removeGroup(this);
@@ -1116,6 +1128,7 @@ class Extension { @@ -1090,6 +1102,7 @@ class Extension {
this._windowLists = null; this._windowLists = null;
this._hideOverviewOrig = Main.overview.hide; this._hideOverviewOrig = Main.overview.hide;
@ -84,7 +84,7 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
} }
enable() { enable() {
@@ -1135,19 +1148,51 @@ class Extension { @@ -1109,19 +1122,51 @@ class Extension {
this._hideOverviewOrig.call(Main.overview); this._hideOverviewOrig.call(Main.overview);
}; };
@ -140,7 +140,7 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
} }
disable() { disable() {
@@ -1161,6 +1206,11 @@ class Extension { @@ -1135,6 +1180,11 @@ class Extension {
this._monitorsChangedId = 0; this._monitorsChangedId = 0;
this._windowLists.forEach(windowList => { this._windowLists.forEach(windowList => {
@ -152,7 +152,7 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
windowList.hide(); windowList.hide();
windowList.destroy(); windowList.destroy();
}); });
@@ -1169,6 +1219,11 @@ class Extension { @@ -1143,6 +1193,11 @@ class Extension {
Main.windowPicker.destroy(); Main.windowPicker.destroy();
delete Main.windowPicker; delete Main.windowPicker;
@ -164,10 +164,10 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/extension.js
Main.overview.hide = this._hideOverviewOrig; Main.overview.hide = this._hideOverviewOrig;
} }
Index: gnome-shell-extensions-41.0/extensions/window-list/sle-classic.css Index: gnome-shell-extensions-41.2/extensions/window-list/sle-classic.css
=================================================================== ===================================================================
--- /dev/null --- /dev/null
+++ gnome-shell-extensions-41.0/extensions/window-list/sle-classic.css +++ gnome-shell-extensions-41.2/extensions/window-list/sle-classic.css
@@ -0,0 +1,46 @@ @@ -0,0 +1,46 @@
+@import url("stylesheet.css"); +@import url("stylesheet.css");
+ +
@ -215,10 +215,10 @@ Index: gnome-shell-extensions-41.0/extensions/window-list/sle-classic.css
+ color: #888; + color: #888;
+ box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5); + box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5);
+ } + }
Index: gnome-shell-extensions-41.0/extensions/places-menu/extension.js Index: gnome-shell-extensions-41.2/extensions/places-menu/extension.js
=================================================================== ===================================================================
--- gnome-shell-extensions-41.0.orig/extensions/places-menu/extension.js --- gnome-shell-extensions-41.2.orig/extensions/places-menu/extension.js
+++ gnome-shell-extensions-41.0/extensions/places-menu/extension.js +++ gnome-shell-extensions-41.2/extensions/places-menu/extension.js
@@ -139,6 +139,10 @@ function init() { @@ -139,6 +139,10 @@ function init() {
let _indicator; let _indicator;
@ -242,10 +242,10 @@ Index: gnome-shell-extensions-41.0/extensions/places-menu/extension.js
} }
/** */ /** */
Index: gnome-shell-extensions-41.0/extensions/apps-menu/extension.js Index: gnome-shell-extensions-41.2/extensions/apps-menu/extension.js
=================================================================== ===================================================================
--- gnome-shell-extensions-41.0.orig/extensions/apps-menu/extension.js --- gnome-shell-extensions-41.2.orig/extensions/apps-menu/extension.js
+++ gnome-shell-extensions-41.0/extensions/apps-menu/extension.js +++ gnome-shell-extensions-41.2/extensions/apps-menu/extension.js
@@ -26,6 +26,10 @@ const NAVIGATION_REGION_OVERSHOOT = 50; @@ -26,6 +26,10 @@ const NAVIGATION_REGION_OVERSHOOT = 50;
Gio._promisify(Gio._LocalFilePrototype, 'query_info_async', 'query_info_finish'); Gio._promisify(Gio._LocalFilePrototype, 'query_info_async', 'query_info_finish');
Gio._promisify(Gio._LocalFilePrototype, 'set_attributes_async', 'set_attributes_finish'); Gio._promisify(Gio._LocalFilePrototype, 'set_attributes_async', 'set_attributes_finish');
@ -296,11 +296,11 @@ Index: gnome-shell-extensions-41.0/extensions/apps-menu/extension.js
} }
/** */ /** */
Index: gnome-shell-extensions-41.0/data/gnome-classic.css Index: gnome-shell-extensions-41.2/data/gnome-classic.css
=================================================================== ===================================================================
--- gnome-shell-extensions-41.0.orig/data/gnome-classic.css --- gnome-shell-extensions-41.2.orig/data/gnome-classic.css
+++ gnome-shell-extensions-41.0/data/gnome-classic.css +++ gnome-shell-extensions-41.2/data/gnome-classic.css
@@ -2262,9 +2262,9 @@ StScrollBar { @@ -2619,9 +2619,9 @@ StScrollBar {
#panel.solid .panel-corner:focus { #panel.solid .panel-corner:focus {
-panel-corner-radius: 0; } -panel-corner-radius: 0; }
#panel.lock-screen, #panel.unlock-screen, #panel.login-screen, #panel.solid.lock-screen, #panel.solid.unlock-screen, #panel.solid.login-screen { #panel.lock-screen, #panel.unlock-screen, #panel.login-screen, #panel.solid.lock-screen, #panel.solid.unlock-screen, #panel.solid.login-screen {
@ -312,18 +312,18 @@ Index: gnome-shell-extensions-41.0/data/gnome-classic.css
+ background-gradient-end: none; + background-gradient-end: none;
border-bottom: none; } border-bottom: none; }
#panel.lock-screen .panel-button, #panel.unlock-screen .panel-button, #panel.login-screen .panel-button, #panel.solid.lock-screen .panel-button, #panel.solid.unlock-screen .panel-button, #panel.solid.login-screen .panel-button { #panel.lock-screen .panel-button, #panel.unlock-screen .panel-button, #panel.login-screen .panel-button, #panel.solid.lock-screen .panel-button, #panel.solid.unlock-screen .panel-button, #panel.solid.login-screen .panel-button {
color: #eeeeec; } color: white; }
@@ -2292,3 +2292,6 @@ StScrollBar { @@ -2649,3 +2649,6 @@ StScrollBar {
.calendar-day-with-events { .calendar-day-with-events {
background-image: url("calendar-today.svg"); } background-image: url("calendar-today.svg"); }
+ +
+.popup-menu.panel-menu { +.popup-menu.panel-menu {
+ margin-bottom: 0em; } + margin-bottom: 0em; }
Index: gnome-shell-extensions-41.0/extensions/workspace-indicator/extension.js Index: gnome-shell-extensions-41.2/extensions/workspace-indicator/extension.js
=================================================================== ===================================================================
--- gnome-shell-extensions-41.0.orig/extensions/workspace-indicator/extension.js --- gnome-shell-extensions-41.2.orig/extensions/workspace-indicator/extension.js
+++ gnome-shell-extensions-41.0/extensions/workspace-indicator/extension.js +++ gnome-shell-extensions-41.2/extensions/workspace-indicator/extension.js
@@ -321,7 +321,8 @@ class WorkspaceIndicator extends PanelMe @@ -321,7 +321,8 @@ class WorkspaceIndicator extends PanelMe
_updateThumbnailVisibility() { _updateThumbnailVisibility() {
const { workspaceManager } = global; const { workspaceManager } = global;
@ -334,10 +334,10 @@ Index: gnome-shell-extensions-41.0/extensions/workspace-indicator/extension.js
vertical || workspaceManager.n_workspaces > MAX_THUMBNAILS; vertical || workspaceManager.n_workspaces > MAX_THUMBNAILS;
this.reactive = useMenu; this.reactive = useMenu;
Index: gnome-shell-extensions-41.0/extensions/workspace-indicator/stylesheet.css Index: gnome-shell-extensions-41.2/extensions/workspace-indicator/stylesheet.css
=================================================================== ===================================================================
--- gnome-shell-extensions-41.0.orig/extensions/workspace-indicator/stylesheet.css --- gnome-shell-extensions-41.2.orig/extensions/workspace-indicator/stylesheet.css
+++ gnome-shell-extensions-41.0/extensions/workspace-indicator/stylesheet.css +++ gnome-shell-extensions-41.2/extensions/workspace-indicator/stylesheet.css
@@ -1,5 +1,7 @@ @@ -1,5 +1,7 @@
.panel-workspace-indicator { .panel-workspace-indicator {
padding: 0 8px; padding: 0 8px;