Skip to content

Commit

Permalink
Merge branch 'master' into self_update_refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
teclator committed Aug 26, 2016
2 parents e353a95 + 4bf104b commit 985e295
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
7 changes: 6 additions & 1 deletion package/yast2-installation.changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-------------------------------------------------------------------
Thu Aug 25 10:48:20 UTC 2016 - lslezak@suse.cz
Thu Aug 25 14:23:20 UTC 2016 - lslezak@suse.cz

- Move the installer self update step earlier in the workflow
so the user entered values are not lost after restart and avoid
Expand All @@ -10,6 +10,11 @@ Thu Aug 25 10:48:20 UTC 2016 - lslezak@suse.cz
the highest priority, always ask user when a SLP service is found,
in AutoYaST mode SLP needs to be enabled in the profile
- Display progress when downloading and applying the updates
- 3.1.213

Wed Aug 25 12:51:45 UTC 2016 - cwh@suse.com

- Replace unicode bullet char by asterisk for ncurses (bsc#995082)
- 3.1.212

-------------------------------------------------------------------
Expand Down
5 changes: 4 additions & 1 deletion src/lib/installation/select_system_role.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# coding: utf-8
# Copyright (c) 2016 SUSE LLC.
# All Rights Reserved.

Expand Down Expand Up @@ -94,10 +95,12 @@ def clear_role

def role_buttons
ui_roles = role_attributes.each_with_object(VBox()) do |r, vbox|
# bsc#995082: System role descriptions use a character that is missing in console font
description = Yast::UI.TextMode ? r[:description].tr("•", "*") : r[:description]
vbox << Left(RadioButton(Id(r[:id]), r[:label]))
vbox << HBox(
HSpacing(Yast::UI.TextMode ? 4 : 2),
Left(Label(r[:description]))
Left(Label(description))
)
vbox << VSpacing(2)
end
Expand Down

0 comments on commit 985e295

Please sign in to comment.