diff --git a/CHANGELIST.md b/CHANGELIST.md index a8a1af10..c1335319 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -66,6 +66,7 @@ - Fix incorrect region two-letter code - Adjust long names for some languages - Add Sierra ID to list of pseudo-tags +- Add another hand-formatted version of SS tag ### 2.2 (2021-12-30) - Fix Saturn header finding diff --git a/MPF.Library/InfoTool.cs b/MPF.Library/InfoTool.cs index de3f6de4..8ce0d517 100644 --- a/MPF.Library/InfoTool.cs +++ b/MPF.Library/InfoTool.cs @@ -1674,6 +1674,7 @@ namespace MPF.Library text = text.Replace("LucasArts ID:", ((SiteCode?)SiteCode.LucasArtsID).ShortName()); text = text.Replace("PFI:", ((SiteCode?)SiteCode.PFIHash).ShortName()); text = text.Replace("SS:", ((SiteCode?)SiteCode.SSHash).ShortName()); + text = text.Replace("SSv1:", ((SiteCode?)SiteCode.SSHash).ShortName()); text = text.Replace("SS version:", ((SiteCode?)SiteCode.SSVersion).ShortName()); text = text.Replace("XeMID:", ((SiteCode?)SiteCode.XeMID).ShortName()); text = text.Replace("XMID:", ((SiteCode?)SiteCode.XMID).ShortName());