Hello community,
here is the log from the commit of package yast2-bootloader for
openSUSE:Factory checked in at 2019-02-04 16:07:57
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-bootloader (Old)
and /work/SRC/openSUSE:Factory/.yast2-bootloader.new.28833 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-bootloader"
Mon Feb 4 16:07:57 2019 rev:270 rq:669097 version:4.1.14
Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2018-12-31 09:42:18.934416755 +0100
+++
/work/SRC/openSUSE:Factory/.yast2-bootloader.new.28833/yast2-bootloader.changes
2019-02-04 16:08:10.098057122 +0100
@@ -1,0 +2,7 @@
+Fri Jan 25 10:13:29 UTC 2019 - [email protected]
+
+- Fit the "Boot Code Options" tab to full width even when there only
+ is the BootLoader selector (bsc#1120793)
+- 4.1.14
+
+-------------------------------------------------------------------
Old:
----
yast2-bootloader-4.1.13.tar.bz2
New:
----
yast2-bootloader-4.1.14.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yast2-bootloader.spec ++++++
--- /var/tmp/diff_new_pack.1HtlJU/_old 2019-02-04 16:08:12.650055523 +0100
+++ /var/tmp/diff_new_pack.1HtlJU/_new 2019-02-04 16:08:12.650055523 +0100
@@ -1,7 +1,7 @@
#
# spec file for package yast2-bootloader
#
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
Name: yast2-bootloader
-Version: 4.1.13
+Version: 4.1.14
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ yast2-bootloader-4.1.13.tar.bz2 -> yast2-bootloader-4.1.14.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-4.1.13/package/yast2-bootloader.changes
new/yast2-bootloader-4.1.14/package/yast2-bootloader.changes
--- old/yast2-bootloader-4.1.13/package/yast2-bootloader.changes
2018-12-04 16:58:26.000000000 +0100
+++ new/yast2-bootloader-4.1.14/package/yast2-bootloader.changes
2019-01-28 15:08:51.000000000 +0100
@@ -1,4 +1,11 @@
-------------------------------------------------------------------
+Fri Jan 25 10:13:29 UTC 2019 - [email protected]
+
+- Fit the "Boot Code Options" tab to full width even when there only
+ is the BootLoader selector (bsc#1120793)
+- 4.1.14
+
+-------------------------------------------------------------------
Tue Dec 4 15:14:47 UTC 2018 - [email protected]
- always use absolute path to binaries (bsc#1118291)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-4.1.13/package/yast2-bootloader.spec
new/yast2-bootloader-4.1.14/package/yast2-bootloader.spec
--- old/yast2-bootloader-4.1.13/package/yast2-bootloader.spec 2018-12-04
16:58:26.000000000 +0100
+++ new/yast2-bootloader-4.1.14/package/yast2-bootloader.spec 2019-01-28
15:08:51.000000000 +0100
@@ -17,7 +17,7 @@
Name: yast2-bootloader
-Version: 4.1.13
+Version: 4.1.14
Release: 0
BuildRoot: %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/yast2-bootloader-4.1.13/src/lib/bootloader/grub2_widgets.rb
new/yast2-bootloader-4.1.14/src/lib/bootloader/grub2_widgets.rb
--- old/yast2-bootloader-4.1.13/src/lib/bootloader/grub2_widgets.rb
2018-12-04 16:58:26.000000000 +0100
+++ new/yast2-bootloader-4.1.14/src/lib/bootloader/grub2_widgets.rb
2019-01-28 15:08:51.000000000 +0100
@@ -869,26 +869,8 @@
end
def contents
- widgets = []
-
- widgets << LoaderLocationWidget.new if loader_location_widget?
-
- if generic_mbr_widget?
- widgets << ActivateWidget.new
- widgets << GenericMBRWidget.new
- end
-
- widgets << SecureBootWidget.new if secure_boot_widget?
-
- widgets << TrustedBootWidget.new if trusted_boot_widget?
-
- widgets << PMBRWidget.new if pmbr_widget?
-
- widgets << DeviceMapWidget.new if device_map_button?
-
- widgets = widgets.map { |w| indented_widget(w) }
VBox(
- LoaderTypeWidget.new,
+ Left(LoaderTypeWidget.new),
*widgets,
VStretch()
)
@@ -896,8 +878,23 @@
private
- def indented_widget(widget)
- MarginBox(1, 0.5, Left(widget))
+ def widgets
+ w = []
+ w << LoaderLocationWidget.new if loader_location_widget?
+
+ if generic_mbr_widget?
+ w << ActivateWidget.new
+ w << GenericMBRWidget.new
+ end
+
+ w << SecureBootWidget.new if secure_boot_widget?
+ w << TrustedBootWidget.new if trusted_boot_widget?
+ w << PMBRWidget.new if pmbr_widget?
+ w << DeviceMapWidget.new if device_map_button?
+
+ w.map do |widget|
+ MarginBox(1, 0.5, Left(widget))
+ end
end
def loader_location_widget?