summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Clients/UpdateManifest/UpdateManifestClient.cs
AgeCommit message (Collapse)Author
2023-04-09update release notesJesse Plamondon-Willard
2023-01-29add stricter validation for update manifestsJesse Plamondon-Willard
2023-01-29Remove copyright line from individual filesJamie Taylor
2023-01-29simplify & validate manifest mod page URLsJesse Plamondon-Willard
This avoids an issue where users are told to download it from the JSON manifest URL.
2023-01-29rename & validate format versionJesse Plamondon-Willard
2023-01-29group response modelsJesse Plamondon-Willard
2023-01-29adjust JSON formatter instead of adding a new oneJesse Plamondon-Willard
2023-01-29minor formatting, copyediting, and error-handlingJesse Plamondon-Willard
2022-10-01Add UpdateManifest site type.Jamie Taylor
Adds the UpdateManifest site key and associated client. This required some additional features in the existing update machinery. Each "version" can now (optionally) have its own download URL. Mod Page objects can now specify that subkey matching (for that page) should be "strict". A strict subkey match does not fall back to matching with no subkey if a subkey was provided but produced no versions. It also strips the leading '@' from the subkey. IModDownload objects are now responsible for deciding whether a subkey matches or not. The default behavior is unchanged, but this allows different mod sites to have different rules for subkey matching (which the UpdateManifest mod site uses to force exact matches).