diff --git a/Changelog.md b/Changelog.md index 5d056c95..76a86685 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,8 @@ +### v2.12.1 (12-Apr-2019) + +- [GUI] Fixed an issue where the app crashed when trying to export multiple channels. +- [HTML] Fixed an issue where some of the emojis were rendered via Twemoji while Discord renders them as plain text. + ### v2.12 (11-Apr-2019) - Improved markdown parsing performance which speeds up the final stage of exporting by around 4.5 times. diff --git a/Deploy/Choco/discordchatexporter.nuspec b/Deploy/Choco/discordchatexporter.nuspec index c87b38c6..ec9deb5f 100644 --- a/Deploy/Choco/discordchatexporter.nuspec +++ b/Deploy/Choco/discordchatexporter.nuspec @@ -3,7 +3,7 @@ discordchatexporter DiscordChatExporter - 2.12 + 2.12.1 Tyrrrz Tyrrrz Copyright (C) Alexey Golub diff --git a/Deploy/Choco/tools/chocolateyinstall.ps1 b/Deploy/Choco/tools/chocolateyinstall.ps1 index df6f4452..aa17f02b 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.12/DiscordChatExporter.zip' + url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12.1/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.12/DiscordChatExporter.CLI.zip' + url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12.1/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 9dd13ac2..27717188 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net46;netcoreapp2.1 - 2.12 + 2.12.1 Tyrrrz Copyright (c) Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index 8d737467..41c63b0a 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.12")] -[assembly: AssemblyFileVersion("2.12")] \ No newline at end of file +[assembly: AssemblyVersion("2.12.1")] +[assembly: AssemblyFileVersion("2.12.1")] \ No newline at end of file