Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.2
0.5
2 changes: 1 addition & 1 deletion cli/d-installer-cli.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
spec.email = "yast-devel@opensuse.org"
spec.homepage = "https://github.com/yast/d-installer"
spec.license = "GPL-2.0-only"
spec.files = Dir["lib/**/*.rb", "bin/*", "share/*", "etc/*", "[A-Z]*"]
spec.files = Dir["lib/**/*.rb", "bin/*", "share/*", "etc/*"]
spec.executables << "dinstallerctl"
spec.metadata = { "rubygems_mfa_required" => "true" }

Expand Down
7 changes: 7 additions & 0 deletions cli/package/rubygem-d-installer-cli.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Nov 18 16:27:50 UTC 2022 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Update to version 0.5.0:
* Move the storage client to the service gem
(related to gh#yast/d-installer#248).

-------------------------------------------------------------------
Thu Jul 28 08:15:39 UTC 2022 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

Expand Down
18 changes: 8 additions & 10 deletions image/_service
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
<param name="without-version">enable</param>
<param name="filename">d-installer</param>
</service>
<service mode="manual" name="download_url">
<param name="url">https://raw.githubusercontent.com/yast/d-installer/master/image/d-installer-live.kiwi</param>
<param name="filename">d-installer-live.kiwi</param>
</service>
<service mode="manual" name="download_url">
<param name="url">https://raw.githubusercontent.com/yast/d-installer/master/image/config.sh</param>
<param name="filename">config.sh</param>
</service>
<service mode="buildtime" name="tar">
<param name="obsinfo">d-installer.obsinfo</param>
<param name="subdir">image/extrastuff/root</param>
Expand All @@ -16,14 +24,4 @@
<param name="subdir">image/extrastuff/etc</param>
<param name="filename">etc</param>
</service>
<service mode="buildtime" name="tar">
<param name="obsinfo">d-installer.obsinfo</param>
<param name="subdir">image</param>
<param name="filename">image</param>
</service>
<service mode="buildtime" name="extract_file">
<param name="archive">image.tar</param>
<param name="file">image/d-installer-live.kiwi</param>
<param name="file">image/config.sh</param>
</service>
</services>
1 change: 1 addition & 0 deletions image/d-installer-live.kiwi
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@
<package name="cockpit-storaged"/>
<package name="cockpit-system"/>
<package name="cockpit-ws"/>
<package name="ruby3.1-rubygem-byebug"/>
<package name="ruby3.1-rubygem-d-installer"/>
<package name="ruby3.1-rubygem-d-installer-cli"/>
<package name="openSUSE-build-key"/>
Expand Down
2 changes: 1 addition & 1 deletion service/d-installer.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
spec.email = "yast-devel@opensuse.org"
spec.homepage = "https://github.com/yast/d-installer"
spec.license = "GPL-2.0-only"
spec.files = Dir["lib/**/*.rb", "bin/*", "share/*", "etc/*", "[A-Z]*"]
spec.files = Dir["lib/**/*.rb", "bin/*", "share/*", "etc/*"]
spec.executables = ["d-installer"]
spec.metadata = { "rubygems_mfa_required" => "true" }

Expand Down
23 changes: 22 additions & 1 deletion service/package/rubygem-d-installer.changes
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
-------------------------------------------------------------------
Fri Nov 18 16:27:43 UTC 2022 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Update to version 0.5.0:
* Use D-Bus activation instead of explicit service starting
(gh#yast/d-installer#287).
* Load the configuration from /etc/d-installer.yaml
(gh#yast/d-installer#301).
* Move D-Bus configuration to /usr/share (gh#yast/d-installer#254).
* Extract questions and storage handling to separate services
(gh#yast/d-installer#248).
* Add a mechanism to report problems found in the configuration
(gh#yast/d-installer#299).
* Extend the D-Bus API for the storage proposal
(gh#yast/d-installer#268).
* Do not block after software installation if a package cannot
be installed (gh#yast/d-installer#322).
* Add support to install the Adaptable Linux Platform Host OS
(gh#yast/d-installer#265).
* Update Leap Micro to version 5.3 (gh#yast/d-installer#318).

-------------------------------------------------------------------
Thu Jul 28 08:20:21 UTC 2022 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Update to version 0.4.2:
* Prevent the installation from being blocked when the user
changes the language (gh#yast/yast-dinstaller#239 and
changes the language (gh#yast/d-installer#239 and
gh#yast/yast-dinstaller#240).
* Add a new service org.opensuse.DInstaller.Language to handle
yast2-country related logic.
Expand Down
2 changes: 1 addition & 1 deletion web/package/_service
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
</service>
<service mode="buildtime" name="set_version">
<param name="basename">d-installer</param>
<param name="version">0.4.2</param>
<param name="version">0.5</param>
</service>
</services>
11 changes: 11 additions & 0 deletions web/package/cockpit-d-installer.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Fri Nov 18 16:27:26 UTC 2022 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

- Update to version 0.5.0:
* Add support for basic network configuration, based on
NetworkManager (gh#yast/d-installer#260, gh#yast/d-installer#292).
* Improve the usability of the LUKS activation dialog
(gh#yast/d-installer#253).
* Prevent starting the installation with incomplete or wrong
configuration (gh#yast/d-installer#299).

-------------------------------------------------------------------
Thu Jul 28 08:17:06 UTC 2022 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>

Expand Down