Console
Console copied to clipboard
Update icons for LaunchPad
In the scope of LaunchPad redesign work the icons of all apps were changed. I would like to ask to update items of icons that appear on LaunchPad to align them with the new design.
Please, use the following icon paths: LaunchPadIcons/32x32/PowerShell ISE.png LaunchPadIcons/32x32/PowerShell Reports.png
Note: All icons are located at Sitecore.Themes repository.
Please, reach me out if you need more details.
Are these icons included with Sitecore? What version of Sitecore do they come with?
Are these icons included with Sitecore? What version of Sitecore do they come with?
Yes, these icons are part of Sitecore. These changes are part of the 10.1 release.
Interesting. We use a single package from 8.x+. How do you propose I handle changing the icon when I need to support older versions?
We did not remove the old icons set and we added a new icon set for such cases. So starting from 10.1 all apps will have the same style.
Now we just need a script to fix icons for those on older versions.
$iseButton = Get-Item -Path "core:{bfc79034-857c-4432-a5c2-2d93af784384}"
$iseButton.Editing.BeginEdit()
$iseButton.Fields["{D25B56D4-23B6-4462-BE25-B6A6D7F38E13}"].Value = "powershell/32x32/ise8.png"
$iseButton.Editing.EndEdit() > $null
$reportButton = Get-Item -Path "core:{74744022-353c-43f1-b8e4-5bc569ca9348}"
$reportButton.Editing.BeginEdit()
$reportButton.Fields["{D25B56D4-23B6-4462-BE25-B6A6D7F38E13}"].Value = "Office/32x32/chart_donut.png"
$reportButton.Editing.EndEdit() > $null
Trying to automate this step. 81ec97aa1271bc0cf95dd5567f9f4f3fd18aef2b