Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.1.4 #3

Merged
merged 1 commit into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ Flutter Package to parse EPUB files (EBooks), with support for Media Overlays!

### Work in progress

- [ ] Direct getters for relevant attributes (such as title, authors, etc.)
- [ ] Read navigation definition
- [ ] Support for bindings

Expand All @@ -59,6 +58,8 @@ final epub = Epub.fromBytes(epubFile.buffer.asUint8List());

And then, access its properties:

- **Main info:** `epub.title`, `epub.authors`, `epub.cover`.

- **Retrieving Metadata:** `epub.metadata`

<details>
Expand Down
8 changes: 7 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
name: epub_decoder
description: Flutter Package to parse EPUB files (EBooks), with support for Media Overlays!
version: 0.1.3
version: 0.1.4
homepage:
repository: https://github.com/SofieTorch/epub_decoder

environment:
sdk: ">=3.4.3 <4.0.0"
flutter: ">=1.17.0"

topics:
- epub
- ebook
- reader
- mediaoverlays

dependencies:
archive: ^3.6.1
equatable: ^2.0.5
Expand Down
Loading