Skip to content

Commit

Permalink
Merge pull request #1311 from yast/close_progress_popups_master
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed May 9, 2024
2 parents 8f60c6c + 415230c commit b49143a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion library/packages/src/modules/PackageCallbacks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2397,7 +2397,7 @@ def ProgressEnd(id)
)

if !Mode.commandline && IsProgressPopup()
UI.CloseDialog if Builtins.size(@progress_stack) == 0
UI.CloseDialog if Builtins.size(@progress_stack) >= 0
elsif full_screen
if Ops.greater_than(Builtins.size(@progress_stack), 0)
progress_type = Ops.get_symbol(
Expand Down
11 changes: 11 additions & 0 deletions package/yast2.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Mon May 6 13:08:32 UTC 2024 - Ladislav Slezák <lslezak@suse.com>

- Properly close nested progress callbacks (bsc#1223281)
- 5.0.8

-------------------------------------------------------------------
Wed Feb 21 11:07:25 UTC 2024 - Michal Filka <mfilka@suse.com>

- removed "journalctl --dmesg" from save_y2los

-------------------------------------------------------------------
Wed Feb 21 10:22:26 UTC 2024 - Michal Filka <mfilka@suse.com>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2
Version: 5.0.7
Version: 5.0.8

Release: 0
Summary: YaST2 Main Package
Expand Down
2 changes: 0 additions & 2 deletions scripts/save_y2logs
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,7 @@ if [ "$(type -p dmesg)" ]; then
fi

if [ "$(type -p journalctl)" ]; then
journalctl --dmesg > $TMPDIR/journalctl-dmesg
journalctl -b > $TMPDIR/journalctl-b
LIST_TMP="$LIST_TMP journalctl-dmesg"
LIST_TMP="$LIST_TMP journalctl-b"
fi

Expand Down

0 comments on commit b49143a

Please sign in to comment.