Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2015-08-29 20:02:26
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-network (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-network.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-network"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes      
2015-08-21 12:41:54.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2015-08-29 20:02:36.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Aug 27 20:29:41 UTC 2015 - mfi...@suse.com
+
+- bnc#846201
+  - made bridge port selection persistent across tab switching
+- 3.1.128
+
+-------------------------------------------------------------------

Old:
----
  yast2-network-3.1.127.tar.bz2

New:
----
  yast2-network-3.1.128.tar.bz2

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

Other differences:
------------------
++++++ yast2-network.spec ++++++
--- /var/tmp/diff_new_pack.i1S4YL/_old  2015-08-29 20:02:37.000000000 +0200
+++ /var/tmp/diff_new_pack.i1S4YL/_new  2015-08-29 20:02:37.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-network
-Version:        3.1.127
+Version:        3.1.128
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-network-3.1.127.tar.bz2 -> yast2-network-3.1.128.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.127/package/yast2-network.changes 
new/yast2-network-3.1.128/package/yast2-network.changes
--- old/yast2-network-3.1.127/package/yast2-network.changes     2015-08-18 
15:27:08.000000000 +0200
+++ new/yast2-network-3.1.128/package/yast2-network.changes     2015-08-28 
09:02:14.000000000 +0200
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Thu Aug 27 20:29:41 UTC 2015 - mfi...@suse.com
+
+- bnc#846201
+  - made bridge port selection persistent across tab switching
+- 3.1.128
+
+-------------------------------------------------------------------
 Tue Aug 18 12:29:56 UTC 2015 - mfi...@suse.com
 
 - bnc#940892
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.127/package/yast2-network.spec 
new/yast2-network-3.1.128/package/yast2-network.spec
--- old/yast2-network-3.1.127/package/yast2-network.spec        2015-08-18 
15:27:08.000000000 +0200
+++ new/yast2-network-3.1.128/package/yast2-network.spec        2015-08-28 
09:02:14.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-network
-Version:        3.1.127
+Version:        3.1.128
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.127/src/include/network/lan/address.rb 
new/yast2-network-3.1.128/src/include/network/lan/address.rb
--- old/yast2-network-3.1.127/src/include/network/lan/address.rb        
2015-08-18 15:27:08.000000000 +0200
+++ new/yast2-network-3.1.128/src/include/network/lan/address.rb        
2015-08-28 09:02:14.000000000 +0200
@@ -446,6 +446,24 @@
       nil
     end
 
+    # Initializes widget (BRIDGE_PORTS) which contains list of devices 
available
+    # for enslaving in a brige.
+    #
+    # @param [String] key      id of the widget
+    def InitBridge(key)
+      br_ports = @settings["BRIDGE_PORTS"] || ""
+      br_ports = NetworkInterfaces.Current["BRIDGE_PORTS"] || "" if 
br_ports.empty?
+
+      items = CreateSlaveItems(
+        LanItems.GetBridgeableInterfaces(LanItems.GetCurrentName),
+        br_ports.split
+      )
+
+      UI.ChangeWidget(Id(key), :Items, items)
+
+      nil
+    end
+
     # Default function to store the value of devices attached to bridge 
(BRIDGE_PORTS).
     # @param [String] key      id of the widget
     # @param [String] key id of the widget
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.127/src/include/network/lan/bridge.rb 
new/yast2-network-3.1.128/src/include/network/lan/bridge.rb
--- old/yast2-network-3.1.127/src/include/network/lan/bridge.rb 2015-08-18 
15:27:08.000000000 +0200
+++ new/yast2-network-3.1.128/src/include/network/lan/bridge.rb 2015-08-28 
09:02:14.000000000 +0200
@@ -34,23 +34,6 @@
       textdomain "network"
     end
 
-    # Initializes widget (BRIDGE_PORTS) which contains list of devices 
available
-    # for enslaving in a brige.
-    #
-    # @param [String] key      id of the widget
-    def InitBridge(key)
-      br_ports = (NetworkInterfaces.Current["BRIDGE_PORTS"] || "").split
-
-      items = CreateSlaveItems(
-        LanItems.GetBridgeableInterfaces(LanItems.GetCurrentName),
-        br_ports
-      )
-
-      UI.ChangeWidget(Id(key), :Items, items)
-
-      nil
-    end
-
     # Immediately updates device's ifcfg to be usable as bridge port.
     #
     # It mainly setups suitable BOOTPROTO an IP related values


Reply via email to