Improved DSProtect patches

This commit is contained in:
Mow
2025-12-03 10:22:06 -05:00
committed by GitHub
parent 7aba420201
commit a8f5d880b2
15 changed files with 503 additions and 732 deletions

View File

@@ -152,6 +152,7 @@ sealed class ApListFactory
{
return dsProtectVersion switch
{
"1.00_2" => DSProtectVersion.V1_00_2,
"1.05" => DSProtectVersion.V1_05,
"1.06" => DSProtectVersion.V1_06,
"1.08" => DSProtectVersion.V1_08,
@@ -181,6 +182,7 @@ sealed class ApListFactory
{
return dsProtectVersion switch
{
DSProtectVersion.V1_00_2 => "1.00_2",
DSProtectVersion.V1_05 => "1.05",
DSProtectVersion.V1_06 => "1.06",
DSProtectVersion.V1_08 => "1.08",

View File

@@ -21,5 +21,6 @@ enum DSProtectVersion
V2_00s,
V2_01s,
V2_03s,
V2_05s
V2_05s,
V1_00_2
}