diff --git a/Changelog.md b/Changelog.md index bd52a92..ca6bafe 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,10 @@ +### v2.7 (14-Sep-2018) + +- Updated instructions on how to obtain the user token. +- Expanded CLI with new commands: `channels` (get a list of channels in a guild), `dms` (get a list of DM channels), `guilds` (get a list of guilds), on top of `export` (export chatlog). +- Improved help text and error messages in CLI. +- In CLI, if the provided output file path is a directory, a file name will be generated and appended to it automatically. + ### v2.6 (25-Jul-2018) - Added support for bot tokens as an alternative to user tokens. For GUI, use the button in the top-left to switch between user and bot token. For CLI, pass the `--bot` switch to indicate that the given token is a bot token. diff --git a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj index 7a9ee6e..73a4f9c 100644 --- a/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj +++ b/DiscordChatExporter.Cli/DiscordChatExporter.Cli.csproj @@ -3,7 +3,7 @@ Exe net461 - 2.6 + 2.7 Tyrrrz Copyright (c) 2017-2018 Alexey Golub ..\favicon.ico diff --git a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj index 202bcc7..a0a3645 100644 --- a/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj +++ b/DiscordChatExporter.Core/DiscordChatExporter.Core.csproj @@ -2,7 +2,7 @@ net461 - 2.6 + 2.7 diff --git a/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs b/DiscordChatExporter.Gui/Properties/AssemblyInfo.cs index 454c25c..76cee2a 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.6")] -[assembly: AssemblyFileVersion("2.6")] \ No newline at end of file +[assembly: AssemblyVersion("2.7")] +[assembly: AssemblyFileVersion("2.7")] \ No newline at end of file