diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-03 00:23:26 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-05-03 00:23:26 -0400 |
commit | 4bee6311c4f6bf654d8b9c54a53597347de65c4f (patch) | |
tree | 1876d58b73378ea67886e33650c8988cbbbb1eab /src/SMAPI/Constants.cs | |
parent | 6a6001c7e6a03ff6fb0da992a87c6ef30d6bc952 (diff) | |
download | SMAPI-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.cs | 3 |
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"); |