mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Update version
This commit is contained in:
parent
3f5f62585c
commit
0a48da4c56
12
Changelog.md
12
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)
|
### v2.4.1 (15-Apr-2018)
|
||||||
|
|
||||||
- Added CSV export format.
|
- Added CSV export format.
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFramework>net461</TargetFramework>
|
<TargetFramework>net461</TargetFramework>
|
||||||
<Version>2.4.1</Version>
|
<Version>2.5</Version>
|
||||||
<Company>Tyrrrz</Company>
|
<Company>Tyrrrz</Company>
|
||||||
<Copyright>Copyright (c) 2017-2018 Alexey Golub</Copyright>
|
<Copyright>Copyright (c) 2017-2018 Alexey Golub</Copyright>
|
||||||
<ApplicationIcon>..\favicon.ico</ApplicationIcon>
|
<ApplicationIcon>..\favicon.ico</ApplicationIcon>
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net461</TargetFramework>
|
<TargetFramework>net461</TargetFramework>
|
||||||
<Version>2.4.1</Version>
|
<Version>2.5</Version>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
|
||||||
|
|
@ -3,5 +3,5 @@
|
||||||
[assembly: AssemblyTitle("DiscordChatExporter")]
|
[assembly: AssemblyTitle("DiscordChatExporter")]
|
||||||
[assembly: AssemblyCompany("Tyrrrz")]
|
[assembly: AssemblyCompany("Tyrrrz")]
|
||||||
[assembly: AssemblyCopyright("Copyright (c) 2017-2018 Alexey Golub")]
|
[assembly: AssemblyCopyright("Copyright (c) 2017-2018 Alexey Golub")]
|
||||||
[assembly: AssemblyVersion("2.4.1")]
|
[assembly: AssemblyVersion("2.5")]
|
||||||
[assembly: AssemblyFileVersion("2.4.1")]
|
[assembly: AssemblyFileVersion("2.5")]
|
||||||
Loading…
Reference in a new issue