diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-20 00:37:58 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-23 11:58:24 -0400 |
commit | 7d73b0bf0c545b281d9d84bc73ad40932764b483 (patch) | |
tree | df9d3b504e68ce72b271eb6f869ad1c63a472846 /src/StardewModdingAPI/Framework/Models | |
parent | 6ddcef61e94a81711ad25a378f0fa03d7799f2dc (diff) | |
download | SMAPI-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.cs | 7 |
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> |