summaryrefslogtreecommitdiff
path: root/src/SMAPI/Constants.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2018-05-03 00:23:26 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2018-05-03 00:23:26 -0400
commit4bee6311c4f6bf654d8b9c54a53597347de65c4f (patch)
tree1876d58b73378ea67886e33650c8988cbbbb1eab /src/SMAPI/Constants.cs
parent6a6001c7e6a03ff6fb0da992a87c6ef30d6bc952 (diff)
downloadSMAPI-4bee6311c4f6bf654d8b9c54a53597347de65c4f.tar.gz
SMAPI-4bee6311c4f6bf654d8b9c54a53597347de65c4f.tar.bz2
SMAPI-4bee6311c4f6bf654d8b9c54a53597347de65c4f.zip
add prompt when in beta channel and a new version is found
Diffstat (limited to 'src/SMAPI/Constants.cs')
-rw-r--r--src/SMAPI/Constants.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/SMAPI/Constants.cs b/src/SMAPI/Constants.cs
index 2ef26704..f87141b2 100644
--- a/src/SMAPI/Constants.cs
+++ b/src/SMAPI/Constants.cs
@@ -88,6 +88,9 @@ namespace StardewModdingAPI
/// <summary>The file path which stores a fatal crash message for the next run.</summary>
internal static string FatalCrashMarker => Path.Combine(Constants.ExecutionPath, "StardewModdingAPI.crash.marker");
+ /// <summary>The file path which stores the detected update version for the next run.</summary>
+ internal static string UpdateMarker => Path.Combine(Constants.ExecutionPath, "StardewModdingAPI.update.marker");
+
/// <summary>The full path to the folder containing mods.</summary>
internal static string ModPath { get; } = Path.Combine(Constants.ExecutionPath, "Mods");