Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2017-02-18 03:16:29
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and      /work/SRC/openSUSE:Factory/.yast2.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2/yast2.changes      2017-01-23 
11:27:33.457526556 +0100
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2017-02-18 
03:16:30.810262675 +0100
@@ -1,0 +2,14 @@
+Wed Feb  8 14:39:13 UTC 2017 - jreidin...@suse.com
+
+- Allow Pattern selector to have more generic button names and
+  enablement (needed for poo#14936, bsc#1025415)
+- 3.2.14
+
+-------------------------------------------------------------------
+Fri Jan 20 18:58:27 UTC 2017 - jreidin...@suse.com
+
+- Fix error popup when replacing widget with CWM::ReplacePoint
+  (FATE#322328)
+- 3.2.13
+
+-------------------------------------------------------------------

Old:
----
  yast2-3.2.12.tar.bz2

New:
----
  yast2-3.2.14.tar.bz2

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

Other differences:
------------------
++++++ yast2.spec ++++++
--- /var/tmp/diff_new_pack.zHPC8M/_old  2017-02-18 03:16:31.394180206 +0100
+++ /var/tmp/diff_new_pack.zHPC8M/_new  2017-02-18 03:16:31.394180206 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.2.12
+Version:        3.2.14
 Release:        0
 Summary:        YaST2 - Main Package
 License:        GPL-2.0

++++++ yast2-3.2.12.tar.bz2 -> yast2-3.2.14.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.2.12/library/cwm/src/lib/cwm/widget.rb 
new/yast2-3.2.14/library/cwm/src/lib/cwm/widget.rb
--- old/yast2-3.2.12/library/cwm/src/lib/cwm/widget.rb  2017-01-20 
08:38:44.930398301 +0100
+++ new/yast2-3.2.14/library/cwm/src/lib/cwm/widget.rb  2017-02-16 
17:10:05.654221488 +0100
@@ -836,7 +836,7 @@
     # placeholder needed to be in dialog. Parameter type is limited by 
component
     # system
     # @param widget [CWM::AbstractWidget] initial widget in placeholder
-    def initialize(id: :_placeholder, widget: Empty.new(:_initial_placeholder))
+    def initialize(id: "_placeholder", widget: 
Empty.new("_initial_placeholder"))
       self.handle_all_events = true
       self.widget_id = id
       @widget = widget
@@ -855,7 +855,7 @@
     # @param widget [CWM::AbstractWidget] widget to display and process events
     def replace(widget)
       log.info "replacing with new widget #{widget.inspect}"
-      Yast::UI.ReplaceWidget(@id, widget_content(widget))
+      Yast::UI.ReplaceWidget(Id(widget_id), widget_content(widget))
       @widget = widget
       init
     end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.2.12/library/packages/src/modules/PackagesUI.rb 
new/yast2-3.2.14/library/packages/src/modules/PackagesUI.rb
--- old/yast2-3.2.12/library/packages/src/modules/PackagesUI.rb 2017-01-20 
08:38:44.974398301 +0100
+++ new/yast2-3.2.14/library/packages/src/modules/PackagesUI.rb 2017-02-16 
17:10:06.306221488 +0100
@@ -335,7 +335,7 @@
     # @return [Symbol] Return `accept or `cancel
     #
     #
-    def RunPatternSelector
+    def RunPatternSelector(enable_back: false, cancel_label: 
Label.CancelButton)
       Builtins.y2milestone("Running pattern selection dialog")
 
       if !UI.HasSpecialWidget(:PatternSelector) ||
@@ -378,9 +378,9 @@
       # [ Back ] [ Cancel ] [ Accept ] buttons with [ Back ] disabled
       Wizard.OpenNextBackDialog
       Wizard.SetBackButton(:back, Label.BackButton)
-      Wizard.SetAbortButton(:cancel, Label.CancelButton)
+      Wizard.SetAbortButton(:cancel, cancel_label)
       Wizard.SetNextButton(:accept, Label.OKButton)
-      Wizard.DisableBackButton
+      enable_back ? Wizard.EnableBackButton : Wizard.DisableBackButton
 
       Wizard.SetContents(
         # Dialog title
@@ -388,7 +388,7 @@
         _("Software Selection and System Tasks"),
         PatternSelector(Id(:patterns)),
         help_text,
-        false, # has_back
+        enable_back,
         true
       ) # has_next
 
@@ -408,7 +408,7 @@
             result = nil
           end
         end
-        break if result == :cancel || result == :accept
+        break if result == :cancel || result == :accept || result == :back
       end
 
       Wizard.CloseDialog
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.2.12/package/yast2.changes 
new/yast2-3.2.14/package/yast2.changes
--- old/yast2-3.2.12/package/yast2.changes      2017-01-20 08:38:45.022398301 
+0100
+++ new/yast2-3.2.14/package/yast2.changes      2017-02-16 17:10:06.686221488 
+0100
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Wed Feb  8 14:39:13 UTC 2017 - jreidin...@suse.com
+
+- Allow Pattern selector to have more generic button names and
+  enablement (needed for poo#14936, bsc#1025415)
+- 3.2.14
+
+-------------------------------------------------------------------
+Fri Jan 20 18:58:27 UTC 2017 - jreidin...@suse.com
+
+- Fix error popup when replacing widget with CWM::ReplacePoint
+  (FATE#322328)
+- 3.2.13
+
+-------------------------------------------------------------------
 Thu Jan 19 13:49:10 UTC 2017 - jreidin...@suse.com
 
 - Added a CWM::ReplacePoint widget
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.2.12/package/yast2.spec 
new/yast2-3.2.14/package/yast2.spec
--- old/yast2-3.2.12/package/yast2.spec 2017-01-20 08:38:45.022398301 +0100
+++ new/yast2-3.2.14/package/yast2.spec 2017-02-16 17:10:06.686221488 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2
-Version:        3.2.12
+Version:        3.2.14
 Release:        0
 Summary:        YaST2 - Main Package
 License:        GPL-2.0


Reply via email to