diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-23 22:50:35 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-09-23 22:50:35 -0400 |
commit | 33af789e2eb4da101cead531b77c29ecf4933549 (patch) | |
tree | 6c7801b548345514fcc47853ac4d79a402a178a9 /src | |
parent | 9495cc0f493a11960aa23551e164018681d08f79 (diff) | |
download | SMAPI-33af789e2eb4da101cead531b77c29ecf4933549.tar.gz SMAPI-33af789e2eb4da101cead531b77c29ecf4933549.tar.bz2 SMAPI-33af789e2eb4da101cead531b77c29ecf4933549.zip |
abstract mod IDs with multiple variants (#361)
Diffstat (limited to 'src')
5 files changed, 196 insertions, 175 deletions
diff --git a/src/StardewModdingAPI/Framework/ModLoading/ModResolver.cs b/src/StardewModdingAPI/Framework/ModLoading/ModResolver.cs index 2da10348..3674faec 100644 --- a/src/StardewModdingAPI/Framework/ModLoading/ModResolver.cs +++ b/src/StardewModdingAPI/Framework/ModLoading/ModResolver.cs @@ -64,7 +64,7 @@ namespace StardewModdingAPI.Framework.ModLoading dataRecord = ( from mod in dataRecords where - mod.ID.Any(p => p.Matches(key, manifest)) + mod.ID.Matches(key, manifest) && (mod.LowerVersion == null || !manifest.Version.IsOlderThan(mod.LowerVersion)) && (mod.UpperVersion == null || !manifest.Version.IsNewerThan(mod.UpperVersion)) select mod diff --git a/src/StardewModdingAPI/Framework/Models/ModDataID.cs b/src/StardewModdingAPI/Framework/Models/ModDataID.cs index 5b45b507..d19434fa 100644 --- a/src/StardewModdingAPI/Framework/Models/ModDataID.cs +++ b/src/StardewModdingAPI/Framework/Models/ModDataID.cs @@ -1,22 +1,28 @@ using System; +using System.Linq; using Newtonsoft.Json; namespace StardewModdingAPI.Framework.Models { /// <summary>Uniquely identifies a mod in SMAPI's internal data.</summary> + /// <remarks> + /// This represents a custom format which uniquely identifies a mod across all versions, even + /// if its field values change or it doesn't specify a unique ID. This is mapped to a string + /// with the following format: + /// + /// 1. If the mod's identifier changed over time, multiple variants can be separated by the <c>|</c> + /// character. + /// 2. Each variant can take one of two forms: + /// - A simple string matching the mod's UniqueID value. + /// - A JSON structure containing any of three manifest fields (ID, Name, and Author) to match. + /// </remarks> internal class ModDataID { /********* - ** Accessors + ** Properties *********/ - /// <summary>The unique mod ID.</summary> - public string ID { get; set; } - - /// <summary>The mod name to disambiguate non-unique IDs, or <c>null</c> to ignore the mod name.</summary> - public string Name { get; set; } - - /// <summary>The author name to disambiguate non-unique IDs, or <c>null</c> to ignore the author.</summary> - public string Author { get; set; } + /// <summary>The unique sets of field values which identify this mod.</summary> + private readonly FieldSnapshot[] Snapshots; /********* @@ -26,17 +32,18 @@ namespace StardewModdingAPI.Framework.Models public ModDataID() { } /// <summary>Construct an instance.</summary> - /// <param name="data">The mod ID or a JSON string matching the <see cref="ModDataID"/> fields.</param> + /// <param name="data">The mod identifier string (see remarks on <see cref="ModDataID"/>).</param> public ModDataID(string data) { - // JSON can be stuffed into the ID string as a convenience hack to keep JSON mod lists - // formatted readably. The tradeoff is that the format is a bit more magical, but that's - // probably acceptable since players aren't meant to edit it. It's also fairly clear what - // the JSON strings do, if not necessarily how. - if (data.StartsWith("{")) - JsonConvert.PopulateObject(data, this); - else - this.ID = data; + this.Snapshots = + ( + from string part in data.Split('|') + let str = part.Trim() + select str.StartsWith("{") + ? JsonConvert.DeserializeObject<FieldSnapshot>(str) + : new FieldSnapshot { ID = str } + ) + .ToArray(); } /// <summary>Get whether this ID matches a given mod manifest.</summary> @@ -44,14 +51,35 @@ namespace StardewModdingAPI.Framework.Models /// <param name="manifest">The manifest to check.</param> public bool Matches(string id, IManifest manifest) { - return - this.ID.Equals(id, StringComparison.InvariantCultureIgnoreCase) + return this.Snapshots.Any(snapshot => + snapshot.ID.Equals(id, StringComparison.InvariantCultureIgnoreCase) && ( - this.Author == null - || this.Author.Equals(manifest.Author, StringComparison.InvariantCultureIgnoreCase) - || (manifest.ExtraFields.ContainsKey("Authour") && this.Author.Equals(manifest.ExtraFields["Authour"].ToString(), StringComparison.InvariantCultureIgnoreCase)) + snapshot.Author == null + || snapshot.Author.Equals(manifest.Author, StringComparison.InvariantCultureIgnoreCase) + || (manifest.ExtraFields.ContainsKey("Authour") && snapshot.Author.Equals(manifest.ExtraFields["Authour"].ToString(), StringComparison.InvariantCultureIgnoreCase)) ) - && (this.Name == null || this.Name.Equals(manifest.Name, StringComparison.InvariantCultureIgnoreCase)); + && (snapshot.Name == null || snapshot.Name.Equals(manifest.Name, StringComparison.InvariantCultureIgnoreCase)) + ); + } + + + /********* + ** Private models + *********/ + /// <summary>A unique set of fields which identifies the mod.</summary> + private class FieldSnapshot + { + /********* + ** Accessors + *********/ + /// <summary>The unique mod ID.</summary> + public string ID { get; set; } + + /// <summary>The mod name, or <c>null</c> to ignore the mod name.</summary> + public string Name { get; set; } + + /// <summary>The author name, or <c>null</c> to ignore the author.</summary> + public string Author { get; set; } } } } diff --git a/src/StardewModdingAPI/Framework/Models/ModDataRecord.cs b/src/StardewModdingAPI/Framework/Models/ModDataRecord.cs index d40f2c78..8126022d 100644 --- a/src/StardewModdingAPI/Framework/Models/ModDataRecord.cs +++ b/src/StardewModdingAPI/Framework/Models/ModDataRecord.cs @@ -9,9 +9,9 @@ namespace StardewModdingAPI.Framework.Models /********* ** Accessors *********/ - /// <summary>The unique mod IDs.</summary> + /// <summary>The unique mod identifier.</summary> [JsonConverter(typeof(SFieldConverter))] - public ModDataID[] ID { get; set; } + public ModDataID ID { get; set; } /// <summary>The mod name.</summary> public string Name { get; set; } diff --git a/src/StardewModdingAPI/Framework/Serialisation/SFieldConverter.cs b/src/StardewModdingAPI/Framework/Serialisation/SFieldConverter.cs index 59cc1582..d71e138b 100644 --- a/src/StardewModdingAPI/Framework/Serialisation/SFieldConverter.cs +++ b/src/StardewModdingAPI/Framework/Serialisation/SFieldConverter.cs @@ -27,7 +27,7 @@ namespace StardewModdingAPI.Framework.Serialisation return objectType == typeof(ISemanticVersion) || objectType == typeof(IManifestDependency[]) - || objectType == typeof(ModDataID[]); + || objectType == typeof(ModDataID); } /// <summary>Reads the JSON representation of the object.</summary> @@ -83,17 +83,10 @@ namespace StardewModdingAPI.Framework.Serialisation } // mod compatibility ID - if (objectType == typeof(ModDataID[])) + if (objectType == typeof(ModDataID)) { - List<ModDataID> result = new List<ModDataID>(); - foreach (JToken child in JArray.Load(reader).Children()) - { - result.Add(child is JValue value - ? new ModDataID(value.Value<string>()) - : child.ToObject<ModDataID>() - ); - } - return result.ToArray(); + JToken token = JToken.Load(reader); + return new ModDataID(token.Value<string>()); } // unknown diff --git a/src/StardewModdingAPI/StardewModdingAPI.config.json b/src/StardewModdingAPI/StardewModdingAPI.config.json index aa6df389..c93ba130 100644 --- a/src/StardewModdingAPI/StardewModdingAPI.config.json +++ b/src/StardewModdingAPI/StardewModdingAPI.config.json @@ -47,14 +47,14 @@ This file contains advanced configuration for SMAPI. You generally shouldn't cha "ModData": [ { "Name": "AccessChestAnywhere", - "ID": [ "AccessChestAnywhere" ], + "ID": "AccessChestAnywhere", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/257", "http://www.nexusmods.com/stardewvalley/mods/518" ], "Notes": "Broke in SDV 1.1." }, { "Name": "AdjustArtisanPrices", - "ID": [ "1e36d4ca-c7ef-4dfb-9927-d27a6c3c8bdc" ], + "ID": "1e36d4ca-c7ef-4dfb-9927-d27a6c3c8bdc", "UpperVersion": "0.0", "UpperVersionLabel": "0.01", "UpdateUrls": [ "http://community.playstarbound.com/resources/3532", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], @@ -62,514 +62,514 @@ This file contains advanced configuration for SMAPI. You generally shouldn't cha }, { "Name": "Advanced Location Loader", - "ID": [ "Entoarox.AdvancedLocationLoader" ], + "ID": "Entoarox.AdvancedLocationLoader", "UpperVersion": "1.2.10", "UpdateUrls": [ "http://community.playstarbound.com/resources/3619" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "AgingMod", - "ID": [ "skn.AgingMod" ], + "ID": "skn.AgingMod", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1129", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Almighty Tool", - "ID": [ "AlmightyTool.dll" ], + "ID": "AlmightyTool.dll", "UpperVersion": "1.1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/439" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Animal Mood Fix", - "ID": [ "GPeters-AnimalMoodFix" ], + "ID": "GPeters-AnimalMoodFix", "Status": "Obsolete", "ReasonPhrase": "the animal mood bugs were fixed in Stardew Valley 1.2." }, { "Name": "Animal Sitter", - "ID": [ "AnimalSitter.dll" ], + "ID": "AnimalSitter.dll", "UpperVersion": "1.0.8", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/581", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "A Tapper's Dream", - "ID": [ "ddde5195-8f85-4061-90cc-0d4fd5459358" ], + "ID": "ddde5195-8f85-4061-90cc-0d4fd5459358", "UpperVersion": "1.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/260", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Better Sprinklers", - "ID": [ "SPDSprinklersMod", /*since 2.3*/ "Speeder.BetterSprinklers" ], + "ID": "SPDSprinklersMod | Speeder.BetterSprinklers", // changed in 2.3 "UpperVersion": "2.3.1-pathoschild-update", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/41", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Birthday Mail", - "ID": [ "005e02dc-d900-425c-9c68-1ff55c5a295d" ], + "ID": "005e02dc-d900-425c-9c68-1ff55c5a295d", "UpperVersion": "1.2.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/276", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Build Endurance", - "ID": [ "{'ID':'4be88c18-b6f3-49b0-ba96-f94b1a5be890', 'Name':'BuildEndurance'}" ], // disambiguate from other Alpha_Omegasis mods + "ID": "{ID:'4be88c18-b6f3-49b0-ba96-f94b1a5be890', Name:'BuildEndurance'}", // disambiguate from other Alpha_Omegasis mods "UpperVersion": "1.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/445", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Build Health", - "ID": [ "{'ID':'4be88c18-b6f3-49b0-ba96-f94b1a5be890', 'Name':'BuildHealth'}" ], // disambiguate from other Alpha_Omegasis mods + "ID": "{ID:'4be88c18-b6f3-49b0-ba96-f94b1a5be890', Name:'BuildHealth'}", // disambiguate from other Alpha_Omegasis mods "UpperVersion": "1.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/446", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Buy Cooking Recipes", - "ID": [ "Denifia.BuyRecipes" ], + "ID": "Denifia.BuyRecipes", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1126", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Buy Back Collectables", - "ID": [ "BuyBackCollectables" ], + "ID": "BuyBackCollectables", "UpperVersion": "1.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/507", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Chest Label System", - "ID": [ "SPDChestLabel" ], + "ID": "SPDChestLabel", "UpperVersion": "1.6", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/242", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.1." }, { "Name": "Chest Pooling", - "ID": [ "ChestPooling.dll" ], + "ID": "ChestPooling.dll", "UpperVersion": "1.2", "UpdateUrls": [ "http://community.playstarbound.com/threads/111988" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Chests Anywhere", - "ID": [ "ChestsAnywhere", /*since 1.9*/ "Pathoschild.ChestsAnywhere" ], + "ID": "ChestsAnywhere | Pathoschild.ChestsAnywhere", // changed in 1.9 "UpperVersion": "1.9-beta", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/518" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Choose Baby Gender", - "ID": [ "ChooseBabyGender.dll" ], + "ID": "ChooseBabyGender.dll", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/590", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "CJB Automation", - "ID": [ "CJBAutomation" ], + "ID": "CJBAutomation", "UpperVersion": "1.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/211", "http://www.nexusmods.com/stardewvalley/mods/1063" ], "Notes": "Broke in SDV 1.2." }, { "Name": "CJB Cheats Menu", - "ID": [ "CJBCheatsMenu" ], + "ID": "CJBCheatsMenu", "UpperVersion": "1.12", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/4" ], "Notes": "Broke in SDV 1.1." }, { "Name": "CJB Item Spawner", - "ID": [ "CJBItemSpawner" ], + "ID": "CJBItemSpawner", "UpperVersion": "1.5", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/93" ], "Notes": "Broke in SDV 1.1." }, { "Name": "CJB Show Item Sell Price", - "ID": [ "CJBShowItemSellPrice" ], + "ID": "CJBShowItemSellPrice", "UpperVersion": "1.6", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/93" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Climates of Ferngill", - "ID": [ "KoihimeNakamura.ClimatesOfFerngill" ], + "ID": "KoihimeNakamura.ClimatesOfFerngill", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/604", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Cold Weather Haley", - "ID": [ "LordXamon.ColdWeatherHaleyPRO" ], + "ID": "LordXamon.ColdWeatherHaleyPRO", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1169", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Colored Chests", - "ID": [ "4befde5c-731c-4853-8e4b-c5cdf946805f" ], + "ID": "4befde5c-731c-4853-8e4b-c5cdf946805f", "Status": "Obsolete", "ReasonPhrase": "colored chests were added in Stardew Valley 1.1." }, { "Name": "Combat with Farm Implements", - "ID": [ "SPDFarmingImplementsInCombat" ], + "ID": "SPDFarmingImplementsInCombat", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/313", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Configurable Shipping Dates", - "ID": [ "ConfigurableShippingDates" ], + "ID": "ConfigurableShippingDates", "UpperVersion": "1.1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/675", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Cooking Skill", - "ID": [ "CookingSkill", /*since 1.0.4–6*/ "spacechase0.CookingSkill" ], + "ID": "CookingSkill | spacechase0.CookingSkill", // changed in 1.0.4–6 "UpperVersion": "1.0.6", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/522" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "CrabNet", - "ID": [ "CrabNet.dll" ], + "ID": "CrabNet.dll", "UpperVersion": "1.0.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/584", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Customize Exterior", - "ID": [ "CustomizeExterior" ], + "ID": "CustomizeExterior", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1099" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Customizable Traveling Cart Days", - "ID": [ "TravelingCartYyeahdude" ], + "ID": "TravelingCartYyeahdude", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/567", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Daily News", - "ID": [ "bashNinja.DailyNews" ], + "ID": "bashNinja.DailyNews", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1141", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Dynamic Checklist", - "ID": [ "gunnargolf.DynamicChecklist" ], + "ID": "gunnargolf.DynamicChecklist", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1145", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Dynamic Machines", - "ID": [ "DynamicMachines" ], + "ID": "DynamicMachines", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/374", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Empty Hands", - "ID": [ "QuicksilverFox.EmptyHands" ], + "ID": "QuicksilverFox.EmptyHands", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1176", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Enemy Health Bars", - "ID": [ "SPDHealthBar" ], + "ID": "SPDHealthBar", "UpperVersion": "1.7", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/193", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Entoarox Framework", - "ID": [ "eacdb74b-4080-4452-b16b-93773cda5cf9", /*since ???*/ "Entoarox.EntoaroxFramework" ], + "ID": "eacdb74b-4080-4452-b16b-93773cda5cf9 | Entoarox.EntoaroxFramework", // changed in ??? "UpperVersion": "1.7.9", "UpdateUrls": [ "http://community.playstarbound.com/resources/4228" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Extended Fridge", - "ID": [ "Mystra007ExtendedFridge" ], + "ID": "Mystra007ExtendedFridge", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/485", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Extended Greenhouse", - "ID": [ "ExtendedGreenhouse" ], + "ID": "ExtendedGreenhouse", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://community.playstarbound.com/resources/4303", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Fall 28 Snow Day", - "ID": [ "{ID:'7ad4f6f7-c3de-4729-a40f-7a11d2b2a358', Name:'Fall28 Snow Day'}" ], // disambiguate from other mods by Alpha_Omegasis + "ID": "{ID:'7ad4f6f7-c3de-4729-a40f-7a11d2b2a358', Name:'Fall28 Snow Day'}", // disambiguate from other mods by Alpha_Omegasis "UpperVersion": "1.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/486", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Farm Automation: Barn Door Automation", - "ID": [ "FarmAutomation.BarnDoorAutomation.dll" ], + "ID": "FarmAutomation.BarnDoorAutomation.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/threads/111931", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Farm Automation: Item Collector", - "ID": [ "FarmAutomation.ItemCollector.dll" ], + "ID": "FarmAutomation.ItemCollector.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/threads/111931", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Farm Automation Unofficial: Item Collector", - "ID": [ "Maddy99.FarmAutomation.ItemCollector" ], + "ID": "Maddy99.FarmAutomation.ItemCollector", "UpperVersion": "0.5", "UpdateUrls": [ "http://community.playstarbound.com/threads/125172", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Farm Expansion", - "ID": [ "3888bdfd-73f6-4776-8bb7-8ad45aea1915", /*since 2.0*/ "AdvizeFarmExpansionMod-2-0", /*since 2.0.5*/ "AdvizeFarmExpansionMod-2-0-5" ], + "ID": "3888bdfd-73f6-4776-8bb7-8ad45aea1915 | AdvizeFarmExpansionMod-2-0 | AdvizeFarmExpansionMod-2-0-5", // changed in 2.0 and 2.0.5 "UpperVersion": "2.0.5", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/130", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Farm Resource Generator", - "ID": [ "FarmResourceGenerator.dll" ], + "ID": "FarmResourceGenerator.dll", "UpperVersion": "1.0.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/647", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Faster Run", - "ID": [ "FasterRun.dll" ], + "ID": "FasterRun.dll", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/733", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "FlorenceMod", - "ID": [ "FlorenceMod.dll" ], + "ID": "FlorenceMod.dll", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/591", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Forage at the Farm", - "ID": [ "ForageAtTheFarm" ], + "ID": "ForageAtTheFarm", "UpperVersion": "1.5.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/673", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Instant Geode", - "ID": [ "InstantGeode" ], + "ID": "InstantGeode", "UpperVersion": "1.12", "UpdateUrls": [ "http://community.playstarbound.com/threads/109038", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Gate Opener", - "ID": [ "GateOpener.dll", /*since 1.1*/ "mralbobo.GateOpener" ], + "ID": "GateOpener.dll | mralbobo.GateOpener", // changed in 1.1 "UpperVersion": "1.0.1", "UpdateUrls": [ "http://community.playstarbound.com/threads/111988" ], "Notes": "Broke in SDV 1.2." }, { "Name": "GenericShopExtender", - "ID": [ "GenericShopExtender" ], + "ID": "GenericShopExtender", "UpperVersion": "0.1.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/814", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Get Dressed", - "ID": [ "GetDressed.dll", /*since 3.3*/ "Advize.GetDressed" ], + "ID": "GetDressed.dll | Advize.GetDressed", // changed in 3.3 "UpperVersion": "3.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/331" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Gift Taste Helper", - "ID": [ "8008db57-fa67-4730-978e-34b37ef191d6" ], + "ID": "8008db57-fa67-4730-978e-34b37ef191d6", "UpperVersion": "2.3.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/229" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Happy Animals", - "ID": [ "HappyAnimals" ], + "ID": "HappyAnimals", "UpperVersion": "1.0.3", "UpdateUrls": [ "https://community.playstarbound.com/threads/126655", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Happy Birthday", - "ID": [ "{ID:'HappyBirthday', Author:'Alpha_Omegasis'}" ], // disambiguate from Oxyligen's fork + "ID": "{ID:'HappyBirthday', Author:'Alpha_Omegasis'}", // disambiguate from Oxyligen's fork "UpperVersion": "1.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/520", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Harvest With Scythe", - "ID": [ "965169fd-e1ed-47d0-9f12-b104535fb4bc" ], + "ID": "965169fd-e1ed-47d0-9f12-b104535fb4bc", "UpperVersion": "1.0.6", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/236", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Hunger for Food", - "ID": [ "HungerForFoodByTigerle" ], + "ID": "HungerForFoodByTigerle", "UpperVersion": "0.1.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/810", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Improved Quality of Life", - "ID": [ "Demiacle.ImprovedQualityOfLife" ], + "ID": "Demiacle.ImprovedQualityOfLife", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1025", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Less Strict Over-Exertion (AntiExhaustion)", - "ID": [ "BALANCEMOD_AntiExhaustion" ], + "ID": "BALANCEMOD_AntiExhaustion", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/637", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Lookup Anything", - "ID": [ "LookupAnything", /*since 1.10.1*/ "Pathoschild.LookupAnything" ], + "ID": "LookupAnything | Pathoschild.LookupAnything", // changed in 1.10.1 "UpperVersion": "1.10.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/541" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Loved Labels", - "ID": [ "LovedLabels.dll" ], + "ID": "LovedLabels.dll", "UpperVersion": "2.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/279" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Luck Skill", - "ID": [ "LuckSkill", /*since 0.1.4*/ "spacechase0.LuckSkill" ], + "ID": "LuckSkill | spacechase0.LuckSkill", // changed in 0.1.4 "UpperVersion": "0.1.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/521" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "MailOrderPigs", - "ID": [ "MailOrderPigs.dll" ], + "ID": "MailOrderPigs.dll", "UpperVersion": "1.0.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/632", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Makeshift Multiplayer", - "ID": [ "StardewValleyMP", /*since 0.3*/ "spacechase0.StardewValleyMP" ], + "ID": "StardewValleyMP | spacechase0.StardewValleyMP", // changed in 0.3 "UpperVersion": "0.3.6", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/501", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Message Box [API]? (ChatMod)", - "ID": [ "Kithio:ChatMod" ], + "ID": "Kithio:ChatMod", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/resources/message-box-api.4296", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Modder Serialization Utility", - "ID": [ "SerializerUtils-0-1" ], + "ID": "SerializerUtils-0-1", "Status": "Obsolete", "ReasonPhrase": "it's no longer maintained or used." }, { "Name": "More Artifact Spots", - "ID": [ "451" ], + "ID": "451", "UpperVersion": "1.0.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/451", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "More Pets", - "ID": [ "821ce8f6-e629-41ad-9fde-03b54f68b0b6MOREPETS", /* since 1.3 */ "Entoarox.MorePets" ], + "ID": "821ce8f6-e629-41ad-9fde-03b54f68b0b6MOREPETS | Entoarox.MorePets", // changed in 1.3 "UpperVersion": "1.3.2", "UpdateUrls": [ "http://community.playstarbound.com/resources/4288" ], "Notes": "Overhauled for SMAPI 1.11+ compatibility." }, { "Name": "More Rain", - "ID": [ "{ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'More_Rain'}" ], // disambiguate from other mods by Alpha_Omegasis + "ID": "{ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'More_Rain'}", // disambiguate from other mods by Alpha_Omegasis "UpperVersion": "1.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/441", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Multiple Sprites and Portraits On Rotation (File Loading)", - "ID": [ "FileLoading" ], + "ID": "FileLoading", "UpperVersion": "1.12", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1094", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Museum Rearranger", - "ID": [ "{ID:'7ad4f6f7-c3de-4729-a40f-7a11d2b2a358', Name:'Museum Rearranger'}" ], // disambiguate from other mods by Alpha_Omegasis + "ID": "{ID:'7ad4f6f7-c3de-4729-a40f-7a11d2b2a358', Name:'Museum Rearranger'}", // disambiguate from other mods by Alpha_Omegasis "UpperVersion": "1.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/428", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "New Machines", - "ID": [ "F70D4FAB-0AB2-4B78-9F1B-AF2CA2236A59" ], + "ID": "F70D4FAB-0AB2-4B78-9F1B-AF2CA2236A59", "UpperVersion": "4.2.1343", "UpdateUrls": [ "http://community.playstarbound.com/resources/3683", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Night Owl", - "ID": [ "{'ID':'SaveAnywhere', 'Name':'Stardew_NightOwl'}" ], // disambiguate from Save Anywhere + "ID": "{ID:'SaveAnywhere', Name:'Stardew_NightOwl'}", // disambiguate from Save Anywhere "UpperVersion": "2.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/433", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "No Debug Mode", - "ID": [ "NoDebugMode" ], + "ID": "NoDebugMode", "Status": "Obsolete", "ReasonPhrase": "debug mode was removed in SMAPI 1.0." }, { "Name": "NoSoilDecay", - "ID": [ "289dee03-5f38-4d8e-8ffc-e440198e8610" ], + "ID": "289dee03-5f38-4d8e-8ffc-e440198e8610", "UpperVersion": "0.5", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/237", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2, and uses Assembly.GetExecutingAssembly().Location." }, { "Name": "NPC Map Locations", - "ID": [ "NPCMapLocationsMod" ], + "ID": "NPCMapLocationsMod", "LowerVersion": "1.42", "UpperVersion": "1.43", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/239" ], @@ -577,293 +577,293 @@ This file contains advanced configuration for SMAPI. You generally shouldn't cha }, { "Name": "NPC Speak", - "ID": [ "NpcEcho.dll" ], + "ID": "NpcEcho.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/694", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0" }, { "Name": "OmniFarm", - "ID": [ "BlueMod_OmniFarm" ], + "ID": "BlueMod_OmniFarm", "UpperVersion": "2.0.1", "UpdateUrls": [ "http://community.playstarbound.com/threads/127299", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0" }, { "Name": "Part of the Community", - "ID": [ "SB_PotC" ], + "ID": "SB_PotC", "UpperVersion": "1.0.8", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/923" ], "Notes": "Broke in SDV 1.2." }, { "Name": "PelicanFiber", - "ID": [ "PelicanFiber.dll" ], + "ID": "PelicanFiber.dll", "UpperVersion": "3.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/631", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "PelicanTTS", - "ID": [ "Platonymous.PelicanTTS" ], + "ID": "Platonymous.PelicanTTS", "UpperVersion": "1.6", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1079", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Persival's BundleMod", - "ID": [ "BundleMod.dll" ], + "ID": "BundleMod.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/438", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.1." }, { "Name": "Point-and-Plant", - "ID": [ "PointAndPlant.dll" ], + "ID": "PointAndPlant.dll", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/572", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "PrairieKingMadeEasy", - "ID": [ "PrairieKingMadeEasy.dll" ], + "ID": "PrairieKingMadeEasy.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/resources/3594", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "RainRandomizer", - "ID": [ "RainRandomizer.dll" ], + "ID": "RainRandomizer.dll", "UpperVersion": "1.0.3", "UpdateUrls": [ "http://community.playstarbound.com/threads/111526", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "RelationshipsEnhanced", - "ID": [ "relationshipsenhanced" ], + "ID": "relationshipsenhanced", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/resources/4435", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "RelationShipStatus", - "ID": [ "relationshipstatus" ], + "ID": "relationshipstatus", "UpperVersion": "1.0.5", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/751", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Replanter", - "ID": [ "Replanter.dll" ], + "ID": "Replanter.dll", "UpperVersion": "1.0.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/589", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Reusable Wallpapers and Floors (Wallpaper Retain)", - "ID": [ "dae1b553-2e39-43e7-8400-c7c5c836134b" ], + "ID": "dae1b553-2e39-43e7-8400-c7c5c836134b", "UpperVersion": "1.5", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/356", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Rush Orders", - "ID": [ "RushOrders", /*since 1.1*/ "spacechase0.RushOrders" ], + "ID": "RushOrders | spacechase0.RushOrders", // changed in 1.1 "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/605" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Save Anywhere", - "ID": [ "{'ID':'SaveAnywhere', 'Name':'Save Anywhere'}" ], // disambiguate from Night Owl + "ID": "{ID:'SaveAnywhere', Name:'Save Anywhere'}", // disambiguate from Night Owl "UpperVersion": "2.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/444", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Seasonal Immersion", - "ID": [ "EntoaroxSeasonalHouse", /*since 1.1.0*/ "EntoaroxSeasonalBuildings", /* since 1.6 or earlier*/ "EntoaroxSeasonalImmersion", /*since 1.7*/ "Entoarox.SeasonalImmersion" ], + "ID": "EntoaroxSeasonalHouse | EntoaroxSeasonalBuildings | EntoaroxSeasonalImmersion | Entoarox.SeasonalImmersion", // changed in 1.1, 1.6 or earlier, and 1.7 "UpperVersion": "1.8.2", "UpdateUrls": [ "http://community.playstarbound.com/resources/4262", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Send Items", - "ID": [ "Denifia.SendItems" ], + "ID": "Denifia.SendItems", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1087", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Shed Notifications (BuildingsNotifications)", - "ID": [ "TheCroak.BuildingsNotifications" ], + "ID": "TheCroak.BuildingsNotifications", "UpperVersion": "0.4.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/620", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Shenandoah Project", - "ID": [ "Shenandoah Project" ], + "ID": "Shenandoah Project", "UpperVersion": "1.1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/756", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Shipment Tracker", - "ID": [ "7e474181-e1a0-40f9-9c11-d08a3dcefaf3" ], + "ID": "7e474181-e1a0-40f9-9c11-d08a3dcefaf3", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/321", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Shop Expander", - "ID": [ /*since at least 1.4*/ "821ce8f6-e629-41ad-9fde-03b54f68b0b6", /*since 1.5*/ "EntoaroxShopExpander", /*since 1.5.2*/ "Entoarox.ShopExpander" ], + "ID": "821ce8f6-e629-41ad-9fde-03b54f68b0b6 | EntoaroxShopExpander | Entoarox.ShopExpander", // changed in 1.5 and 1.5.2 "UpperVersion": "1.5.3", "UpdateUrls": [ "http://community.playstarbound.com/resources/4381", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Showcase Mod", - "ID": [ "Igorious.Showcase" ], + "ID": "Igorious.Showcase", "UpperVersion": "0.9", "UpdateUrls": [ "http://community.playstarbound.com/resources/4487", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Simple Sprinklers", - "ID": [ "SimpleSprinkler.dll" ], + "ID": "SimpleSprinkler.dll", "UpperVersion": "1.4", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/76", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Siv's Marriage Mod", - "ID": [ "6266959802" ], + "ID": "6266959802", "UpperVersion": "1.2.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/366", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 1.9 (has multiple Mod instances)." }, { "Name": "Skill Prestige", - "ID": [ "6b843e60-c8fc-4a25-a67b-4a38ac8dcf9b" ], + "ID": "6b843e60-c8fc-4a25-a67b-4a38ac8dcf9b", "UpperVersion": "1.0.9", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/569", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Skill Prestige: Cooking Adapter", - "ID": [ "20d6b8a3-b6e7-460b-a6e4-07c2b0cb6c63" ], + "ID": "20d6b8a3-b6e7-460b-a6e4-07c2b0cb6c63", "UpperVersion": "1.0.9", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/569", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Slower Fence Decay", - "ID": [ "SPDSlowFenceDecay" ], + "ID": "SPDSlowFenceDecay", "UpperVersion": "0.5.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/252", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Smart Mod", - "ID": [ "KuroBear.SmartMod" ], + "ID": "KuroBear.SmartMod", "UpperVersion": "2.2", "UpdateUrls": [ "http://community.playstarbound.com/threads/108104", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Solar Eclipse Event", - "ID": [ "KoihimeNakamura.SolarEclipseEvent" ], + "ID": "KoihimeNakamura.SolarEclipseEvent", "UpperVersion": "1.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/897", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Sprinkles", - "ID": [ "Platonymous.Sprinkles" ], + "ID": "Platonymous.Sprinkles", "UpperVersion": "1.1.3", "UpdateUrls": [ "http://community.playstarbound.com/resources/4592", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Sprint and Dash", - "ID": [ "SPDSprintAndDash" ], + "ID": "SPDSprintAndDash", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/resources/3531", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Sprint and Dash Redux", - "ID": [ "SPDSprintAndDash" ], + "ID": "SPDSprintAndDash", "UpperVersion": "1.2", "UpdateUrls": [ "http://community.playstarbound.com/resources/4201" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Sprinting Mod", - "ID": [ "a10d3097-b073-4185-98ba-76b586cba00c" ], + "ID": "a10d3097-b073-4185-98ba-76b586cba00c", "UpperVersion": "2.1", "UpdateUrls": [ "http://community.playstarbound.com/threads/108313", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "StackSplitX", - "ID": [ "StackSplitX.dll" ], + "ID": "StackSplitX.dll", "UpperVersion": "1.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/798" ], "Notes": "Broke in SDV 1.2." }, { "Name": "StaminaRegen", - "ID": [ "StaminaRegen.dll" ], + "ID": "StaminaRegen.dll", "UpperVersion": "1.0.3", "UpdateUrls": [ "http://community.playstarbound.com/threads/111526", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Stardew Auto Backup", - "ID": [ "{'ID':'4be88c18-b6f3-49b0-ba96-f94b1a5be890', 'Name':'Stardew_Save_Backup'}" ], // disambiguate from other Alpha_Omegasis mods + "ID": "{ID:'4be88c18-b6f3-49b0-ba96-f94b1a5be890', Name:'Stardew_Save_Backup'}", // disambiguate from other Alpha_Omegasis mods "UpperVersion": "1.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/435", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Stardew Notification", - "ID": [ "stardewnotification" ], + "ID": "stardewnotification", "UpperVersion": "1.7", "UpdateUrls": [ "http://community.playstarbound.com/threads/127979", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Stardew Symphony", - "ID": [ "{ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'Stardew_Symphony'}" ], // disambiguate other mods by Alpha_Omegasis + "ID": "{ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'Stardew_Symphony'}", // disambiguate other mods by Alpha_Omegasis "UpperVersion": "1.3", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/425", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "StarDustCore", - "ID": [ "StarDustCore" ], + "ID": "StarDustCore", "Status": "Obsolete", "ReasonPhrase": "it was only used by earlier versions of Save Anywhere, and is no longer used or maintained." }, { "Name": "StashItemsToChest", - "ID": [ "BlueMod_StashItemsToChest" ], + "ID": "BlueMod_StashItemsToChest", "UpperVersion": "1.0.1", "UpdateUrls": [ "http://community.playstarbound.com/threads/126906", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Stone Bridge Over Pond (PondWithBridge)", - "ID": [ "PondWithBridge.dll" ], + "ID": "PondWithBridge.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/316", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Super Greenhouse Warp Modifier", - "ID": [ "SuperGreenhouse" ], + "ID": "SuperGreenhouse", "UpperVersion": "1.0", "UpperVersionLabel": "1.0 (2016-11-29)", "UpdateUrls": [ "http://community.playstarbound.com/resources/4334", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], @@ -871,132 +871,132 @@ This file contains advanced configuration for SMAPI. You generally shouldn't cha }, { "Name": "Tainted Cellar", - "ID": [ "TaintedCellar.dll" ], + "ID": "TaintedCellar.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/threads/115735", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.1 or 1.11." }, { "Name": "Teleporter", - "ID": [ "Teleporter" ], + "ID": "Teleporter", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://community.playstarbound.com/resources/4374", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Three-heart Dance Partner", - "ID": [ "ThreeHeartDancePartner" ], + "ID": "ThreeHeartDancePartner", "UpperVersion": "1.0.1", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/500", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "TimeSpeed", - "ID": [ "TimeSpeed.dll", /* since 2.0.3 */ "{ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'TimeSpeed'}", /* since 2.0.3 */ "{ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'TimeSpeed Mod (unofficial)'}", /*since 2.1*/ "community.TimeSpeed" ], // disambiguate other mods by Alpha_Omegasis + "ID": "TimeSpeed.dll | {ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'TimeSpeed'} | {ID:'4108e859-333c-4fec-a1a7-d2e18c1019fe', Name:'TimeSpeed Mod (unofficial)'} | community.TimeSpeed", // changed in 2.0.3 and 2.1; disambiguate other mods by Alpha_Omegasis "UpperVersion": "2.2", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/169" ], "Notes": "Broke in SDV 1.2." }, { "Name": "UiModSuite", - "ID": [ "Demiacle.UiModSuite" ], + "ID": "Demiacle.UiModSuite", "UpperVersion": "1.0", "UpdateUrls": [ "http://www.nexusmods.com/stardewvalley/mods/1023", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "WakeUp", - "ID": [ "WakeUp.dll" ], + "ID": "WakeUp.dll", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://community.playstarbound.com/threads/111526", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Wallpaper Fix", - "ID": [ "WallpaperFix.dll" ], + "ID": "WallpaperFix.dll", "UpperVersion": "1.1", "UpdateUrls": [ "http://community.playstarbound.com/resources/4211", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "Weather Controller", - "ID": [ "WeatherController.dll" ], + "ID": "WeatherController.dll", "UpperVersion": "1.0.2", "UpdateUrls": [ "http://community.playstarbound.com/threads/111526", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Wonderful Farm Life", - "ID": [ "WonderfulFarmLife.dll" ], + "ID": "WonderfulFarmLife.dll", "UpperVersion": "1.0", "UpdateUrls": [ "http://community.playstarbound.com/threads/115384", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SDV 1.1 or 1.11." }, { "Name": "XmlSerializerRetool", - "ID": [ "XmlSerializerRetool.dll" ], + "ID": "XmlSerializerRetool.dll", "Status": "Obsolete", "ReasonPhrase": "it's no longer maintained or used." }, { "Name": "Xnb Loader", - "ID": [ "Entoarox.XnbLoader" ], + "ID": "Entoarox.XnbLoader", "UpperVersion": "1.0.6", "UpdateUrls": [ "http://community.playstarbound.com/resources/4506", "http://stardewvalleywiki.com/Modding:SMAPI_2.0" ], "Notes": "Broke in SMAPI 2.0." }, { "Name": "zDailyIncrease", - "ID": [ "zdailyincrease" ], + "ID": "zdailyincrease", "UpperVersion": "1.2", "UpdateUrls": [ "http://community.playstarbound.com/resources/4247" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Zoom Out Extreme", - "ID": [ "ZoomMod" ], + "ID": "ZoomMod", "UpperVersion": "0.1", "UpdateUrls": [ "http://community.playstarbound.com/threads/115028" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Zoryn's Better RNG", - "ID": [ "76b6d1e1-f7ba-4d72-8c32-5a1e6d2716f6", /*since 1.6*/ "Zoryn.BetterRNG" ], + "ID": "76b6d1e1-f7ba-4d72-8c32-5a1e6d2716f6 | Zoryn.BetterRNG", // changed in 1.6 "UpperVersion": "1.6", "UpdateUrls": [ "https://github.com/Zoryn4163/SMAPI-Mods/releases" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Zoryn's Calendar Anywhere", - "ID": [ "a41c01cd-0437-43eb-944f-78cb5a53002a", /*since 1.6*/ "Zoryn.CalendarAnywhere" ], + "ID": "a41c01cd-0437-43eb-944f-78cb5a53002a | Zoryn.CalendarAnywhere", // changed in 1.6 "UpperVersion": "1.6", "UpdateUrls": [ "https://github.com/Zoryn4163/SMAPI-Mods/releases" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Zoryn's Health Bars", - "ID": [ "HealthBars.dll", /*since 1.6*/ "Zoryn.HealthBars" ], + "ID": "HealthBars.dll | Zoryn.HealthBars", // changed in 1.6 "UpperVersion": "1.6", "UpdateUrls": [ "https://github.com/Zoryn4163/SMAPI-Mods/releases" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Zoryn's Junimo Deposit Anywhere", - "ID": [ "f93a4fe8-cade-4146-9335-b5f82fbbf7bc", /*since 1.6*/ "Zoryn.JunimoDepositAnywhere" ], + "ID": "f93a4fe8-cade-4146-9335-b5f82fbbf7bc | Zoryn.JunimoDepositAnywhere", // changed in 1.6 "UpperVersion": "1.7", "UpdateUrls": [ "https://github.com/Zoryn4163/SMAPI-Mods/releases" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Zoryn's Movement Mod", - "ID": [ "8a632929-8335-484f-87dd-c29d2ba3215d", /*since 1.6*/ "Zoryn.MovementModifier" ], + "ID": "8a632929-8335-484f-87dd-c29d2ba3215d | Zoryn.MovementModifier", // changed in 1.6 "UpperVersion": "1.6", "UpdateUrls": [ "https://github.com/Zoryn4163/SMAPI-Mods/releases" ], "Notes": "Broke in SDV 1.2." }, { "Name": "Zoryn's Regen Mod", - "ID": [ "dfac4383-1b6b-4f33-ae4e-37fc23e5252e", /*since 1.6*/ "Zoryn.RegenMod" ], + "ID": "dfac4383-1b6b-4f33-ae4e-37fc23e5252e | Zoryn.RegenMod", // changed in 1.6 "UpperVersion": "1.6", "UpdateUrls": [ "https://github.com/Zoryn4163/SMAPI-Mods/releases" ], "Notes": "Broke in SDV 1.2." |