diff --git a/Changelog.md b/Changelog.md index 68d4cb3..d8c8492 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,16 @@ +### v2.15 (15-Sep-2019) + +- Improved markdown parser and made it even faster for non-HTML formats. +- [HTML] Added support for block quotes. +- [HTML] Links pointing to a Discord message will now navigate to the linked message inside exported chat log if it's there. +- [HTML] Updated light theme to match how it looks in Discord after recent changes. +- [HTML] Added indication for when a message is pinned. Pinned messages now have a tinted background. +- [HTML] Fixed an issue where multiline code blocks sometimes had incorrect formatting applied to them. +- [TXT] Added indication for when a message is pinned. Pinned messages now have `(pinned)` next to timestamp and author. +- [CSV] Added message author's user ID to output. +- [GUI] Streamlined auto-update process a bit. +- [GUI] Added some tooltips. + ### v2.14 (15-Jun-2019) - [TXT] Added support for embeds. diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index f237af5..d90cd49 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net46;netcoreapp2.1 - 2.14 + 2.15 Tyrrrz Copyright (c) Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index ed9e345..1ddca7d 100644 --- a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs +++ b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs @@ -3,5 +3,5 @@ [assembly: AssemblyTitle("DiscordChatExporter")] [assembly: AssemblyCompany("Tyrrrz")] [assembly: AssemblyCopyright("Copyright (c) Alexey Golub")] -[assembly: AssemblyVersion("2.14")] -[assembly: AssemblyFileVersion("2.14")] \ No newline at end of file +[assembly: AssemblyVersion("2.15")] +[assembly: AssemblyFileVersion("2.15")] \ No newline at end of file