diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-11-27 22:45:14 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-11-27 22:45:14 -0500 |
commit | b64cec918d1511b6b71c9d2e30f987e9b5cc24fd (patch) | |
tree | c5dbe084c59d6a660cdc4a416b7ee21e3c922068 /src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs | |
parent | 12e0c1519663b7106c5672ce75c6e94d8ab7638f (diff) | |
download | SMAPI-b64cec918d1511b6b71c9d2e30f987e9b5cc24fd.tar.gz SMAPI-b64cec918d1511b6b71c9d2e30f987e9b5cc24fd.tar.bz2 SMAPI-b64cec918d1511b6b71c9d2e30f987e9b5cc24fd.zip |
remove direct download for beta versions
With this change, only the main version has a direct download.
Showing beta info here caused a few issues:
* The vast majority of players don't use the game beta, so they were often confused about which version to download.
* Beta versions typically have much longer release info (e.g. detailed summary, release notes, caveats and warnings, etc), and the extra download button made the player guide button under it less prominent and visible. Those both contributed to information overload and the above confusion.
* Unlike main versions, beta versions aren't permanently archived on GitHub (since the beta branch is routinely rebased onto the latest stable update). That makes it messy to manage beta releases through GitHub.
Instead there's now a message under the download button which clearly links to where the beta version can be downloaded.
Diffstat (limited to 'src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs')
-rw-r--r-- | src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs index 43969f51..664dbef3 100644 --- a/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs +++ b/src/SMAPI.Web/Framework/ConfigModels/SiteConfig.cs @@ -6,11 +6,8 @@ namespace StardewModdingAPI.Web.Framework.ConfigModels /********* ** Accessors *********/ - /// <summary>Whether to show SMAPI beta versions on the main page, if any.</summary> - public bool BetaEnabled { get; set; } - - /// <summary>A short sentence shown under the beta download button, if any.</summary> - public string BetaBlurb { get; set; } + /// <summary>A message to show below the download button (e.g. for details on downloading a beta version), in Markdown format.</summary> + public string OtherBlurb { get; set; } /// <summary>A list of supports to credit on the main page, in Markdown format.</summary> public string SupporterList { get; set; } |