commit yast2-installation for openSUSE:Factory
Hello community, here is the log from the commit of package yast2-installation for openSUSE:Factory checked in at 2014-07-30 07:34:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-installation (Old) and /work/SRC/openSUSE:Factory/.yast2-installation.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "yast2-installation" Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes 2014-07-27 08:25:58.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes 2014-07-30 07:34:46.000000000 +0200 @@ -1,0 +2,10 @@ +Mon Jul 28 11:52:43 UTC 2014 - lslezak@suse.cz + +- use short product name for the default base product release notes + (read from the installation medium) (bnc#885247) +- display at least an empty dialog when downloading release notes + to hide the previous dialog in the installation workflow + (bnc#889196) +- 3.1.106 + +------------------------------------------------------------------- Old: ---- yast2-installation-3.1.105.tar.bz2 New: ---- yast2-installation-3.1.106.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-installation.spec ++++++ --- /var/tmp/diff_new_pack.XsgKVn/_old 2014-07-30 07:34:47.000000000 +0200 +++ /var/tmp/diff_new_pack.XsgKVn/_new 2014-07-30 07:34:47.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 3.1.105 +Version: 3.1.106 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ yast2-installation-3.1.105.tar.bz2 -> yast2-installation-3.1.106.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.105/package/yast2-installation.changes new/yast2-installation-3.1.106/package/yast2-installation.changes --- old/yast2-installation-3.1.105/package/yast2-installation.changes 2014-07-24 17:10:08.000000000 +0200 +++ new/yast2-installation-3.1.106/package/yast2-installation.changes 2014-07-28 14:30:44.000000000 +0200 @@ -1,4 +1,14 @@ ------------------------------------------------------------------- +Mon Jul 28 11:52:43 UTC 2014 - lslezak@suse.cz + +- use short product name for the default base product release notes + (read from the installation medium) (bnc#885247) +- display at least an empty dialog when downloading release notes + to hide the previous dialog in the installation workflow + (bnc#889196) +- 3.1.106 + +------------------------------------------------------------------- Thu Jul 24 14:42:59 UTC 2014 - lslezak@suse.cz - do not repeat release notes downloading on network time out diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.105/package/yast2-installation.spec new/yast2-installation-3.1.106/package/yast2-installation.spec --- old/yast2-installation-3.1.105/package/yast2-installation.spec 2014-07-24 17:10:08.000000000 +0200 +++ new/yast2-installation-3.1.106/package/yast2-installation.spec 2014-07-28 14:30:44.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-installation -Version: 3.1.105 +Version: 3.1.106 Release: 0 BuildRoot: %{_tmppath}/%{name}-%{version}-build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.105/src/clients/inst_download_release_notes.rb new/yast2-installation-3.1.106/src/clients/inst_download_release_notes.rb --- old/yast2-installation-3.1.105/src/clients/inst_download_release_notes.rb 2014-07-24 17:10:08.000000000 +0200 +++ new/yast2-installation-3.1.106/src/clients/inst_download_release_notes.rb 2014-07-28 14:30:44.000000000 +0200 @@ -35,6 +35,7 @@ Yast.import "InstData" Yast.import "Stage" Yast.import "GetInstArgs" + Yast.import "Wizard" include Yast::Logger @@ -116,7 +117,6 @@ String.Quote(Directory.logdir), "curl_log" ) - # TODO: wrap in a Popup.Feedback call, it can take long time ret = SCR.Execute(path(".target.bash"), cmd) log.info("Downloading release notes: #{cmd} returned #{ret}") if ret == 0 @@ -141,6 +141,13 @@ true end + # Set the UI content to show some progress. + # TODO FIXME: use a better title (reused existing texts because of text freeze) + def init_ui + Wizard.SetContents(_("Initializing"), Label(_("Initializing the installation...")), + "", false, false) + end + def main textdomain "installation" @@ -148,6 +155,8 @@ return :back end + init_ui + download_release_notes :auto end diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-installation-3.1.105/src/clients/inst_system_analysis.rb new/yast2-installation-3.1.106/src/clients/inst_system_analysis.rb --- old/yast2-installation-3.1.105/src/clients/inst_system_analysis.rb 2014-07-24 17:10:08.000000000 +0200 +++ new/yast2-installation-3.1.106/src/clients/inst_system_analysis.rb 2014-07-28 14:30:44.000000000 +0200 @@ -315,8 +315,12 @@ if load_release_notes(Packages.GetBaseSourceID) # push button Wizard.ShowReleaseNotesButton(_("Re&lease Notes..."), "rel_notes") - InstData.release_notes[Product.name] = @media_text - UI::SetReleaseNotes( { Product.name => @media_text } ) + + base_product = Product.FindBaseProducts.first || {} + product_name = base_product["name"] || _("Unknown Product") + + InstData.release_notes[product_name] = @media_text + UI::SetReleaseNotes( { product_name => @media_text } ) end end -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@hilbert.suse.de