From b1de9c4ecadd0e8e5a88bef9a98501407098dd39 Mon Sep 17 00:00:00 2001 From: Alexey Golub Date: Sun, 3 Mar 2019 21:48:03 +0200 Subject: [PATCH] Update version --- Changelog.md | 11 +++++++++++ .../DiscordChatExporter.Cli.csproj | 2 +- DiscordChatExporter.Gui/Properties/AssemblyInfo.cs | 4 ++-- UpdateVersion.ps1 | 1 - 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Changelog.md b/Changelog.md index 1b520bb..0687f30 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,14 @@ +### v2.10 (03-Mar-2019) + +- [HTML] Reworked the entire markdown parsing engine which fixes numerous rendering inconsistencies (over 15 issues fixed). +- [HTML] Added support for animated emojis. +- [HTML] Standard emojis are now rendered using Twemoji, the same image set that Discord uses. +- [HTML] Fixed an issue where video attachments would render incorrectly. +- [HTML] Minor fixes in styling. +- [GUI] Aggregated export progress is now shown in the taskbar. +- [GUI] Checkmarks are now displayed next to channels that are selected. +- [CLI] Added progress reporting when exporting chat logs. + ### v2.9.1 (10-Feb-2019) - Fixed an issue where some of the last messages in a channel would sometimes not get exported. diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index a4162cb..c36dc32 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net461 - 2.9.1 + 2.10 Tyrrrz Copyright (c) Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index 26431c8..2097624 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.9.1")] -[assembly: AssemblyFileVersion("2.9.1")] \ No newline at end of file +[assembly: AssemblyVersion("2.10")] +[assembly: AssemblyFileVersion("2.10")] \ No newline at end of file diff --git a/UpdateVersion.ps1 b/UpdateVersion.ps1 index 9e86ffb..7f75544 100644 --- a/UpdateVersion.ps1 +++ b/UpdateVersion.ps1 @@ -8,6 +8,5 @@ function Replace-TextInFile { [IO.File]::WriteAllText($filePath, $content, [Text.Encoding]::UTF8) } -Replace-TextInFile "$PSScriptRoot\DiscordChatExporter.Core\DiscordChatExporter.Core.csproj" '(?<=)(.*?)(?=)' $newVersion Replace-TextInFile "$PSScriptRoot\DiscordChatExporter.Cli\DiscordChatExporter.Cli.csproj" '(?<=)(.*?)(?=)' $newVersion Replace-TextInFile "$PSScriptRoot\DiscordChatExporter.Gui\Properties\AssemblyInfo.cs" '(?<=Assembly.*?Version\(")(.*?)(?="\)\])' $newVersion \ No newline at end of file