import gnome-shell-extensions-3.32.1-10.el8
This commit is contained in:
parent
96ce8d2d0d
commit
b473c58283
@ -1,4 +1,4 @@
|
||||
From 4137197669569a05d2b4f936c9e5872a8c6a96a5 Mon Sep 17 00:00:00 2001
|
||||
From e768ad73e2d68b3f1567051675ba0539a75e3105 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||||
Date: Sat, 18 May 2019 19:37:05 +0200
|
||||
Subject: [PATCH] Update style
|
||||
@ -7,12 +7,31 @@ Subject: [PATCH] Update style
|
||||
data/gnome-shell-sass | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
Submodule data/gnome-shell-sass 1a56956..0116ded:
|
||||
Submodule data/gnome-shell-sass 1a56956..8842e57:
|
||||
diff --git a/data/gnome-shell-sass/_common.scss b/data/gnome-shell-sass/_common.scss
|
||||
index a6357ba..b48f4fc 100644
|
||||
index a6357ba..62d9c82 100644
|
||||
--- a/data/gnome-shell-sass/_common.scss
|
||||
+++ b/data/gnome-shell-sass/_common.scss
|
||||
@@ -680,7 +680,8 @@ StScrollBar {
|
||||
@@ -571,6 +571,18 @@ StScrollBar {
|
||||
app menu inside the main app window itself rather than the top bar
|
||||
*/
|
||||
|
||||
+/*************
|
||||
+ * App Icons *
|
||||
+ *************/
|
||||
+/* Outline for low res icons */
|
||||
+.lowres-icon {
|
||||
+ icon-shadow: 0 1px 2px rgba(0,0,0,0.3);
|
||||
+}
|
||||
+
|
||||
+/* Drapshadow for large icons */
|
||||
+.icon-dropshadow {
|
||||
+ icon-shadow: 0 1px 2px rgba(0,0,0,0.4);
|
||||
+}
|
||||
|
||||
/* OSD */
|
||||
.osd-window {
|
||||
@@ -680,7 +692,8 @@ StScrollBar {
|
||||
spacing: 8px;
|
||||
}
|
||||
|
||||
@ -22,7 +41,7 @@ index a6357ba..b48f4fc 100644
|
||||
height: 50px;
|
||||
background-color: $selected_bg_color;
|
||||
color: $selected_fg_color;
|
||||
@@ -781,6 +782,11 @@ StScrollBar {
|
||||
@@ -781,6 +794,11 @@ StScrollBar {
|
||||
color: lighten($fg_color,10%);
|
||||
}
|
||||
|
||||
@ -34,7 +53,7 @@ index a6357ba..b48f4fc 100644
|
||||
.system-status-icon { icon-size: 1.09em; padding: 0 5px; }
|
||||
.unlock-screen &,
|
||||
.login-screen &,
|
||||
@@ -1406,6 +1412,14 @@ StScrollBar {
|
||||
@@ -1406,6 +1424,14 @@ StScrollBar {
|
||||
|
||||
}
|
||||
|
||||
@ -49,7 +68,7 @@ index a6357ba..b48f4fc 100644
|
||||
.app-well-app-running-dot { //running apps indicator
|
||||
width: 10px; height: 3px;
|
||||
background-color: $selected_bg_color;
|
||||
@@ -1801,7 +1815,12 @@ StScrollBar {
|
||||
@@ -1801,7 +1827,12 @@ StScrollBar {
|
||||
.login-dialog-banner { color: darken($osd_fg_color,10%); }
|
||||
.login-dialog-button-box { spacing: 5px; }
|
||||
.login-dialog-message-warning { color: $warning_color; }
|
||||
@ -63,7 +82,7 @@ index a6357ba..b48f4fc 100644
|
||||
.login-dialog-user-selection-box { padding: 100px 0px; }
|
||||
.login-dialog-not-listed-label {
|
||||
padding-left: 2px;
|
||||
@@ -1856,6 +1875,10 @@ StScrollBar {
|
||||
@@ -1856,6 +1887,10 @@ StScrollBar {
|
||||
padding-bottom: 12px;
|
||||
spacing: 8px;
|
||||
width: 23em;
|
||||
|
33
SOURCES/0001-apps-menu-Add-missing-chain-up.patch
Normal file
33
SOURCES/0001-apps-menu-Add-missing-chain-up.patch
Normal file
@ -0,0 +1,33 @@
|
||||
From 0bbeadadc41128b2be1f2b56c60b5a7a671d40da Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
||||
Date: Thu, 27 Jun 2019 03:57:53 +0200
|
||||
Subject: [PATCH] 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 b9e7111..9803cc1 100644
|
||||
--- a/extensions/apps-menu/extension.js
|
||||
+++ b/extensions/apps-menu/extension.js
|
||||
@@ -433,6 +433,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
|
||||
|
@ -1,34 +0,0 @@
|
||||
From babe8815e035e3cfe99b67e4d450676e43db7353 Mon Sep 17 00:00:00 2001
|
||||
From: Jakub Steiner <jimmac@gmail.com>
|
||||
Date: Tue, 14 Jan 2014 17:00:23 +0100
|
||||
Subject: [PATCH] classic: Shade panel in overview
|
||||
|
||||
... rather than using the top bar styling (negative space),
|
||||
base the overview panel on the classic grey and "darken"
|
||||
for overview.
|
||||
---
|
||||
data/gnome-classic.scss | 8 +++-----
|
||||
1 file changed, 3 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/data/gnome-classic.scss b/data/gnome-classic.scss
|
||||
index 9e23506..e8f4803 100644
|
||||
--- a/data/gnome-classic.scss
|
||||
+++ b/data/gnome-classic.scss
|
||||
@@ -19,11 +19,9 @@ $variant: 'light';
|
||||
border-bottom: 1px solid #666;
|
||||
app-icon-bottom-clip: 0px;
|
||||
&:overview {
|
||||
- background-color: #000;
|
||||
- background-gradient-end: #000;
|
||||
- border-top-color: #000;
|
||||
- border-bottom: 1px solid #000;
|
||||
- .panel-button { color: #fff; }
|
||||
+ background-color: darken($bg_color,5%);
|
||||
+ background-gradient-end: darken($bg_color,10%);
|
||||
+ .panel-button { color: darken($fg_color,5%); }
|
||||
}
|
||||
|
||||
.panel-button {
|
||||
--
|
||||
2.21.0
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,7 @@
|
||||
|
||||
Name: gnome-shell-extensions
|
||||
Version: 3.32.1
|
||||
Release: 5%{?dist}
|
||||
Release: 10%{?dist}
|
||||
Summary: Modify and extend GNOME Shell functionality and behavior
|
||||
|
||||
Group: User Interface/Desktops
|
||||
@ -27,13 +27,13 @@ Requires: gnome-shell >= %{min_gs_version}
|
||||
BuildArch: noarch
|
||||
|
||||
Patch0001: 0001-Update-style.patch
|
||||
Patch0002: 0001-classic-Shade-panel-in-overview.patch
|
||||
Patch0003: 0001-apps-menu-add-logo-icon-to-Applications-menu.patch
|
||||
Patch0004: add-extra-extensions.patch
|
||||
Patch0005: 0001-apps-menu-Explicitly-set-label_actor.patch
|
||||
Patch0006: resurrect-system-monitor.patch
|
||||
Patch0007: 0001-Include-top-icons-in-classic-session.patch
|
||||
Patch0008: more-classic-classic-mode.patch
|
||||
Patch0002: 0001-apps-menu-add-logo-icon-to-Applications-menu.patch
|
||||
Patch0003: add-extra-extensions.patch
|
||||
Patch0004: 0001-apps-menu-Explicitly-set-label_actor.patch
|
||||
Patch0005: resurrect-system-monitor.patch
|
||||
Patch0006: 0001-Include-top-icons-in-classic-session.patch
|
||||
Patch0007: more-classic-classic-mode.patch
|
||||
Patch0008: 0001-apps-menu-Add-missing-chain-up.patch
|
||||
|
||||
%description
|
||||
GNOME Shell Extensions is a collection of extensions providing additional and
|
||||
@ -467,6 +467,35 @@ cp $RPM_SOURCE_DIR/gnome-classic.desktop $RPM_BUILD_ROOT%{_datadir}/xsessions
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jul 24 2019 Florian Müllner <fmuellner@redhat.com> - 3.32.1-10
|
||||
- Drop obsolete downstream style patch
|
||||
- Keep classic notification styling
|
||||
Related: #1731372
|
||||
|
||||
* Thu Jul 18 2019 Florian Müllner <fmuellner@redhat.com> - 3.32.1-9
|
||||
- Backport classic style improvements
|
||||
Resolves: #1726093
|
||||
|
||||
* Thu Jul 04 2019 Florian Müllner <fmuellner@redhat.com> - 3.32.1-8
|
||||
- Allow closing window picker with Escape
|
||||
Resolves: #1725854
|
||||
|
||||
* Sat Jun 29 2019 Florian Müllner <fmuellner@redhat.com> - 3.32-1-7
|
||||
- Add window thumbnails to workspace switcher
|
||||
Resolves: #1723467
|
||||
- Fix apps-menu not disabling itself entirely
|
||||
Resolves: #1722047
|
||||
|
||||
* Tue Jun 25 2019 Florian Müllner <fmuellner@redhat.com> - 3.32-1-6
|
||||
- Fix new classic mode issues:
|
||||
- stray signal handler with overlay key
|
||||
Resolves: #1722844
|
||||
- improve DND support:
|
||||
+ don't consider regular windows
|
||||
(it doesn't work well, and GNOME 2 didn't support it either)
|
||||
+ indicate that workspace thumbs are drop targets
|
||||
Related: #1704360
|
||||
|
||||
* Tue Jun 18 2019 Florian Müllner <fmuellner@redhat.com> - 3.32.1-5
|
||||
- Small refinements after design feedback:
|
||||
- use default icon size in picker button to avoid blurriness
|
||||
|
Loading…
Reference in New Issue
Block a user