mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-31 23:08:23 -04:00
Update version
This commit is contained in:
parent
795dfbb213
commit
7951703cf2
5 changed files with 13 additions and 6 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
### v2.12 (11-Apr-2019)
|
||||||
|
|
||||||
|
- Improved markdown parsing performance which speeds up the final stage of exporting by around 4.5 times.
|
||||||
|
- Improved performance when exporting as PlainText or CSV.
|
||||||
|
- [GUI] Fixed an issue where the app would freeze up and report as "not responding" during the final stage of exporting.
|
||||||
|
- [CLI] Fixed an issue where it would say "Completed" after exporting a chat log, even if the process failed.
|
||||||
|
|
||||||
### v2.11 (14-Mar-2019)
|
### v2.11 (14-Mar-2019)
|
||||||
|
|
||||||
- [HTML] Added syntax highlighting for multiline code blocks via Highlight.js.
|
- [HTML] Added syntax highlighting for multiline code blocks via Highlight.js.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<metadata>
|
<metadata>
|
||||||
<id>discordchatexporter</id>
|
<id>discordchatexporter</id>
|
||||||
<title>DiscordChatExporter</title>
|
<title>DiscordChatExporter</title>
|
||||||
<version>2.11</version>
|
<version>2.12</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>
|
||||||
|
|
|
@ -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.11/DiscordChatExporter.zip'
|
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12/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.11/DiscordChatExporter.CLI.zip'
|
url = 'https://github.com/Tyrrrz/DiscordChatExporter/releases/download/2.12/DiscordChatExporter.CLI.zip'
|
||||||
}
|
}
|
||||||
Install-ChocolateyZipPackage @packageArgs
|
Install-ChocolateyZipPackage @packageArgs
|
|
@ -3,7 +3,7 @@
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks>
|
<TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks>
|
||||||
<Version>2.11</Version>
|
<Version>2.12</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>
|
||||||
|
|
|
@ -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.11")]
|
[assembly: AssemblyVersion("2.12")]
|
||||||
[assembly: AssemblyFileVersion("2.11")]
|
[assembly: AssemblyFileVersion("2.12")]
|
Loading…
Add table
Add a link
Reference in a new issue