Hello community,
here is the log from the commit of package gnome-shell-extensions for
openSUSE:Factory checked in at 2020-04-23 18:28:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-shell-extensions (Old)
and /work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.2738 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-shell-extensions"
Thu Apr 23 18:28:38 2020 rev:97 rq:795263 version:3.36.1
Changes:
--------
---
/work/SRC/openSUSE:Factory/gnome-shell-extensions/gnome-shell-extensions.changes
2020-03-30 22:51:16.739768953 +0200
+++
/work/SRC/openSUSE:Factory/.gnome-shell-extensions.new.2738/gnome-shell-extensions.changes
2020-04-23 18:28:43.747891623 +0200
@@ -1,0 +2,52 @@
+Fri Apr 17 03:36:01 UTC 2020 - Bjørn Lie <[email protected]>
+
+- Update to version 3.36.1:
+ + Updated translations.
+
+-------------------------------------------------------------------
+Fri Apr 17 03:36:00 UTC 2020 - Bjørn Lie <[email protected]>
+
+- Update to version 3.36.0:
+ + Update sass submodule.
+ + build: Switch to js68 for tests.
+
+-------------------------------------------------------------------
+Fri Apr 17 03:35:55 UTC 2020 - xiaoguang wang <[email protected]>
+
+- Adapt sle-classic to 3.35.92:
+ + Update gse-sle-classic-ext.patch
+ + Update [email protected]
+
+-------------------------------------------------------------------
+Fri Apr 17 03:35:54 UTC 2020 - [email protected]
+
+- Update to version 3.35.92:
+ + Update sass submodule.
+
+-------------------------------------------------------------------
+Fri Apr 17 03:35:53 UTC 2020 - Dominique Leuenberger <[email protected]>
+
+- Build extension-user-theme as noarch: there is nothing arch
+ dependant in this package.
+
+-------------------------------------------------------------------
+Fri Apr 17 03:35:52 UTC 2020 - Dominique Leuenberger <[email protected]>
+
+- Update to version 3.35.91:
+ + Updated translations.
+
+-------------------------------------------------------------------
+Fri Apr 17 03:35:50 UTC 2020 - [email protected]
+
+- Update to version 3.35.90:
+ + Adjust to gnome-shell changes.
+ + Force single-line window titles in window list.
+ + Misc. bug fixes and cleanup.
+- Changes from version 3.35.2:
+ + Adjust to gnome-shell changes.
+ + window-list, workspace-indicator: Exclude DESKTOP windows from
+ previews.
+ + screenshot-window-sizer: Fix cycling through all valid sizes.
+ + Updated translations.
+
+-------------------------------------------------------------------
Old:
----
gnome-shell-extensions-3.34.2.tar.xz
New:
----
gnome-shell-extensions-3.36.1.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ gnome-shell-extensions.spec ++++++
--- /var/tmp/diff_new_pack.qmgDMM/_old 2020-04-23 18:28:44.507893077 +0200
+++ /var/tmp/diff_new_pack.qmgDMM/_new 2020-04-23 18:28:44.511893084 +0200
@@ -19,13 +19,13 @@
%global __requires_exclude typelib\\(Meta\\)
Name: gnome-shell-extensions
-Version: 3.34.2
+Version: 3.36.1
Release: 0
Summary: A collection of extensions for GNOME Shell
License: GPL-2.0-or-later
Group: System/GUI/GNOME
URL: https://wiki.gnome.org/Projects/GnomeShell/Extensions
-Source0:
https://download.gnome.org/sources/gnome-shell-extensions/3.34/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gnome-shell-extensions/3.36/%{name}-%{version}.tar.xz
Source1: README.SUSE
Source2: sle-classic.desktop
Source3: SLE-theme.tar.gz
@@ -106,6 +106,7 @@
%package -n gnome-shell-extension-user-theme
Summary: Allow the user to change GNOME Shell Themes
Group: System/GUI/GNOME
+BuildArch: noarch
%description -n gnome-shell-extension-user-theme
This extension allows the user to switch to different themes. It's possible
++++++ gnome-shell-extensions-3.34.2.tar.xz ->
gnome-shell-extensions-3.36.1.tar.xz ++++++
++++ 8055 lines of diff (skipped)
++++++ gse-sle-classic-ext.patch ++++++
--- /var/tmp/diff_new_pack.qmgDMM/_old 2020-04-23 18:28:44.727893498 +0200
+++ /var/tmp/diff_new_pack.qmgDMM/_new 2020-04-23 18:28:44.727893498 +0200
@@ -1,7 +1,7 @@
-Index: gnome-shell-extensions-3.34.1/extensions/window-list/extension.js
+Index: gnome-shell-extensions-3.35.92/extensions/window-list/extension.js
===================================================================
---- gnome-shell-extensions-3.34.1.orig/extensions/window-list/extension.js
-+++ gnome-shell-extensions-3.34.1/extensions/window-list/extension.js
+--- gnome-shell-extensions-3.35.92.orig/extensions/window-list/extension.js
++++ gnome-shell-extensions-3.35.92/extensions/window-list/extension.js
@@ -23,6 +23,9 @@ const GroupingMode = {
ALWAYS: 2,
};
@@ -12,7 +12,7 @@
function _minimizeOrActivateWindow(window) {
let focusWindow = global.display.focus_window;
-@@ -691,11 +694,13 @@ const WindowList = GObject.registerClass
+@@ -687,11 +690,13 @@ class WindowList extends St.Widget {
let box = new St.BoxLayout({ x_expand: true, y_expand: true });
this.add_actor(box);
@@ -30,7 +30,7 @@
let layout = new Clutter.BoxLayout({ homogeneous: true });
this._windowList = new St.Widget({
-@@ -837,7 +842,8 @@ const WindowList = GObject.registerClass
+@@ -833,7 +838,8 @@ class WindowList extends St.Widget {
let workspacesOnMonitor = this._monitor ===
Main.layoutManager.primaryMonitor ||
!this._mutterSettings.get_boolean('workspaces-only-on-primary');
@@ -40,7 +40,7 @@
}
_updateWindowListVisibility() {
-@@ -873,6 +879,9 @@ const WindowList = GObject.registerClass
+@@ -869,6 +875,9 @@ class WindowList extends St.Widget {
}
_getMaxWindowListWidth() {
@@ -50,7 +50,7 @@
let indicatorsBox = this._workspaceIndicator.get_parent();
return this.width - indicatorsBox.get_preferred_width(-1)[1];
}
-@@ -1082,7 +1091,8 @@ const WindowList = GObject.registerClass
+@@ -1078,7 +1087,8 @@ class WindowList extends St.Widget {
this._mutterSettings.disconnect(this._workspacesOnlyOnPrimaryChangedId);
this._mutterSettings.disconnect(this._dynamicWorkspacesChangedId);
@@ -60,7 +60,7 @@
Main.ctrlAltTabManager.removeGroup(this);
-@@ -1122,6 +1132,7 @@ class Extension {
+@@ -1118,6 +1128,7 @@ class Extension {
constructor() {
this._windowLists = null;
this._hideOverviewOrig = Main.overview.hide;
@@ -68,7 +68,7 @@
}
enable() {
-@@ -1141,19 +1152,47 @@ class Extension {
+@@ -1137,19 +1148,47 @@ class Extension {
this._hideOverviewOrig.call(Main.overview);
};
@@ -120,7 +120,7 @@
}
disable() {
-@@ -1167,6 +1206,11 @@ class Extension {
+@@ -1163,6 +1202,11 @@ class Extension {
this._monitorsChangedId = 0;
this._windowLists.forEach(windowList => {
@@ -132,7 +132,7 @@
windowList.hide();
windowList.destroy();
});
-@@ -1175,6 +1219,11 @@ class Extension {
+@@ -1171,6 +1215,11 @@ class Extension {
Main.windowPicker.destroy();
delete Main.windowPicker;
@@ -144,10 +144,10 @@
Main.overview.hide = this._hideOverviewOrig;
}
-Index: gnome-shell-extensions-3.34.1/extensions/window-list/sle-classic.css
+Index: gnome-shell-extensions-3.35.92/extensions/window-list/sle-classic.css
===================================================================
--- /dev/null
-+++ gnome-shell-extensions-3.34.1/extensions/window-list/sle-classic.css
++++ gnome-shell-extensions-3.35.92/extensions/window-list/sle-classic.css
@@ -0,0 +1,46 @@
+@import url("stylesheet.css");
+
@@ -195,10 +195,10 @@
+ color: #888;
+ box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5);
+ }
-Index: gnome-shell-extensions-3.34.1/extensions/places-menu/extension.js
+Index: gnome-shell-extensions-3.35.92/extensions/places-menu/extension.js
===================================================================
---- gnome-shell-extensions-3.34.1.orig/extensions/places-menu/extension.js
-+++ gnome-shell-extensions-3.34.1/extensions/places-menu/extension.js
+--- gnome-shell-extensions-3.35.92.orig/extensions/places-menu/extension.js
++++ gnome-shell-extensions-3.35.92/extensions/places-menu/extension.js
@@ -133,13 +133,21 @@ function init() {
let _indicator;
@@ -222,10 +222,10 @@
}
function disable() {
-Index: gnome-shell-extensions-3.34.1/extensions/apps-menu/extension.js
+Index: gnome-shell-extensions-3.35.92/extensions/apps-menu/extension.js
===================================================================
---- gnome-shell-extensions-3.34.1.orig/extensions/apps-menu/extension.js
-+++ gnome-shell-extensions-3.34.1/extensions/apps-menu/extension.js
+--- gnome-shell-extensions-3.35.92.orig/extensions/apps-menu/extension.js
++++ gnome-shell-extensions-3.35.92/extensions/apps-menu/extension.js
@@ -27,6 +27,10 @@ const NAVIGATION_REGION_OVERSHOOT = 50;
Gio._promisify(Gio._LocalFilePrototype, 'query_info_async',
'query_info_finish');
Gio._promisify(Gio._LocalFilePrototype, 'set_attributes_async',
'set_attributes_finish');
@@ -237,7 +237,7 @@
var ApplicationMenuItem = GObject.registerClass(
class ApplicationMenuItem extends PopupMenu.PopupBaseMenuItem {
_init(button, app) {
-@@ -728,8 +732,6 @@ class ApplicationsButton extends PanelMe
+@@ -710,8 +714,6 @@ class ApplicationsButton extends PanelMe
this.applicationsByCategory = {};
this._tree.load_sync();
let root = this._tree.get_root_directory();
@@ -246,7 +246,7 @@
let iter = root.iter();
let nextType;
while ((nextType = iter.next()) !== GMenu.TreeItemType.INVALID) {
-@@ -744,11 +746,15 @@ class ApplicationsButton extends PanelMe
+@@ -726,11 +728,15 @@ class ApplicationsButton extends PanelMe
this.applicationsByCategory[categoryId] = [];
this._loadCategory(categoryId, dir);
if (this.applicationsByCategory[categoryId].length > 0) {
@@ -264,7 +264,7 @@
// Load applications
this._displayButtons(this._listApplications(null));
-@@ -811,7 +817,10 @@ let appsMenuButton;
+@@ -793,7 +799,10 @@ let appsMenuButton;
function enable() {
appsMenuButton = new ApplicationsButton();
let index = Main.sessionMode.panel.left.indexOf('activities') + 1;
@@ -276,11 +276,11 @@
}
function disable() {
-Index: gnome-shell-extensions-3.34.1/data/gnome-classic.scss
+Index: gnome-shell-extensions-3.35.92/data/gnome-classic.scss
===================================================================
---- gnome-shell-extensions-3.34.1.orig/data/gnome-classic.scss
-+++ gnome-shell-extensions-3.34.1/data/gnome-classic.scss
-@@ -62,9 +62,9 @@ $variant: 'light';
+--- gnome-shell-extensions-3.35.92.orig/data/gnome-classic.scss
++++ gnome-shell-extensions-3.35.92/data/gnome-classic.scss
+@@ -63,9 +63,9 @@ $variant: 'light';
&.lock-screen,
&.unlock-screen,
&.login-screen {
@@ -293,7 +293,7 @@
border-bottom: none;
.panel-button { color: $osd_fg_color; }
}
-@@ -93,3 +93,5 @@ $variant: 'light';
+@@ -94,3 +94,5 @@ $variant: 'light';
background-image: url("calendar-today.svg");
}
++++++ [email protected] ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/[email protected]/extension.js
new/[email protected]/extension.js
--- old/[email protected]/extension.js 2019-09-06 06:23:44.183867839
+0200
+++ new/[email protected]/extension.js 2020-03-04 05:49:53.005680038
+0100
@@ -123,21 +123,21 @@
let cornerWidth, cornerHeight;
let childBox = new Clutter.ActorBox();
- [cornerMinWidth, cornerWidth] =
this._leftCorner.actor.get_preferred_width(-1);
- [cornerMinHeight, cornerHeight] =
this._leftCorner.actor.get_preferred_height(-1);
+ [cornerMinWidth, cornerWidth] = this._leftCorner.get_preferred_width(-1);
+ [cornerMinHeight, cornerHeight] =
this._leftCorner.get_preferred_height(-1);
childBox.x1 = 0;
childBox.x2 = cornerWidth;
childBox.y1 = allocHeight;
childBox.y2 = allocHeight + cornerHeight;
- this._leftCorner.actor.allocate(childBox, flags);
+ this._leftCorner.allocate(childBox, flags);
- [cornerMinWidth, cornerWidth] =
this._rightCorner.actor.get_preferred_width(-1);
- [cornerMinHeight, cornerHeight] =
this._rightCorner.actor.get_preferred_height(-1);
+ [cornerMinWidth, cornerWidth] = this._rightCorner.get_preferred_width(-1);
+ [cornerMinHeight, cornerHeight] =
this._rightCorner.get_preferred_height(-1);
childBox.x1 = allocWidth - cornerWidth;
childBox.x2 = allocWidth;
childBox.y1 = allocHeight;
childBox.y2 = allocHeight + cornerHeight;
- this._rightCorner.actor.allocate(childBox, flags);
+ this._rightCorner.allocate(childBox, flags);
}
// layout.js: Replace the origin "box.set_position" call
@@ -164,11 +164,11 @@
//bsc#1064378
function _updateWorkspacesGeometryNew() {
- let [x, y] = this.actor.get_transformed_position();
- let [width, height] = this.actor.get_transformed_size();
+ let [x, y] = this.get_transformed_position();
+ let [width, height] = this.get_transformed_size();
let geometry = { x: x, y: y, width: width, height: height };
- let spacing = this.actor.get_theme_node().get_length('spacing');
+ let spacing = this.get_theme_node().get_length('spacing');
let dashWidth = this._dashSlider.getVisibleWidth() + spacing;
let thumbnailsWidth = this._thumbnailsSlider.getNonExpandedWidth() +
spacing;
@@ -178,7 +178,7 @@
//decrease bottom panel height
geometry.height -= Main.layoutManager.panelBox.height;
- if (this.actor.get_text_direction() == Clutter.TextDirection.LTR)
+ if (this.get_text_direction() == Clutter.TextDirection.LTR)
geometry.x += dashWidth;
else
geometry.x += thumbnailsWidth;
@@ -319,8 +319,8 @@
Main.layoutManager._updateBoxes = _updateBoxesNew;
//bsc#1064378
- let layout = Main.overview._controls.actor.layout_manager;
- layoutAllocationChangedId = layout.connect('allocation-changed',
_updateWorkspacesGeometryNew.bind(Main.overview._controls));
+ let layout = Main.overview._overview._controls.layout_manager;
+ layoutAllocationChangedId = layout.connect('allocation-changed',
_updateWorkspacesGeometryNew.bind(Main.overview._overview._controls));
//bsc#1064378
Workspace.LayoutStrategy.prototype.computeScaleAndSpace =
computeScaleAndSpaceNew;
@@ -348,7 +348,7 @@
Main.layoutManager._updateBoxes = _updateBoxesOrigin;
//bsc#1064378
- let layout = Main.overview._controls.actor.layout_manager;
+ let layout = Main.overview._overview._controls.layout_manager;
if (layoutAllocationChangedId)
layout.disconnect(layoutAllocationChangedId);