|
|
#16 |
|
null operator (he/him)
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 22,036
Karma: 30277960
Join Date: Mar 2012
Location: Sydney Australia
Device: none
|
what Saberdeyn saidBR |
|
|
|
|
|
#17 |
|
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 12,528
Karma: 8065948
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
|
You can create a custom column that tells you if the AZW format is newer than other formats. It is a column built from other columns. A template that does something like you want but for EPUB is:
Code:
program:
epub = select(formats_modtimes('iso'), 'EPUB');
prc = select(formats_modtimes('iso'), 'PRC');
mobi = select(formats_modtimes('iso'), 'MOBI');
test(epub,
list_union('',
strcat(
cmp(days_between(epub, prc), 0, '', '', 'PRC'),
',',
cmp(days_between(epub, mobi), 0, '', '', 'MOBI')),
','),
'');
You would need to change the formats to ones you are interested in. This template can be slow. I have no idea if its value to you would justify the performance penalty. |
|
|
|
| Advert | |
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to handle this 'book'? | wn1ytw | Library Management | 6 | 06-24-2011 11:21 AM |
| Best way to handle two or more PDF variants for single book? | Mekk | Calibre | 9 | 12-08-2010 05:49 AM |
| How do you handle multiple stories in a single book? | Sabardeyn | Calibre | 1 | 06-24-2009 03:42 PM |
| how to handle one book has multi-files ? | zhanglong | Calibre | 5 | 03-28-2009 12:47 AM |