diff --git a/docs/release-notes.md b/docs/release-notes.md index fec8f9ac..b0081806 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -1,4 +1,10 @@ # Release notes +## Upcoming release +These changes have not been released yet. + +* For the web UI: + * The log parser now hides some messages by default, like the mod list. + ## 2.11 Released 01 March 2019 for Stardew Valley 1.3.36. diff --git a/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs b/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs index ecca0b5b..f7c99d02 100644 --- a/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs +++ b/src/SMAPI.Web/Framework/LogParsing/Models/LogMessage.cs @@ -21,10 +21,10 @@ namespace StardewModdingAPI.Web.Framework.LogParsing.Models /// The number of times this message was repeated consecutively. public int Repeated { get; set; } - /// The section that this log message belongs too. + /// The section that this log message belongs to. public LogSection? Section { get; set; } - /// Whether this message is the first one of it's section. + /// Whether this message is the first one of its section. public bool IsStartOfSection { get; set; } } }