From aa154319669a130c2b419540aaf5e9a5baa6db97 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 30 Jun 2019 01:38:45 -0400 Subject: remove 'SMAPI 3.0 ready' API fields (#638) --- src/SMAPI.Web/ViewModels/ModModel.cs | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/SMAPI.Web/ViewModels/ModModel.cs') diff --git a/src/SMAPI.Web/ViewModels/ModModel.cs b/src/SMAPI.Web/ViewModels/ModModel.cs index ae81acf5..8668f67b 100644 --- a/src/SMAPI.Web/ViewModels/ModModel.cs +++ b/src/SMAPI.Web/ViewModels/ModModel.cs @@ -31,12 +31,6 @@ namespace StardewModdingAPI.Web.ViewModels /// The compatibility status for the beta version of the game. public ModCompatibilityModel BetaCompatibility { get; set; } - /// Whether the mod is ready for the upcoming SMAPI 3.0. - public string Smapi3Status { get; set; } - - /// A URL related to the . - public string Smapi3Url { get; set; } - /// Links to the available mod pages. public ModLinkModel[] ModPages { get; set; } @@ -65,8 +59,6 @@ namespace StardewModdingAPI.Web.ViewModels this.SourceUrl = this.GetSourceUrl(entry); this.Compatibility = new ModCompatibilityModel(entry.Compatibility); this.BetaCompatibility = entry.BetaCompatibility != null ? new ModCompatibilityModel(entry.BetaCompatibility) : null; - this.Smapi3Status = entry.Smapi3Status.ToString().ToLower(); - this.Smapi3Url = entry.Smapi3Url; this.ModPages = this.GetModPageUrls(entry).ToArray(); this.Warnings = entry.Warnings; this.Slug = entry.Anchor; -- cgit