mirror of
https://github.com/SabreTools/SabreTools.RedumpLib.git
synced 2026-02-04 05:36:11 +00:00
Add Steam AppID and DepotID tags (#13)
* Initial commit * Fix format * Fix naming * Minor formatting fixes
This commit is contained in:
committed by
GitHub
parent
53fd163f82
commit
07b529e9e5
@@ -720,6 +720,7 @@ namespace SabreTools.RedumpLib.Test.Data
|
||||
SiteCode.Series,
|
||||
SiteCode.SSHash,
|
||||
SiteCode.SSVersion,
|
||||
SiteCode.SteamAppID,
|
||||
SiteCode.TitleID,
|
||||
SiteCode.UniversalHash,
|
||||
SiteCode.VCD,
|
||||
@@ -773,6 +774,8 @@ namespace SabreTools.RedumpLib.Test.Data
|
||||
SiteCode.PlayableDemos,
|
||||
SiteCode.RollingDemos,
|
||||
SiteCode.Savegames,
|
||||
SiteCode.SteamSimSidDepotID,
|
||||
SiteCode.SteamCsmCsdDepotID,
|
||||
SiteCode.TechDemos,
|
||||
SiteCode.Videos,
|
||||
];
|
||||
@@ -793,6 +796,8 @@ namespace SabreTools.RedumpLib.Test.Data
|
||||
SiteCode.PlayableDemos,
|
||||
SiteCode.RollingDemos,
|
||||
SiteCode.Savegames,
|
||||
SiteCode.SteamSimSidDepotID,
|
||||
SiteCode.SteamCsmCsdDepotID,
|
||||
SiteCode.TechDemos,
|
||||
SiteCode.Videos,
|
||||
];
|
||||
|
||||
@@ -3746,6 +3746,18 @@ namespace SabreTools.RedumpLib.Data
|
||||
[HumanReadable(ShortName = "<b>SS version</b>:", LongName = "<b>SS version</b>:")]
|
||||
SSVersion,
|
||||
|
||||
// This doesn't have a site tag yet
|
||||
[HumanReadable(ShortName = "<b>Steam App ID</b>:", LongName = "<b>Steam AppID</b>:")]
|
||||
SteamAppID,
|
||||
|
||||
// This doesn't have a site tag yet
|
||||
[HumanReadable(ShortName = "<b>Steam Depot ID (.sis/.sim/.sid)</b>:", LongName = "<b>Steam Depot ID (.sis/.sim/.sid)</b>:")]
|
||||
SteamSimSidDepotID,
|
||||
|
||||
// This doesn't have a site tag yet
|
||||
[HumanReadable(ShortName = "<b>Steam Depot ID (.sis/.csm/.csd)</b>:", LongName = "<b>Steam Depot ID (.sis/.csm/.csd)</b>:")]
|
||||
SteamCsmCsdDepotID,
|
||||
|
||||
[HumanReadable(ShortName = "[T:TID]", LongName = "<b>Taito ID</b>:")]
|
||||
TaitoID,
|
||||
|
||||
|
||||
@@ -1315,6 +1315,7 @@ namespace SabreTools.RedumpLib.Data
|
||||
SiteCode.Series => true,
|
||||
SiteCode.SSHash => true,
|
||||
SiteCode.SSVersion => true,
|
||||
SiteCode.SteamAppID => true,
|
||||
SiteCode.TitleID => true,
|
||||
SiteCode.UniversalHash => true,
|
||||
SiteCode.VCD => true,
|
||||
@@ -1381,6 +1382,8 @@ namespace SabreTools.RedumpLib.Data
|
||||
SiteCode.PlayableDemos => true,
|
||||
SiteCode.RollingDemos => true,
|
||||
SiteCode.Savegames => true,
|
||||
SiteCode.SteamSimSidDepotID => true,
|
||||
SiteCode.SteamCsmCsdDepotID => true,
|
||||
SiteCode.TechDemos => true,
|
||||
SiteCode.Videos => true,
|
||||
_ => false,
|
||||
@@ -1413,6 +1416,8 @@ namespace SabreTools.RedumpLib.Data
|
||||
SiteCode.PlayableDemos => true,
|
||||
SiteCode.RollingDemos => true,
|
||||
SiteCode.Savegames => true,
|
||||
SiteCode.SteamSimSidDepotID => true,
|
||||
SiteCode.SteamCsmCsdDepotID => true,
|
||||
SiteCode.TechDemos => true,
|
||||
SiteCode.Videos => true,
|
||||
_ => false,
|
||||
|
||||
@@ -56,7 +56,7 @@ namespace SabreTools.RedumpLib
|
||||
SiteCode.Series,
|
||||
SiteCode.PostgapType,
|
||||
SiteCode.VCD,
|
||||
|
||||
|
||||
// Publisher / Company IDs
|
||||
SiteCode.TwoKGamesID,
|
||||
SiteCode.AcclaimID,
|
||||
@@ -83,6 +83,7 @@ namespace SabreTools.RedumpLib
|
||||
SiteCode.SegaID,
|
||||
SiteCode.SelenID,
|
||||
SiteCode.SierraID,
|
||||
SiteCode.SteamAppID,
|
||||
SiteCode.TaitoID,
|
||||
SiteCode.UbisoftID,
|
||||
SiteCode.ValveID,
|
||||
@@ -102,6 +103,8 @@ namespace SabreTools.RedumpLib
|
||||
// Games
|
||||
SiteCode.Games,
|
||||
SiteCode.NetYarozeGames,
|
||||
SiteCode.SteamSimSidDepotID,
|
||||
SiteCode.SteamCsmCsdDepotID,
|
||||
|
||||
// Demos
|
||||
SiteCode.PlayableDemos,
|
||||
|
||||
Reference in New Issue
Block a user