diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-06-30 16:55:55 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-09-13 16:00:35 -0400 |
commit | f7d4a9181b923f2aa213ee3816fa69ac7d095505 (patch) | |
tree | 499f369fe06904d5ec88bb1f6ceae589f2a71f44 | |
parent | 6eb36333b7b7568a3fa94f74f98722c41a6e54f3 (diff) | |
download | SMAPI-f7d4a9181b923f2aa213ee3816fa69ac7d095505.tar.gz SMAPI-f7d4a9181b923f2aa213ee3816fa69ac7d095505.tar.bz2 SMAPI-f7d4a9181b923f2aa213ee3816fa69ac7d095505.zip |
move 1.4 compatibility into advanced until it's publicly available, change "SDV beta only" to use version (#638)
-rw-r--r-- | src/SMAPI.Web/Views/Mods/Index.cshtml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/SMAPI.Web/Views/Mods/Index.cshtml b/src/SMAPI.Web/Views/Mods/Index.cshtml index 8d3f6d98..8293fbe2 100644 --- a/src/SMAPI.Web/Views/Mods/Index.cshtml +++ b/src/SMAPI.Web/Views/Mods/Index.cshtml @@ -18,18 +18,18 @@ </script> } -<div id="intro"> - <p>This page shows all known SMAPI mods and (incompatible) content packs, whether they work with the latest versions of Stardew Valley and SMAPI, and how to fix them if not. If a mod doesn't work after following the instructions below, check <a href="https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting">the troubleshooting guide</a> or <a href="https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting#Ask_for_help">ask for help</a>.</p> +<div id="app"> + <div id="intro"> + <p>This page shows all known SMAPI mods and (incompatible) content packs, whether they work with the latest versions of Stardew Valley and SMAPI, and how to fix them if not. If a mod doesn't work after following the instructions below, check <a href="https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting">the troubleshooting guide</a> or <a href="https://stardewvalleywiki.com/Modding:Player_Guide/Troubleshooting#Ask_for_help">ask for help</a>.</p> - <p>The list is updated every few days (you can help <a href="https://stardewvalleywiki.com/Modding:Mod_compatibility">update it</a>!). It doesn't include XNB mods (see <a href="https://stardewvalleywiki.com/Modding:Using_XNB_mods"><em>using XNB mods</em> on the wiki</a> instead) or compatible content packs.</p> + <p>The list is updated every few days (you can help <a href="https://stardewvalleywiki.com/Modding:Mod_compatibility">update it</a>!). It doesn't include XNB mods (see <a href="https://stardewvalleywiki.com/Modding:Using_XNB_mods"><em>using XNB mods</em> on the wiki</a> instead) or compatible content packs.</p> - @if (Model.BetaVersion != null) - { - <p id="beta-blurb"><strong>Note:</strong> "SDV beta only" lines are for an unreleased version of the game (@Model.BetaVersion), not the stable version most players have. If a mod doesn't have a "SDV beta only" line, the info applies to both versions of the game.</p> - } -</div> + @if (Model.BetaVersion != null) + { + <p id="beta-blurb" v-show="showAdvanced"><strong>Note:</strong> "SDV @Model.BetaVersion only" lines are for an unreleased version of the game, not the stable version most players have. If a mod doesn't have that line, the info applies to both versions of the game.</p> + } + </div> -<div id="app"> <div id="options"> <div> <label for="search-box">Search: </label> @@ -80,8 +80,8 @@ </td> <td> <div v-html="mod.Compatibility.Summary"></div> - <div v-if="mod.BetaCompatibility"> - <strong v-if="mod.BetaCompatibility">SDV beta only:</strong> + <div v-if="mod.BetaCompatibility" v-show="showAdvanced"> + <strong v-if="mod.BetaCompatibility">SDV @Model.BetaVersion only:</strong> <span v-html="mod.BetaCompatibility.Summary"></span> </div> <div v-for="(warning, i) in mod.Warnings">⚠ {{warning}}</div> |