summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/Models/Manifest.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-09-25 21:11:48 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-09-25 21:11:48 -0400
commit5cb183e16ddc661c38f4bd9e6e740b9457b8c437 (patch)
tree7c4ed899a45d7960b727b76318b9b36f9e52fbe5 /src/StardewModdingAPI/Framework/Models/Manifest.cs
parent4fd3fdc0d8367fdf0c454a1c728113c282df76b7 (diff)
downloadSMAPI-5cb183e16ddc661c38f4bd9e6e740b9457b8c437.tar.gz
SMAPI-5cb183e16ddc661c38f4bd9e6e740b9457b8c437.tar.bz2
SMAPI-5cb183e16ddc661c38f4bd9e6e740b9457b8c437.zip
consolidate update fields in manifest & SMAPI config (#336, #361)
Diffstat (limited to 'src/StardewModdingAPI/Framework/Models/Manifest.cs')
-rw-r--r--src/StardewModdingAPI/Framework/Models/Manifest.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/StardewModdingAPI/Framework/Models/Manifest.cs b/src/StardewModdingAPI/Framework/Models/Manifest.cs
index c891644f..a051354c 100644
--- a/src/StardewModdingAPI/Framework/Models/Manifest.cs
+++ b/src/StardewModdingAPI/Framework/Models/Manifest.cs
@@ -34,14 +34,8 @@ namespace StardewModdingAPI.Framework.Models
[JsonConverter(typeof(SFieldConverter))]
public IManifestDependency[] Dependencies { get; set; }
- /// <summary>The mod's unique ID in the Chucklefish mod site (if any), used for update checks.</summary>
- public string ChucklefishID { get; set; }
-
- /// <summary>The mod's unique ID in Nexus Mods (if any), used for update checks.</summary>
- public string NexusID { get; set; }
-
- /// <summary>The mod's organisation and project name on GitHub (if any), used for update checks.</summary>
- public string GitHubProject { get; set; }
+ /// <summary>The namespaced mod IDs to query for updates (like <c>Nexus:541</c>).</summary>
+ public string[] UpdateKeys { get; set; }
/// <summary>The unique mod ID.</summary>
public string UniqueID { get; set; }