diff options
author | benadha <benawiadha@gmail.com> | 2021-02-01 22:23:19 +0700 |
---|---|---|
committer | benadha <benawiadha@gmail.com> | 2021-02-01 22:23:19 +0700 |
commit | 8efaa9cf07a28f84d14478ab1415c2699f5c3af4 (patch) | |
tree | 351d42490274ee0673590a75834f596259252050 /epy.py | |
parent | b994d74912f3f236497ed6f59b41f2423ec091d8 (diff) | |
download | epy-8efaa9cf07a28f84d14478ab1415c2699f5c3af4.tar.gz |
- Unused var: LINEPRSRV
- Bug: "" -> r""
- Bug: pgup animation issue
- Feature: TTS Speed (tempo) config
- Update README
Diffstat (limited to 'epy.py')
-rwxr-xr-x | epy.py | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -14,7 +14,7 @@ Options: """ -__version__ = "2021.2.1" +__version__ = "2021.2.2" __license__ = "GPL-3.0" __author__ = "Benawi Adha" __email__ = "benawiadha@gmail.com" @@ -59,6 +59,7 @@ CFG = { "DictionaryClient": "auto", "ShowProgressIndicator": True, "PageScrollAnimation": True, + "TTSSpeed": 1, "DarkColorFG": 252, "DarkColorBG": 235, "LightColorFG": 238, @@ -114,7 +115,6 @@ WINKEYS = set() CFGFILE = "" STATEFILE = "" COLORSUPPORT = False -LINEPRSRV = 0 # 2 SEARCHPATTERN = None VWR = None DICT = None @@ -1549,7 +1549,7 @@ def speaking(text): stderr=subprocess.DEVNULL ) SPEAKER = subprocess.Popen( - [ "play", path], + [ "play", path, "tempo", str(CFG["TTSSpeed"])], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL ) @@ -1670,7 +1670,7 @@ def reader(ebook, index, width, y, pctg, sect): if re.match(r"^\s*$", i) is not None: tospeak += "\n. \n" else: - tospeak += re.sub("\[IMG:[0-9]+\]", "Image", i) + " " + tospeak += re.sub(r"\[IMG:[0-9]+\]", "Image", i) + " " k = speaking(tospeak) if totlines-y <= rows and index == len(contents)-1: SPEAKING = False @@ -1681,6 +1681,7 @@ def reader(ebook, index, width, y, pctg, sect): if y >= count: y -= count elif y == 0 and index != 0: + ANIMATE = "prev" return -1, width, -rows, None, "" else: y = 0 @@ -1689,24 +1690,28 @@ def reader(ebook, index, width, y, pctg, sect): ANIMATE = "prev" return -1, width, -rows, None, "" else: - ANIMATE = "prev" - y = pgup(y, rows, LINEPRSRV, count) + if y >= rows*count: + ANIMATE = "prev" + y -= rows*count + else: + y = 0 elif k in K["ScrollDown"]: if count > 1: svline = y + rows - 1 if y + count <= totlines - rows: y += count elif y == totlines - rows and index != len(contents)-1: + ANIMATE = "next" return 1, width, 0, None, "" else: y = totlines - rows elif k in K["PageDown"]: - if totlines - y - LINEPRSRV > rows: + if totlines - y > rows: ANIMATE = "next" if y+rows > pad.chunks[pad.find_chunkidx(y)]: y = pad.chunks[pad.find_chunkidx(y)] + 1 else: - y += rows - LINEPRSRV + y += rows # SCREEN.clear() # SCREEN.refresh() elif index != len(contents)-1: |