Include unreleased cores in About dialog (resolves #4168)
This commit is contained in:
parent
ced4db461d
commit
1437bc3a98
|
@ -36,8 +36,9 @@ namespace BizHawk.Client.EmuHawk
|
||||||
VersionLabel.Text = VersionInfo.GetFullVersionDetails();
|
VersionLabel.Text = VersionInfo.GetFullVersionDetails();
|
||||||
DateLabel.Text = VersionInfo.ReleaseDate;
|
DateLabel.Text = VersionInfo.ReleaseDate;
|
||||||
(linkLabel2.Text, linkLabel2.Tag) = VersionInfo.GetGitCommitLink();
|
(linkLabel2.Text, linkLabel2.Tag) = VersionInfo.GetGitCommitLink();
|
||||||
foreach (var core in CoreInventory.Instance.SystemsFlat.Where(core => core.CoreAttr.Released)
|
foreach (var core in CoreInventory.Instance.SystemsFlat
|
||||||
.OrderByDescending(core => core.Name.ToLowerInvariant()))
|
.OrderBy(static core => core.CoreAttr.Released)
|
||||||
|
.ThenByDescending(static core => core.Name, StringComparer.InvariantCultureIgnoreCase))
|
||||||
{
|
{
|
||||||
CoreInfoPanel.Controls.Add(new BizBoxInfoControl(core.CoreAttr)
|
CoreInfoPanel.Controls.Add(new BizBoxInfoControl(core.CoreAttr)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue