Use ZStandard, closer to oodle.

This commit is contained in:
GMatrixGames 2025-10-11 16:41:19 -04:00
parent a4e92b6c59
commit f366ad1189
No known key found for this signature in database
GPG Key ID: 314AEEC25F9059AC
2 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ public class EndpointSettings : ViewModel
return new EndpointSettings[]
{
new("https://uedb.dev/svc/api/v1/fortnite/aes", "$.['mainKey','dynamicKeys']"),
new("https://uedb.dev/svc/api/v1/fortnite/mappings", "$.mappings.Brotli")
new("https://uedb.dev/svc/api/v1/fortnite/mappings", "$.mappings.ZStandard")
};
default:
return new EndpointSettings[] { new(), new() };
@ -106,4 +106,4 @@ public class EndpointSettings : ViewModel
}
}
}
}
}

View File

@ -370,7 +370,7 @@ public class CUE4ParseViewModel : ViewModel
if (endpoint.Url == "https://fortnitecentral.genxgames.gg/api/v1/mappings")
{
endpoint.Url = "https://uedb.dev/svc/api/v1/fortnite/mappings";
endpoint.Path = "$.mappings.Brotli";
endpoint.Path = "$.mappings.ZStandard";
}
var mappingsFolder = Path.Combine(UserSettings.Default.OutputDirectory, ".data");
@ -1163,4 +1163,4 @@ public class CUE4ParseViewModel : ViewModel
{
return (a & b) == b;
}
}
}