diff --git a/CHANGELOG.md b/CHANGELOG.md index 8de6b2d..c8115bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.1.3.10 - +- Fixed a misplaced function causing single-file HTML output to be written without a header or styling. +- \/me messages are now italicized according to the native client's renderer rather than left plain. +- Under-the-hood changes to error message selection which are less efficient but also much cleaner. +- Further optimizations to Regex pattern matching, including compile-time pattern functions. + # 1.1.3.9 - 25/03/2024 - Removing leftover BBCode tags after we're done translating to HTML has been massively optimized. When I say massive, I mean a literal 250% speedup in pessimistic cases. I'm ashamed of myself for not doing this sooner. - Private channel logs are now formatted with their IDX name (if it exists) followed by the user's supplied file name in parentheses. diff --git a/Common.cs b/Common.cs index 2af10c0..3a3d699 100644 --- a/Common.cs +++ b/Common.cs @@ -7,7 +7,7 @@ namespace FLogS /// /// Static helper functions serving purely logical purposes in either the front- or backend. /// - internal class Common + internal static class Common { public readonly static string dateFormat = "yyyy-MM-dd HH:mm:ss"; // ISO 8601. private readonly static DateTime epoch = new(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc); diff --git a/FLogS.csproj b/FLogS.csproj index 252c059..94d0792 100644 --- a/FLogS.csproj +++ b/FLogS.csproj @@ -2,12 +2,12 @@ WinExe - net6.0-windows7.0 + net7.0-windows7.0 enable true False FLogS - 1.1.3.9 + 1.1.3.10 True none True diff --git a/MainWindow.xaml b/MainWindow.xaml index 12df068..04bba58 100644 --- a/MainWindow.xaml +++ b/MainWindow.xaml @@ -94,7 +94,7 @@ -