am_epub_parser 3.1.2
am_epub_parser: ^3.1.2 copied to clipboard
Epub Parser for Dart. Epub package fork. Suitable for use on the Server, the Web, or in Flutter
3.1.2 #
Fixed #
- Fix XML text extraction using
.innerTextinstead of.valuefor element nodes - Restores correct parsing of book titles, authors, descriptions, and navigation labels
3.1.1 #
Fixed #
- Resolve all flutter analyze issues
- Fix broken import in epub_book.dart
- Remove deprecated .text usage in favor of .value for XML parsing
- Remove dead code and unused imports
- Fix style issues (single quotes, curly braces, type annotations)
3.1.0 #
3.0.0 #
Changed #
metadatafile now saves asmimetypepull#1
Added #
- Epub v3 support dart-epub | pull#76
- Doc comment dart-epub | pull#80
3.0.0-dev.3 #
Changed #
- At
EpubReader.{openBook, readBook}first argument can be future (not before)
2.1.0 #
Fixed #
- Version 3 EPUB's can have a null Table of Contents
- Updated
pedanticanalysis options
2.0.7 #
2.0.6 #
Fixed #
- Fixed Issue #35: File cannot be opened if its path is url-encoded in the manifest
- Updated
examples/dart_exto have a README as well as use a locally stored file.
2.0.3 #
2.0.0 #
1.3.1 #
1.2.10 #
Fixed #
- Merged pull request #15 from ShadowJonathan/dev.
- Fixes issue with parsing schema by removing
opf:namespace
- Fixes issue with parsing schema by removing
1.2.4 #
Changed #
- EnumFromString no longer uses the
mirrorspackage to make this Flutter compatible by @MostafaAyesh