wustho / epy

CLI Ebook (epub2, epub3, fb2, mobi) Reader
GNU General Public License v3.0
962 stars 52 forks source link

Need a better way to display main text than using curses.pad #10

Closed wustho closed 3 years ago

wustho commented 3 years ago

Since curses.newpad() only limited to 32767 lines height, 32768 or more will raise an exception. So currently epy cannot open thick books with single HTML page containing more than 32767 lines.

Unless those books are well structured where entire text is split into multiple smaller HTML pages.

wustho commented 3 years ago

https://github.com/wustho/epy/commit/f291ebeeee65ef196a12219ae1a0a0ec64b5e4d1

Better custom pad as Board() but not quite there yet

wustho commented 3 years ago

Fixed with Board()