diff options
-rw-r--r-- | docs/release-notes.md | 1 | ||||
-rw-r--r-- | src/SMAPI.Web/Views/LogParser/Index.cshtml | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/docs/release-notes.md b/docs/release-notes.md index f2e407f1..87b142bc 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -9,6 +9,7 @@ These changes have not been released yet. * For the web UI: * When filtering the mod list, clicking a mod link now automatically adds it to the visible mods. + * Added log parser instructions for Android. * Fixed log parser failing in some cases due to time format localisation. * For modders: diff --git a/src/SMAPI.Web/Views/LogParser/Index.cshtml b/src/SMAPI.Web/Views/LogParser/Index.cshtml index dff37d7d..1b40cfa9 100644 --- a/src/SMAPI.Web/Views/LogParser/Index.cshtml +++ b/src/SMAPI.Web/Views/LogParser/Index.cshtml @@ -67,10 +67,20 @@ else if (Model.ParsedLog?.IsValid == true) <h2>Where do I find my SMAPI log?</h2> <div>What system do you use?</div> <ul id="os-list"> + <li><input type="radio" name="os" value="android" id="os-android" /> <label for="os-android">Android</label></li> <li><input type="radio" name="os" value="linux" id="os-linux" /> <label for="os-linux">Linux</label></li> <li><input type="radio" name="os" value="mac" id="os-mac" /> <label for="os-mac">Mac</label></li> <li><input type="radio" name="os" value="windows" id="os-windows" /> <label for="os-windows">Windows</label></li> </ul> + <div data-os="android"> + On Android: + <ol> + <li>Open a file app (like My Files or MT Manager).</li> + <li>Find the <code>StardewValley</code> folder on your internal storage.</li> + <li>Open the <code>ErrorLogs</code> subfolder.</li> + <li>The log file is <code>SMAPI-crash.txt</code> if it exists, otherwise <code>SMAPI-latest.txt</code>.</li> + </ol> + </div> <div data-os="linux"> On Linux: <ol> |