From d804526d52e6caa3fbaf22ad043898174b0b25ae Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 4 Jan 2020 22:32:23 -0500 Subject: remove DumpMetadata option --- src/SMAPI/Framework/Models/ModFolderExport.cs | 21 --------------------- src/SMAPI/Framework/Models/SConfig.cs | 6 +----- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 src/SMAPI/Framework/Models/ModFolderExport.cs (limited to 'src/SMAPI/Framework/Models') diff --git a/src/SMAPI/Framework/Models/ModFolderExport.cs b/src/SMAPI/Framework/Models/ModFolderExport.cs deleted file mode 100644 index 3b8d451a..00000000 --- a/src/SMAPI/Framework/Models/ModFolderExport.cs +++ /dev/null @@ -1,21 +0,0 @@ -namespace StardewModdingAPI.Framework.Models -{ - /// Metadata exported to the mod folder. - internal class ModFolderExport - { - /// When the export was generated. - public string Exported { get; set; } - - /// The absolute path of the mod folder. - public string ModFolderPath { get; set; } - - /// The game version which last loaded the mods. - public string GameVersion { get; set; } - - /// The SMAPI version which last loaded the mods. - public string ApiVersion { get; set; } - - /// The detected mods. - public IModMetadata[] Mods { get; set; } - } -} diff --git a/src/SMAPI/Framework/Models/SConfig.cs b/src/SMAPI/Framework/Models/SConfig.cs index 53939f8c..b1612aa4 100644 --- a/src/SMAPI/Framework/Models/SConfig.cs +++ b/src/SMAPI/Framework/Models/SConfig.cs @@ -25,8 +25,7 @@ namespace StardewModdingAPI.Framework.Models [nameof(GitHubProjectName)] = "Pathoschild/SMAPI", [nameof(WebApiBaseUrl)] = "https://smapi.io/api/", [nameof(VerboseLogging)] = false, - [nameof(LogNetworkTraffic)] = false, - [nameof(DumpMetadata)] = false + [nameof(LogNetworkTraffic)] = false }; /// The default values for , to log changes if different. @@ -64,9 +63,6 @@ namespace StardewModdingAPI.Framework.Models /// Whether SMAPI should log network traffic. Best combined with , which includes network metadata. public bool LogNetworkTraffic { get; set; } - /// Whether to generate a file in the mods folder with detailed metadata about the detected mods. - public bool DumpMetadata { get; set; } - /// The colors to use for text written to the SMAPI console. public ColorSchemeConfig ConsoleColors { get; set; } -- cgit