Quote:
Originally Posted by appoloin
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
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.