Update version

This commit is contained in:
Alexey Golub 2019-04-12 00:14:54 +03:00
parent 77366cc9b4
commit 9c043376f9
5 changed files with 11 additions and 6 deletions

View file

@ -1,3 +1,8 @@
### v2.12.1 (12-Apr-2019)
- [GUI] Fixed an issue where the app crashed when trying to export multiple channels.
- [HTML] Fixed an issue where some of the emojis were rendered via Twemoji while Discord renders them as plain text.
### v2.12 (11-Apr-2019) ### v2.12 (11-Apr-2019)
- Improved markdown parsing performance which speeds up the final stage of exporting by around 4.5 times. - Improved markdown parsing performance which speeds up the final stage of exporting by around 4.5 times.

View file

@ -3,7 +3,7 @@
<metadata> <metadata>
<id>discordchatexporter</id> <id>discordchatexporter</id>
<title>DiscordChatExporter</title> <title>DiscordChatExporter</title>
<version>2.12</version> <version>2.12.1</version>
<owners>Tyrrrz</owners> <owners>Tyrrrz</owners>
<authors>Tyrrrz</authors> <authors>Tyrrrz</authors>
<copyright>Copyright (C) Alexey Golub</copyright> <copyright>Copyright (C) Alexey Golub</copyright>

View file

@ -7,7 +7,7 @@ $installDirPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$packageArgs = @{ $packageArgs = @{
packageName = $packageName packageName = $packageName
unzipLocation = $installDirPath unzipLocation = $installDirPath
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12/DiscordChatExporter.zip' url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12.1/DiscordChatExporter.zip'
} }
Install-ChocolateyZipPackage @packageArgs Install-ChocolateyZipPackage @packageArgs
@ -19,6 +19,6 @@ New-Item (Join-Path $installDirPath "DiscordChatExporter.exe.gui") -ItemType Fil
$packageArgs = @{ $packageArgs = @{
packageName = $packageName packageName = $packageName
unzipLocation = $installDirPath unzipLocation = $installDirPath
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12/DiscordChatExporter.CLI.zip' url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12.1/DiscordChatExporter.CLI.zip'
} }
Install-ChocolateyZipPackage @packageArgs Install-ChocolateyZipPackage @packageArgs

View file

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks> <TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks>
<Version>2.12</Version> <Version>2.12.1</Version>
<Company>Tyrrrz</Company> <Company>Tyrrrz</Company>
<Copyright>Copyright (c) Alexey Golub</Copyright> <Copyright>Copyright (c) Alexey Golub</Copyright>
<ApplicationIcon>..\favicon.ico</ApplicationIcon> <ApplicationIcon>..\favicon.ico</ApplicationIcon>

View file

@ -3,5 +3,5 @@
[assembly: AssemblyTitle("DiscordChatExporter")] [assembly: AssemblyTitle("DiscordChatExporter")]
[assembly: AssemblyCompany("Tyrrrz")] [assembly: AssemblyCompany("Tyrrrz")]
[assembly: AssemblyCopyright("Copyright (c) Alexey Golub")] [assembly: AssemblyCopyright("Copyright (c) Alexey Golub")]
[assembly: AssemblyVersion("2.12")] [assembly: AssemblyVersion("2.12.1")]
[assembly: AssemblyFileVersion("2.12")] [assembly: AssemblyFileVersion("2.12.1")]