Hello community, here is the log from the commit of package yast2-docker for openSUSE:Factory checked in at 2015-03-09 10:09:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-docker (Old) and /work/SRC/openSUSE:Factory/.yast2-docker.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-docker" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-docker/yast2-docker.changes 2015-03-01 14:46:49.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.yast2-docker.new/yast2-docker.changes 2015-03-09 10:09:45.000000000 +0100 @@ -1,0 +2,7 @@ +Fri Mar 6 13:46:39 UTC 2015 - [email protected] + +- Release 3.1.3 + - Fixed an error handling the cancel button at the ports and + volumes pop-up windows (bnc#920638) + +------------------------------------------------------------------- Old: ---- yast2-docker-3.1.2.tar.bz2 New: ---- yast2-docker-3.1.3.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-docker.spec ++++++ --- /var/tmp/diff_new_pack.YybUlJ/_old 2015-03-09 10:09:46.000000000 +0100 +++ /var/tmp/diff_new_pack.YybUlJ/_new 2015-03-09 10:09:46.000000000 +0100 @@ -24,7 +24,7 @@ ###################################################################### Name: yast2-docker -Version: 3.1.2 +Version: 3.1.3 Release: 0 BuildArch: noarch ++++++ yast2-docker-3.1.2.tar.bz2 -> yast2-docker-3.1.3.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-docker-3.1.2/package/yast2-docker.changes new/yast2-docker-3.1.3/package/yast2-docker.changes --- old/yast2-docker-3.1.2/package/yast2-docker.changes 2015-02-25 09:53:11.000000000 +0100 +++ new/yast2-docker-3.1.3/package/yast2-docker.changes 2015-03-06 15:07:07.000000000 +0100 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Fri Mar 6 13:46:39 UTC 2015 - [email protected] + +- Release 3.1.3 + - Fixed an error handling the cancel button at the ports and + volumes pop-up windows (bnc#920638) + +------------------------------------------------------------------- Tue Feb 24 15:05:53 UTC 2015 - [email protected] - Release 3.1.2 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-docker-3.1.2/package/yast2-docker.spec new/yast2-docker-3.1.3/package/yast2-docker.spec --- old/yast2-docker-3.1.2/package/yast2-docker.spec 2015-02-25 09:53:11.000000000 +0100 +++ new/yast2-docker-3.1.3/package/yast2-docker.spec 2015-03-06 15:07:07.000000000 +0100 @@ -24,7 +24,7 @@ ###################################################################### Name: yast2-docker -Version: 3.1.2 +Version: 3.1.3 Release: 0 BuildArch: noarch diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-docker-3.1.2/src/lib/ydocker/run_image_dialog.rb new/yast2-docker-3.1.3/src/lib/ydocker/run_image_dialog.rb --- old/yast2-docker-3.1.2/src/lib/ydocker/run_image_dialog.rb 2015-02-25 09:53:11.000000000 +0100 +++ new/yast2-docker-3.1.3/src/lib/ydocker/run_image_dialog.rb 2015-03-06 15:07:07.000000000 +0100 @@ -174,13 +174,15 @@ ) ) - return if Yast::UI.UserInput == :cancel + if Yast::UI.UserInput == :cancel + Yast::UI.CloseDialog + else + @volumes << { :source => dir, :target => Yast::UI.QueryWidget(:target, :Value) } - @volumes << { :source => dir, :target => Yast::UI.QueryWidget(:target, :Value) } + Yast::UI.CloseDialog - Yast::UI.CloseDialog - - redraw_volumes + redraw_volumes + end end def remove_volume @@ -200,16 +202,18 @@ ) ) - return if Yast::UI.UserInput == :cancel - - @ports << { - :external => Yast::UI.QueryWidget(:external, :Value), - :internal => Yast::UI.QueryWidget(:internal, :Value) - } + if Yast::UI.UserInput == :cancel + Yast::UI.CloseDialog + else + @ports << { + :external => Yast::UI.QueryWidget(:external, :Value), + :internal => Yast::UI.QueryWidget(:internal, :Value) + } - Yast::UI.CloseDialog + Yast::UI.CloseDialog - redraw_ports + redraw_ports + end end def remove_port -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
