View Single Post
Old 07-10-2023, 06:12 AM   #179
JSWolf
Resident Curmudgeon
JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.JSWolf ought to be getting tired of karma fortunes by now.
 
JSWolf's Avatar
 
Posts: 81,055
Karma: 150250983
Join Date: Nov 2006
Location: Roslindale, Massachusetts
Device: Kobo Libra 2, Kobo Aura H2O, PRS-650, PRS-T1, nook STR, PW3
Quote:
Originally Posted by BeckyEbook View Post
Easy fix for covers.

In the worker.py file, change 4 to 5 and 5 to 6.

Find:
Code:
        cover_width_upsized = int(cover_node_split[4]) * 4
        cover_height_upsized = int(cover_node_split[5]) * 4
        cover_node_split[4] = str(nwidth)
        cover_node_split[5] = str(nheight)
Change to:
Code:
        cover_width_upsized = int(cover_node_split[5]) * 4
        cover_height_upsized = int(cover_node_split[6]) * 4
        cover_node_split[5] = str(nwidth)
        cover_node_split[6] = str(nheight)
I have made the changes and posted a new version with a updated version number.
Attached Files
File Type: zip KoboBooks-193.zip (9.5 KB, 241 views)
JSWolf is offline   Reply With Quote