Hello community,

here is the log from the commit of package yast2-installation-control for 
openSUSE:Factory checked in at 2020-07-24 09:53:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-installation-control (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-installation-control.new.3592 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-installation-control"

Fri Jul 24 09:53:08 2020 rev:34 rq:822225 version:4.3.3

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/yast2-installation-control/yast2-installation-control.changes
    2020-06-10 00:37:14.617209511 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-installation-control.new.3592/yast2-installation-control.changes
  2020-07-24 09:54:09.477291836 +0200
@@ -1,0 +2,7 @@
+Wed Jul 22 11:01:03 UTC 2020 - José Iván López González <[email protected]>
+
+- Add options to configure the installation layout.
+- Related to jsc#PM-1998.
+- 4.3.3
+
+-------------------------------------------------------------------

Old:
----
  yast2-installation-control-4.3.2.tar.bz2

New:
----
  yast2-installation-control-4.3.3.tar.bz2

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

Other differences:
------------------
++++++ yast2-installation-control.spec ++++++
--- /var/tmp/diff_new_pack.kNBnxz/_old  2020-07-24 09:54:10.125292519 +0200
+++ /var/tmp/diff_new_pack.kNBnxz/_new  2020-07-24 09:54:10.129292524 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-installation-control
-Version:        4.3.2
+Version:        4.3.3
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-installation-control-4.3.2.tar.bz2 -> 
yast2-installation-control-4.3.3.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-installation-control-4.3.2/control/control.rnc 
new/yast2-installation-control-4.3.3/control/control.rnc
--- old/yast2-installation-control-4.3.2/control/control.rnc    2020-06-01 
15:03:23.000000000 +0200
+++ new/yast2-installation-control-4.3.3/control/control.rnc    2020-07-22 
13:48:24.000000000 +0200
@@ -157,6 +157,7 @@
     | self_update_url
     | self_update_id
     | installation_ui
+    | installation_layout
     | cpu_mitigations
     | full_system_media_name
     | full_system_download_url
@@ -264,8 +265,19 @@
 ## It is an ID used to query SCC for the self update repo.
 self_update_id =                       element self_update_id { STRING }
 # Installation UI (boo#1088785)
-## Enables alternative look of installation with sidebar
+## Enables alternative look of installation with sidebar.
+## This options is deprecated if favor of installation_layout.
 installation_ui =                      element installation_ui { "sidebar" }
+## Configures the installation UI layout.
+installation_layout = element installation_layout {
+  MAP,
+  (
+    ## General layout mode
+    element mode { "steps" | "title-on-left" | "title-on-top" }? &
+    ## Top banner where logo is usually placed
+    element banner { BOOLEAN }?
+  )
+}
 # Default value for CPU Mitigation settings in bootloader
 ## possible values are same as for autoyast and in UI - auto, nosmt, off, 
manual
 ## see ::Bootloader::CpuMitigations.from_string
@@ -652,7 +664,7 @@
 
 # ng element definitions
 
-partitioning_proposal = element proposal { 
+partitioning_proposal = element proposal {
   MAP,
   partitioning_proposal_elements
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-installation-control-4.3.2/control/control.rng 
new/yast2-installation-control-4.3.3/control/control.rng
--- old/yast2-installation-control-4.3.2/control/control.rng    2020-06-01 
15:03:23.000000000 +0200
+++ new/yast2-installation-control-4.3.3/control/control.rng    2020-07-22 
13:48:24.000000000 +0200
@@ -236,6 +236,7 @@
       <ref name="self_update_url"/>
       <ref name="self_update_id"/>
       <ref name="installation_ui"/>
+      <ref name="installation_layout"/>
       <ref name="cpu_mitigations"/>
       <ref name="full_system_media_name"/>
       <ref name="full_system_download_url"/>
@@ -531,11 +532,36 @@
   </define>
   <!-- Installation UI (boo#1088785) -->
   <define name="installation_ui">
-    <a:documentation>Enables alternative look of installation with 
sidebar</a:documentation>
+    <a:documentation>Enables alternative look of installation with sidebar.
+This options is deprecated if favor of installation_layout.</a:documentation>
     <element name="installation_ui">
       <value>sidebar</value>
     </element>
   </define>
+  <define name="installation_layout">
+    <a:documentation>Configures the installation UI layout.</a:documentation>
+    <element name="installation_layout">
+      <ref name="MAP"/>
+      <interleave>
+        <optional>
+          <element name="mode">
+            <a:documentation>General layout mode</a:documentation>
+            <choice>
+              <value>steps</value>
+              <value>title-on-left</value>
+              <value>title-on-top</value>
+            </choice>
+          </element>
+        </optional>
+        <optional>
+          <element name="banner">
+            <a:documentation>Top banner where logo is usually 
placed</a:documentation>
+            <ref name="BOOLEAN"/>
+          </element>
+        </optional>
+      </interleave>
+    </element>
+  </define>
   <!-- Default value for CPU Mitigation settings in bootloader -->
   <define name="cpu_mitigations">
     <a:documentation>possible values are same as for autoyast and in UI - 
auto, nosmt, off, manual
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-control-4.3.2/package/yast2-installation-control.changes 
new/yast2-installation-control-4.3.3/package/yast2-installation-control.changes
--- 
old/yast2-installation-control-4.3.2/package/yast2-installation-control.changes 
    2020-06-01 15:03:23.000000000 +0200
+++ 
new/yast2-installation-control-4.3.3/package/yast2-installation-control.changes 
    2020-07-22 13:48:24.000000000 +0200
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Wed Jul 22 11:01:03 UTC 2020 - José Iván López González <[email protected]>
+
+- Add options to configure the installation layout.
+- Related to jsc#PM-1998.
+- 4.3.3
+
+-------------------------------------------------------------------
 Tue May 26 13:48:56 UTC 2020 - Martin Vidner <martin@frogs>
 
 - Work around Relax-NG parser error: "Found anyName attribute
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-control-4.3.2/package/yast2-installation-control.spec 
new/yast2-installation-control-4.3.3/package/yast2-installation-control.spec
--- 
old/yast2-installation-control-4.3.2/package/yast2-installation-control.spec    
    2020-06-01 15:03:23.000000000 +0200
+++ 
new/yast2-installation-control-4.3.3/package/yast2-installation-control.spec    
    2020-07-22 13:48:24.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-installation-control
-Version:        4.3.2
+Version:        4.3.3
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build


Reply via email to