Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions SabreTools.RedumpLib.Test/Data/ExtensionsTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,7 @@ public void Region_ToRegion(Region? region, bool expectNull)
SiteCode.Series,
SiteCode.SSHash,
SiteCode.SSVersion,
SiteCode.TitleID,
SiteCode.UniversalHash,
SiteCode.VCD,
SiteCode.VFCCode,
Expand Down
1 change: 1 addition & 0 deletions SabreTools.RedumpLib/Builder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,7 @@ or SiteCode.XMID

// Microsoft Xbox One and Series X/S
SiteCode.Filename => true,
SiteCode.TitleID => true,

// Nintendo Gamecube
SiteCode.InternalName => true,
Expand Down
4 changes: 4 additions & 0 deletions SabreTools.RedumpLib/Data/Enumerations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3731,6 +3731,10 @@ public enum SiteCode
[HumanReadable(ShortName = "[T:TD]", LongName = "<b>Tech Demos</b>:")]
TechDemos,

// This doesn't have a site tag yet
[HumanReadable(ShortName = "<b>Title ID</b>:", LongName = "<b>Title ID</b>:")]
TitleID,

[HumanReadable(ShortName = "[T:UID]", LongName = "<b>Ubisoft ID</b>:")]
UbisoftID,

Expand Down
1 change: 1 addition & 0 deletions SabreTools.RedumpLib/Data/Extensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1277,6 +1277,7 @@ public static bool IsCommentCode(this SiteCode? siteCode)
SiteCode.Series => true,
SiteCode.SSHash => true,
SiteCode.SSVersion => true,
SiteCode.TitleID => true,
SiteCode.UniversalHash => true,
SiteCode.VCD => true,
SiteCode.VFCCode => true,
Expand Down
1 change: 1 addition & 0 deletions SabreTools.RedumpLib/Formatter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ public static class Formatter
SiteCode.SSVersion,

SiteCode.Filename,
SiteCode.TitleID,

SiteCode.Protection,

Expand Down