aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md9
-rwxr-xr-xepy.py2
-rw-r--r--pyproject.toml2
-rw-r--r--setup.py2
4 files changed, 11 insertions, 4 deletions
diff --git a/README.md b/README.md
index c92a867..78fd8d1 100644
--- a/README.md
+++ b/README.md
@@ -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)
diff --git a/epy.py b/epy.py
index d0a377c..088c32c 100755
--- a/epy.py
+++ b/epy.py
@@ -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"
diff --git a/setup.py b/setup.py
index c7060e9..5158b34 100644
--- a/setup.py
+++ b/setup.py
@@ -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",