View Single Post
Old 08-04-2015, 01:27 PM   #1326
arasyi
Zealot
arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.arasyi ought to be getting tired of karma fortunes by now.
 
Posts: 105
Karma: 5885446
Join Date: Feb 2014
Device: Kobo Glo
Quote:
Originally Posted by appoloin View Post
I got kepud's from the plugin by unticking epub in the format list
If you untick epub in the format list, calibre will use Kepub output plugin instead of the extended driver.

Quote:
Originally Posted by jgoguen View Post
Yea, if you could that would be good. I don't think it should matter as long as the option for extended features is selected and the kepub format is enabled...
You may need to check the filename_callback function in device/driver.py
Instead of this
Code:
if path.endswith(KEPUB_EXT):
    path += EPUB_EXT
You can do it like this
Code:
if not path.endswith(KEPUB_EXT + EPUB_EXT):
    path = os.path.splitext(path)[0] + KEPUB_EXT + EPUB_EXT
That should fix the filename problem.

I still however, got some problem with series info and cover images.
None of my book retains the series info and some have no cover images when transferred to my Glo.
Edit:
It turns out, a second connect-disconnect is needed to update the cover and metadata.

Last edited by arasyi; 08-04-2015 at 11:17 PM.
arasyi is offline   Reply With Quote