summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-08-04 18:55:06 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 19:03:26 -0400
commit5e8991bfcf7f287f595e858c34b8ac1a92c42b9b (patch)
tree276f6c866783cb9acf46ba4f352c05f8662cee6b
parent0c5fa1180949a28ec0c5e2e17df669c1b7c4dbef (diff)
downloadSMAPI-5e8991bfcf7f287f595e858c34b8ac1a92c42b9b.tar.gz
SMAPI-5e8991bfcf7f287f595e858c34b8ac1a92c42b9b.tar.bz2
SMAPI-5e8991bfcf7f287f595e858c34b8ac1a92c42b9b.zip
tweak button names, update release notes (#654)
-rw-r--r--docs/release-notes.md4
-rw-r--r--src/SMAPI.Web/Views/JsonValidator/Index.cshtml2
-rw-r--r--src/SMAPI.Web/Views/LogParser/Index.cshtml2
3 files changed, 6 insertions, 2 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md
index 9ee8ae8f..9ec33000 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -36,6 +36,10 @@ These changes have not been released yet.
* Clicking a mod link now automatically adds it to the visible mods when the list is filtered.
* Added metadata links and dev notes (if any) to advanced info.
+* For the JSON validator:
+ * Added JSON validator at [json.smapi.io](https://json.smapi.io), which lets you validate a JSON file against predefined mod formats.
+ * Added support for the `manifest.json` format.
+
* For modders:
* Mods are now loaded much earlier in the game launch. This lets mods intercept any content asset, but the game is not fully initialised when `Entry` is called (use the `GameLaunched` event if you need to run code when the game is initialised).
* Added support for content pack translations.
diff --git a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml
index 5c3168e5..1cf35e39 100644
--- a/src/SMAPI.Web/Views/JsonValidator/Index.cshtml
+++ b/src/SMAPI.Web/Views/JsonValidator/Index.cshtml
@@ -72,7 +72,7 @@ else if (Model.PasteID != null)
</li>
<li>
Click this button:<br />
- <input type="submit" id="submit" value="save file" />
+ <input type="submit" id="submit" value="save & validate file" />
</li>
</ol>
</form>
diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml
index 1b40cfa9..e974c308 100644
--- a/src/SMAPI.Web/Views/LogParser/Index.cshtml
+++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml
@@ -118,7 +118,7 @@ else if (Model.ParsedLog?.IsValid == true)
</li>
<li>
Click this button:<br />
- <input type="submit" id="submit" value="save log" />
+ <input type="submit" id="submit" value="save & parse log" />
</li>
<li>On the new page, copy the URL and send it to the person helping you.</li>
</ol>