diff --git a/Changelog.md b/Changelog.md index 17dbc60..9fb4b95 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,15 @@ +### v2.5 (28-Jun-2018) + +- Added support for embeds and webhooks (HTML only). +- Implemented progress reporting when downloading messages. +- Added support for reactions (HTML only). +- Selected date range is now shown in the export (HTML and PlainText). +- Added placeholders for guild icons to display while the icons are loading. +- Added support for jumbo emojis (custom emojis only). +- Added basic retry policy for 429 error responses. +- Added validation for from/to dates in the UI which prevents choosing invalid date ranges. +- Added an error message when trying to export a deleted channel. + ### v2.4.1 (15-Apr-2018) - Added CSV export format. diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index 3e6dde4..cf810a9 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net461 - 2.4.1 + 2.5 Tyrrrz Copyright (c) 2017-2018 Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj index 23e5728..c4be590 100644 --- a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj +++ b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj @@ -2,7 +2,7 @@ net461 - 2.4.1 + 2.5 diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index aaddc82..3b1db0c 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) 2017-2018 Alexey Golub")] -[assembly: AssemblyVersion("2.4.1")] -[assembly: AssemblyFileVersion("2.4.1")] \ No newline at end of file +[assembly: AssemblyVersion("2.5")] +[assembly: AssemblyFileVersion("2.5")] \ No newline at end of file