Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2017-11-02 10:23:58
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-shell (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-shell.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-shell"

Thu Nov  2 10:23:58 2017 rev:143 rq:537529 version:3.26.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2017-10-21 
20:17:00.936374904 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes     
2017-11-02 10:23:57.913045696 +0100
@@ -1,0 +2,13 @@
+Sat Oct 28 15:43:07 UTC 2017 - [email protected]
+
+- Add gnome-shell-spawn-wifi-panel-for-wep-configuration.patch:
+  network: Spawn wifi panel for further WPA enterprise
+  configuration; patch taken from upstream git (bgo#789231).
+
+-------------------------------------------------------------------
+Thu Oct 26 02:13:56 UTC 2017 - [email protected]
+
+- Update gs-sle-classic-ext.patch: Fix the preview window is not
+  fully shown in overview mode (bsc#1064378).
+
+-------------------------------------------------------------------

New:
----
  gnome-shell-spawn-wifi-panel-for-wep-configuration.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ gnome-shell.spec ++++++
--- /var/tmp/diff_new_pack.J2Wwfh/_old  2017-11-02 10:23:59.888973677 +0100
+++ /var/tmp/diff_new_pack.J2Wwfh/_new  2017-11-02 10:23:59.896973385 +0100
@@ -43,6 +43,8 @@
 Patch4:         gnome-shell-osk-dont-popup-when-not-needed.patch
 # PATCH-FIX-UPSTREAM 
gnome-shell-unset-primary-and-bottom-monitor-when-headless.patch bgo#788607 
[email protected] -- unset primary and button monitor when headless; fixes a 
crash.
 Patch5:         
gnome-shell-unset-primary-and-bottom-monitor-when-headless.patch
+# PATCH-FIX-UPSTREAM gnome-shell-spawn-wifi-panel-for-wep-configuration.patch 
bgo#789231 [email protected] -- network: Spawn wifi panel for further WPA 
enterprise configuration
+Patch6:         gnome-shell-spawn-wifi-panel-for-wep-configuration.patch
 
 ## NOTE: Keep SLE only patches at bottom (starting on 1000).
 # PATCH-FEATURE-SLE gnome-shell-gdm-login-applet.patch fate#314545 
[email protected] -- Add an applet on login UI to display suse icon, product 
name, hostname.
@@ -193,6 +195,7 @@
 %patch3 -p1
 %patch4 -p1
 %patch5 -p1
+%patch6 -p1
 
 %if !0%{?is_opensuse}
 %patch1001 -p1

++++++ gnome-shell-spawn-wifi-panel-for-wep-configuration.patch ++++++
>From 78d58deb5afbe4fc06319553d4ed975053589d00 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <[email protected]>
Date: Fri, 20 Oct 2017 15:29:07 +0200
Subject: network: Spawn wifi panel for further WPA enterprise configuration

Settings recently split Wi-Fi configuration from the Network panel,
so launch that instead.

https://bugzilla.gnome.org/show_bug.cgi?id=789231
---
 js/ui/status/network.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index 02a43c1..9575af7 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -951,7 +951,7 @@ var NMWirelessDialog = new Lang.Class({
                 || (accessPoints[0]._secType == 
NMAccessPointSecurity.WPA_ENT)) {
                 // 802.1x-enabled APs require further configuration, so they're
                 // handled in gnome-control-center
-                Util.spawn(['gnome-control-center', 'network', 
'connect-8021x-wifi',
+                Util.spawn(['gnome-control-center', 'wifi', 
'connect-8021x-wifi',
                             this._device.get_path(), 
accessPoints[0].dbus_path]);
             } else {
                 let connection = new NetworkManager.Connection();
-- 
cgit v0.12

++++++ gs-sle-classic-ext.patch ++++++
--- /var/tmp/diff_new_pack.J2Wwfh/_old  2017-11-02 10:24:00.036968283 +0100
+++ /var/tmp/diff_new_pack.J2Wwfh/_new  2017-11-02 10:24:00.040968137 +0100
@@ -2,7 +2,7 @@
 ===================================================================
 --- gnome-shell-3.26.1.orig/js/js-resources.gresource.xml
 +++ gnome-shell-3.26.1/js/js-resources.gresource.xml
-@@ -109,6 +109,7 @@
+@@ -111,6 +111,7 @@
      <file>ui/workspaceThumbnail.js</file>
      <file>ui/workspacesView.js</file>
      <file>ui/xdndHandler.js</file>
@@ -23,7 +23,7 @@
  function isPopupMetaWindow(actor) {
      switch(actor.meta_window.get_window_type()) {
      case Meta.WindowType.DROPDOWN_MENU:
-@@ -474,7 +476,7 @@ var LayoutManager = new Lang.Class({
+@@ -477,7 +479,7 @@ var LayoutManager = new Lang.Class({
          if (!this.primaryMonitor)
              return;
  
@@ -67,7 +67,7 @@
  var PANEL_ICON_SIZE = 16;
  var APP_MENU_ICON_MARGIN = 0;
  
-@@ -855,7 +857,9 @@ var Panel = new Lang.Class({
+@@ -856,7 +858,9 @@ var Panel = new Lang.Class({
          alloc.natural_size = -1;
      },
  
@@ -99,3 +99,58 @@
      } catch(e) {
          return;
      }
+Index: gnome-shell-3.26.1/js/ui/overviewControls.js
+===================================================================
+--- gnome-shell-3.26.1.orig/js/ui/overviewControls.js
++++ gnome-shell-3.26.1/js/ui/overviewControls.js
+@@ -13,6 +13,7 @@ const Params = imports.misc.params;
+ const Tweener = imports.ui.tweener;
+ const ViewSelector = imports.ui.viewSelector;
+ const WorkspaceThumbnail = imports.ui.workspaceThumbnail;
++const SLEClassicExt = imports.ui.SLEClassicExt;
+ 
+ var SIDE_CONTROLS_ANIMATION_TIME = 0.16;
+ 
+@@ -459,6 +460,9 @@ var ControlsManager = new Lang.Class({
+         geometry.width -= dashWidth;
+         geometry.width -= thumbnailsWidth;
+ 
++        if(SLEClassicExt.isSLEClassicMode())
++            geometry.height -= Main.layoutManager.panelBox.height;
++
+         if (this.actor.get_text_direction() == Clutter.TextDirection.LTR)
+             geometry.x += dashWidth;
+         else
+Index: gnome-shell-3.26.1/js/ui/workspace.js
+===================================================================
+--- gnome-shell-3.26.1.orig/js/ui/workspace.js
++++ gnome-shell-3.26.1/js/ui/workspace.js
+@@ -17,6 +17,7 @@ const Main = imports.ui.main;
+ const Overview = imports.ui.overview;
+ const Tweener = imports.ui.tweener;
+ const WindowManager = imports.ui.windowManager;
++const SLEClassicExt = imports.ui.SLEClassicExt;
+ 
+ var WINDOW_DND_SIZE = 256;
+ 
+@@ -869,6 +870,9 @@ var LayoutStrategy = new Lang.Class({
+         let hspacing = (layout.maxColumns - 1) * this._columnSpacing;
+         let vspacing = (layout.numRows - 1) * this._rowSpacing;
+ 
++        if(SLEClassicExt.isSLEClassicMode())
++            vspacing = layout.numRows * this._rowSpacing;
++
+         let spacedWidth = area.width - hspacing;
+         let spacedHeight = area.height - vspacing;
+ 
+@@ -901,6 +905,10 @@ var LayoutStrategy = new Lang.Class({
+         }
+ 
+         let verticalSpacing = (rows.length - 1) * this._rowSpacing;
++
++        if(SLEClassicExt.isSLEClassicMode())
++            verticalSpacing = rows.length * this._rowSpacing;
++
+         let additionalVerticalScale = Math.min(1, (area.height - 
verticalSpacing) / heightWithoutSpacing);
+ 
+         // keep track how much smaller the grid becomes due to scaling



Reply via email to