diff --git a/Changelog.md b/Changelog.md index 468ecea..5d056c9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,10 @@ +### v2.12 (11-Apr-2019) + +- Improved markdown parsing performance which speeds up the final stage of exporting by around 4.5 times. +- Improved performance when exporting as PlainText or CSV. +- [GUI] Fixed an issue where the app would freeze up and report as "not responding" during the final stage of exporting. +- [CLI] Fixed an issue where it would say "Completed" after exporting a chat log, even if the process failed. + ### v2.11 (14-Mar-2019) - [HTML] Added syntax highlighting for multiline code blocks via Highlight.js. diff --git a/Deploy/Choco/discordchatexporter.nuspec b/Deploy/Choco/discordchatexporter.nuspec index 8b2f383..c87b38c 100644 --- a/Deploy/Choco/discordchatexporter.nuspec +++ b/Deploy/Choco/discordchatexporter.nuspec @@ -3,7 +3,7 @@ discordchatexporter DiscordChatExporter - 2.11 + 2.12 Tyrrrz Tyrrrz Copyright (C) Alexey Golub diff --git a/Deploy/Choco/tools/chocolateyinstall.ps1 b/Deploy/Choco/tools/chocolateyinstall.ps1 index 79bba1d..df6f445 100644 --- a/Deploy/Choco/tools/chocolateyinstall.ps1 +++ b/Deploy/Choco/tools/chocolateyinstall.ps1 @@ -7,7 +7,7 @@ $installDirPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" $packageArgs = @{ packageName = $packageName unzipLocation = $installDirPath - url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.11/DiscordChatExporter.zip' + url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12/DiscordChatExporter.zip' } Install-ChocolateyZipPackage @packageArgs @@ -19,6 +19,6 @@ New-Item (Join-Path $installDirPath "DiscordChatExporter.exe.gui") -ItemType Fil $packageArgs = @{ packageName = $packageName unzipLocation = $installDirPath - url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.11/DiscordChatExporter.CLI.zip' + url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12/DiscordChatExporter.CLI.zip' } Install-ChocolateyZipPackage @packageArgs \ No newline at end of file diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index f20c8d2..db538f3 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net46;netcoreapp2.1 - 2.11 + 2.12 Tyrrrz Copyright (c) Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index 44e20ec..8d73746 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.11")] -[assembly: AssemblyFileVersion("2.11")] \ No newline at end of file +[assembly: AssemblyVersion("2.12")] +[assembly: AssemblyFileVersion("2.12")] \ No newline at end of file