summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/Models
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-07-20 00:37:58 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-07-23 11:58:24 -0400
commit7d73b0bf0c545b281d9d84bc73ad40932764b483 (patch)
treedf9d3b504e68ce72b271eb6f869ad1c63a472846 /src/StardewModdingAPI/Framework/Models
parent6ddcef61e94a81711ad25a378f0fa03d7799f2dc (diff)
downloadSMAPI-7d73b0bf0c545b281d9d84bc73ad40932764b483.tar.gz
SMAPI-7d73b0bf0c545b281d9d84bc73ad40932764b483.tar.bz2
SMAPI-7d73b0bf0c545b281d9d84bc73ad40932764b483.zip
simplify compatibility skip message in 2.0 & combine update URL fields
Diffstat (limited to 'src/StardewModdingAPI/Framework/Models')
-rw-r--r--src/StardewModdingAPI/Framework/Models/ModCompatibility.cs7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs b/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs
index eb312eff..72b6f2af 100644
--- a/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs
+++ b/src/StardewModdingAPI/Framework/Models/ModCompatibility.cs
@@ -29,11 +29,8 @@ namespace StardewModdingAPI.Framework.Models
/// <summary>A label to show to the user instead of <see cref="UpperVersion"/>, when the manifest version differs from the user-facing version.</summary>
public string UpperVersionLabel { get; set; }
- /// <summary>The URL the user can check for an official updated version.</summary>
- public string UpdateUrl { get; set; }
-
- /// <summary>The URL the user can check for an unofficial updated version.</summary>
- public string UnofficialUpdateUrl { get; set; }
+ /// <summary>The URLs the user can check for a newer version.</summary>
+ public string[] UpdateUrls { get; set; }
/// <summary>The reason phrase to show in the warning, or <c>null</c> to use the default value.</summary>
/// <example>"this version is incompatible with the latest version of the game"</example>