Is this possible? The column would be automatically updated when adding a new book to Calibre, or when converting it in the Calibre book editor from EPUB 2 to EPUB 3.
I have recently discovered that Calibre stores series numbers as integers in EPUB 3 e.g.,
Code:
<opf:meta refines="#id-2" property="group-position">4</opf:meta>
but uses floats for EPUB 2, e.g.,
Code:
<meta name="calibre:series_index" content="4.0"/>
I prefer the integer format when it really is an integer (and not e.g.,
4.1). Thus I am converting my library from EPUB 2 to 3, and it would be handy to easily tell which books are already EPUB 3.
Thanks