v3.3-alpha1
Pre-release
Pre-release
github-actions
released this
19 Sep 01:08
·
44 commits
to master
since this release
Breaking changes:
- Six schema classes (
Epub2NcxHead
,Epub2NcxNavigationMap
,Epub2NcxPageList
,EpubGuide
,EpubManifest
,EpubSpine
) are no longer derived fromList<T>
and require the following syntax:epubSpine.Items[n]
instead ofepubSpine[n]
to access their items (#60).
New features:
- Support for remote manifest items, i.e. files referenced by absolute URLs like
http://example.com/book/123/chapter1.html
as opposed to local files likeContent/chapter1.html
which are packaged within the EPUB file (#62). - Explicit .NET Standard 2.0 support which reduces the number of system Nuget packages being installed if the consumer project targets .NET Framework >= 4.6.1 or .NET/.NET Core >= 2.0.
Bug fixes: