From da570ce5b4f6e939be07faedceb29e4a97460343 Mon Sep 17 00:00:00 2001 From: Sofia Toro Date: Mon, 16 Sep 2024 19:45:46 -0400 Subject: [PATCH] update pubspec and readme --- README.md | 3 ++- pubspec.yaml | 8 +++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 365084d..7f04844 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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`
diff --git a/pubspec.yaml b/pubspec.yaml index 3e0e4b4..894e1e7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ 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 @@ -8,6 +8,12 @@ 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