Quote:
Originally Posted by theducks
It is at the bottom of the 'Check ePub Structure' menu.
I am not really sure what it uses for the detection template.
If you have a SQLlite browser look at the conversion_options table: Data column (blob will be set)
|
I know about the conversion_options table. That's why I tried conversion_options:true in Calibre search.
The "Check calibre conversion" in Quality Check PI only checks if an epub was converted with Calibre. It doesn't actually tell you if there are saved conversion options for a specific book. It does this by opening the OPF file inside the EPUB and checking for:
Code:
name="calibre:timestamp:
or
<dc:contributor opf:role="bkp">calibre
I just remembered that the
MultiColumnSearch plugin has a tab for Raw SQL Queries.
This worked for checking which books have saved conversion settings:
Code:
SELECT id FROM books WHERE id IN (SELECT book FROM conversion_options)