Skip to content

Commit

Permalink
Updating version to 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
vers-one committed Apr 4, 2019
1 parent 89a4608 commit edc173a
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 15 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,15 +133,15 @@ foreach (EpubNavigationHeadMeta meta in navigation.Head)
## Download latest stable release
[Via NuGet package from nuget.org](https://www.nuget.org/packages/VersOne.Epub)

DLL file from GitHub: [for .NET Framework](https://github.com/vers-one/EpubReader/releases/download/v2.0.4/VersOne.Epub.Net45.zip) (26.9 KB) / [for .NET Core](https://github.com/vers-one/EpubReader/releases/download/v2.0.4/VersOne.Epub.NetCore.zip) (27.0 KB) / [for .NET Standard](https://github.com/vers-one/EpubReader/releases/download/v2.0.4/VersOne.Epub.NetStandard.zip) (27.0 KB)
DLL file from GitHub: [for .NET Framework](https://github.com/vers-one/EpubReader/releases/download/v2.0.5/VersOne.Epub.Net45.zip) (26.9 KB) / [for .NET Core](https://github.com/vers-one/EpubReader/releases/download/v2.0.5/VersOne.Epub.NetCore.zip) (27.0 KB) / [for .NET Standard](https://github.com/vers-one/EpubReader/releases/download/v2.0.5/VersOne.Epub.NetStandard.zip) (27.0 KB)

## Demo apps
[Download WPF demo app ](https://github.com/vers-one/EpubReader/releases/download/v2.0.4/WpfDemo.zip) (WpfDemo.zip, 409 KB)
[Download WPF demo app ](https://github.com/vers-one/EpubReader/releases/download/v2.0.5/WpfDemo.zip) (WpfDemo.zip, 409 KB)

This .NET Framework application demonstrates how to open EPUB books and extract their content using the library.

HTML renderer used in this demo app may be a little bit slow for some books.

[Download .NET Core console demo app](https://github.com/vers-one/EpubReader/releases/download/v2.0.4/NetCoreDemo.zip) (NetCoreDemo.zip, 17.6 MB)
[Download .NET Core console demo app](https://github.com/vers-one/EpubReader/releases/download/v2.0.5/NetCoreDemo.zip) (NetCoreDemo.zip, 17.6 MB)

This .NET Core console application demonstrates how to open EPUB books and retrieve their text content.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.0</TargetFramework>
Expand All @@ -7,11 +7,11 @@
<Company />
<Product />
<Description />
<Copyright>vers, 2015-2018</Copyright>
<Version>2.0.4</Version>
<Copyright>vers, 2015-2019</Copyright>
<Version>2.0.5</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.8.5" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VersOne.Epub\VersOne.Epub.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions Source/VersOne.Epub.WpfDemo/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[assembly: AssemblyTitle("VersOne.Epub.WpfDemo")]
[assembly: AssemblyDescription("WPF demo application for VersOne.Epub library")]
[assembly: AssemblyCopyright("Unlicense <http://unlicense.org>")]
[assembly: AssemblyVersion("2.0.4.0")]
[assembly: AssemblyFileVersion("2.0.4.0")]
[assembly: AssemblyVersion("2.0.5.0")]
[assembly: AssemblyFileVersion("2.0.5.0")]
[assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
[assembly: ComVisible(false)]
9 changes: 6 additions & 3 deletions Source/VersOne.Epub/VersOne.Epub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@
<Company />
<Product />
<Description />
<Copyright>vers, 2015-2018</Copyright>
<Version>2.0.4</Version>
<Copyright>vers, 2015-2019</Copyright>
<Version>2.0.5</Version>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<NoWarn>NU1605</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Source/VersOne.Epub/VersOne.Epub.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>VersOne.Epub</id>
<version>2.0.4</version>
<version>2.0.5</version>
<title>EPUB reader</title>
<description>.NET library for reading EPUB files</description>
<authors>vers</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://github.com/vers-one/EpubReader/blob/master/LICENSE</licenseUrl>
<license type="expression">Unlicense</license>
<projectUrl>https://github.com/vers-one/EpubReader</projectUrl>
<releaseNotes>.NET Standard 1.3 support.</releaseNotes>
<releaseNotes>Fix for reading play order attribute.</releaseNotes>
<copyright>Unlicense &lt;http://unlicense.org&gt;</copyright>
<tags>epub</tags>
<dependencies>
Expand Down

0 comments on commit edc173a

Please sign in to comment.