diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-08-31 00:48:34 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-08-31 00:48:34 -0400 |
commit | ff8ffbdef0306254094258be326d75fcdc2bcbe1 (patch) | |
tree | 2896652d10e26f33923575522b30accacaab2222 /src/SMAPI/StardewModdingAPI.config.json | |
parent | 4af0786ecb6b16826b2a23b1448c3ab8f5ccd569 (diff) | |
download | SMAPI-ff8ffbdef0306254094258be326d75fcdc2bcbe1.tar.gz SMAPI-ff8ffbdef0306254094258be326d75fcdc2bcbe1.tar.bz2 SMAPI-ff8ffbdef0306254094258be326d75fcdc2bcbe1.zip |
add paranoid warnings mode (#590)
Diffstat (limited to 'src/SMAPI/StardewModdingAPI.config.json')
-rw-r--r-- | src/SMAPI/StardewModdingAPI.config.json | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/src/SMAPI/StardewModdingAPI.config.json b/src/SMAPI/StardewModdingAPI.config.json index 115997ba..d81292c8 100644 --- a/src/SMAPI/StardewModdingAPI.config.json +++ b/src/SMAPI/StardewModdingAPI.config.json @@ -9,10 +9,12 @@ This file contains advanced configuration for SMAPI. You generally shouldn't cha */ { /** - * Whether to enable features intended for mod developers. Currently this only makes TRACE-level - * messages appear in the console. + * The console color theme to use. The possible values are: + * - AutoDetect: SMAPI will assume a light background on Mac, and detect the background color automatically on Linux or Windows. + * - LightBackground: use darker text colors that look better on a white or light background. + * - DarkBackground: use lighter text colors that look better on a black or dark background. */ - "DeveloperMode": true, + "ColorScheme": "AutoDetect", /** * Whether SMAPI should check for newer versions of SMAPI and mods when you load the game. If new @@ -22,6 +24,20 @@ This file contains advanced configuration for SMAPI. You generally shouldn't cha "CheckForUpdates": true, /** + * Whether to enable features intended for mod developers. Currently this only makes TRACE-level + * messages appear in the console. + */ + "DeveloperMode": true, + + /** + * Whether to add a section to the 'mod issues' list for mods which directly use potentially + * sensitive .NET APIs like file or shell access. Note that many mods do this legitimately as + * part of their normal functionality, so these warnings are meaningless without further + * investigation. + */ + "ParanoidWarnings": false, + + /** * Whether SMAPI should show newer beta versions as an available update. If not specified, SMAPI * will only show beta updates if the current version is beta. */ @@ -51,14 +67,6 @@ This file contains advanced configuration for SMAPI. You generally shouldn't cha "DumpMetadata": false, /** - * The console color theme to use. The possible values are: - * - AutoDetect: SMAPI will assume a light background on Mac, and detect the background color automatically on Linux or Windows. - * - LightBackground: use darker text colors that look better on a white or light background. - * - DarkBackground: use lighter text colors that look better on a black or dark background. - */ - "ColorScheme": "AutoDetect", - - /** * The mod IDs SMAPI should ignore when performing update checks or validating update keys. */ "SuppressUpdateChecks": [ |