Include unreleased cores in About dialog (resolves #4168)

This commit is contained in:
YoshiRulz 2025-01-17 06:54:44 +10:00
parent ced4db461d
commit 1437bc3a98
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 2 deletions

View File

@ -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)
{ {