Skip to content

Commit

Permalink
Fix in installation workflow: Can go back from "Available Extensions…
Browse files Browse the repository at this point in the history
… and Modules" to registration (bsc#1160501) (#95)
  • Loading branch information
schubi2 committed Jan 28, 2020
1 parent 22d1881 commit 11f7d2f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions package/yast2-add-on.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Tue Jan 28 09:30:52 CET 2020 - schubi@suse.de

- Fix in installation workflow: Can go back from
"Available Extensions and Modules" to registration (bsc#1160501).
- 4.2.15

-------------------------------------------------------------------
Mon Jan 27 13:41:41 UTC 2020 - Josef Reidinger <jreidinger@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-add-on.spec
Expand Up @@ -17,7 +17,7 @@


Name: yast2-add-on
Version: 4.2.14
Version: 4.2.15
Release: 0
Summary: YaST2 - Add-On media installation code
License: GPL-2.0-only
Expand Down
8 changes: 4 additions & 4 deletions src/include/add-on/add-on-workflow.rb
Expand Up @@ -114,11 +114,11 @@ def AddAddOnToStore(src_id)
# @return [Symbol] for wizard sequencer
def MediaSelect
aliases = {
"type" => lambda { media_type_selection },
# true: Skip "type" if it comes from :back and call registartion instead.
# bsc#1160501
"type" => [lambda { media_type_selection }, true ],
"edit" => lambda { EditDialog() },
"store" => lambda do
StoreSource()
end
"store" => lambda { StoreSource() }
}

sources_before = Pkg.SourceGetCurrent(false)
Expand Down

0 comments on commit 11f7d2f

Please sign in to comment.