diff options
author | benadha <benawiadha@gmail.com> | 2022-01-23 18:24:20 +0700 |
---|---|---|
committer | benadha <benawiadha@gmail.com> | 2022-01-23 18:24:20 +0700 |
commit | 23320c6e396d6504c9b5ab2fca0f1d114a41d407 (patch) | |
tree | ea2c268a9c334296979fee5ea4c88bd94f6af007 | |
parent | 072b862adafce69e65ff1a9c62fa3956b68a38de (diff) | |
download | epy-23320c6e396d6504c9b5ab2fca0f1d114a41d407.tar.gz |
Update version and README.md
-rw-r--r-- | README.md | 9 | ||||
-rwxr-xr-x | epy.py | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 | ||||
-rw-r--r-- | setup.py | 2 |
4 files changed, 11 insertions, 4 deletions
@@ -67,7 +67,7 @@ Although, there are not many stuffs to configure. ## URL Support -You can read online books like: short stories, fan fiction, etc. using `epy`with url. +You can read online books like: short stories, fan fiction, etc. using `epy` with an url as cli argument. Pretty useful when you want to read with less distraction. `epy` will also remember your reading progress online. @@ -78,6 +78,10 @@ directly with: $ epy https://www.gutenberg.org/files/2701/2701-h/2701-h.htm ``` +But be noted that `epy` will never be web broser, it's simply cli program to read +your favorite fiction stories in the comfort of terminal. +So please do not expect for web browser features to be implemented to `epy`. + ## Using Mouse Although mouse support is useful when running `epy` on Termux Android, it’s disabled by default @@ -118,6 +122,9 @@ so line scrolling navigation will act as scrolling page and textwidth is not adj - `v2022.1.15`: Early implementation of URL support, table of contents isn't available for now. +- `v2022.1.23`: Library implementation: ability to switch ebook from reading history + from inside epy (default key: `R`). + ## Tip Jar [https://paypal.me/wustho](https://paypal.me/wustho) @@ -23,7 +23,7 @@ examples: """ -__version__ = "2022.1.16" +__version__ = "2022.1.23" __license__ = "GPL-3.0" __author__ = "Benawi Adha" __email__ = "benawiadha@gmail.com" diff --git a/pyproject.toml b/pyproject.toml index 0fa9966..d641210 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "epy-reader" -version = "2022.1.16" +version = "2022.1.23" description = "CLI Ebook Reader" authors = ["Benawi Adha <benawiadha@gmail.com>"] license = "GPL-3.0" @@ -6,7 +6,7 @@ with open("README.md", "r") as fh: setup( name="epy-reader", - version="2022.1.16", + version="2022.1.23", description="Terminal/CLI Ebook (epub, fb2, mobi, azw3) Reader", long_description=long_description, long_description_content_type="text/markdown", |