diff --git a/Changelog.md b/Changelog.md index 40fd28e..b6a516f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,18 @@ +### v2.9 (09-Feb-2019) + +- Added categories to channel list in GUI. Channels are now also grouped by category. +- Added ability to export multiple channels at once in GUI by selecting them with shift or ctrl keys. +- Added CLI command to export all available channels in a guild (`exportguild`). +- Added CLI command to export all direct message channels (`exportdm`). +- Added retry policy for 503 status code errors to prevent random crashes. +- Changed how channels are exported in GUI. Now you need to select them first and then click a button to export. You can also double click a single channel to export it as before. +- Improved default file name generation by adding date ranges and channel ID to the file name. +- Improved naming of files exported with partitioning. +- Improved usage instructions. +- Improved GUI layout and styling. +- Fixed an issue where dialogs would sometimes appear over other windows. +- Fixed an issue where launching DiscordChatExporter from Windows Start Menu would make it crash. + ### v2.8 (03-Nov-2018) - Added support for partitioning which lets you split the output into multiple files by setting the partition message limit (`-p` parameter for CLI). diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index ad39ac0..5d89216 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net461 - 2.8 + 2.9 Tyrrrz Copyright (c) 2017-2018 Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj index 65a0436..1bebffa 100644 --- a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj +++ b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj @@ -2,7 +2,7 @@ net461 - 2.8 + 2.9 diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index e430e21..19ea86f 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.8")] -[assembly: AssemblyFileVersion("2.8")] \ No newline at end of file +[assembly: AssemblyVersion("2.9")] +[assembly: AssemblyFileVersion("2.9")] \ No newline at end of file