Releases: vers-one/EpubReader
Releases · vers-one/EpubReader
v3.0.2
v3.0.1
v3.0.0
EPUB 3 support improvements.
For instructions on how to migrate from 2.x please refer to Migrating from 2.x to 3.x wiki page.
v2.0.5
v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0
.NET Core 2.0 support
New features:
- Support for .NET Standard 2.0 (.NET Framework >= 4.6.1 and .NET Core >= 2.0);
- .NET Core demo app.
Breaking changes:
- Some namespaces were changed (and simplified);
Image CoverImage
was replaced bybyte[] CoverImage
(because .NET Core doesn't have a support for Image class functionality). Look at the example to see how to create anImage
instance out ofbyte[]
if you are using full .NET Framework.
v1.0.2
Async API
- Async API (
OpenBookAsync
/ReadBookAsync
) - Two modes of opening the file:
OpenBook
/OpenBookAsync
opens the book without reading its content. Holds the handle to the EPUB file.ReadBook
/ReadBookAsync
opens the book and reads all of its content into the memory. Does not hold the handle to the EPUB file.
- Namespaces were symplified
- Demo app now supports relative paths to images and CSS files