diff --git a/Changelog.md b/Changelog.md index 79d5f6176..fa7aa190c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,12 @@ +### v2.4 (08-Apr-2018) + +- Added channel topic to output. +- Added a command line interface alternative to the current graphical user interface. +- Implemented application auto-update (can be disabled in settings). +- Improved some GUI elements and replaced some dialogs with notifications. +- Fixed a lot of issues with the markdown processor. +- Fixed DM group chats that have a custom name being shown as blank in the list. + ### v2.3 (27-Oct-2017) - Improved message date filtering, it's now marginally faster. diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index 6d9492adc..31679cce6 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net461 - 2.3 + 2.4 Tyrrrz Copyright (c) 2017-2018 Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj index cf8910437..ad97b7376 100644 --- a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj +++ b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj @@ -2,6 +2,7 @@ net461 + 2.4 diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index 8398543fa..21cf35e3b 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.3")] -[assembly: AssemblyFileVersion("2.3")] \ No newline at end of file +[assembly: AssemblyVersion("2.4")] +[assembly: AssemblyFileVersion("2.4")] \ No newline at end of file