Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Software > Calibre > Library Management

Notices

Reply
 
Thread Tools Search this Thread
Old 10-05-2013, 04:36 PM   #16
BetterRed
null operator (he/him)
BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.BetterRed ought to be getting tired of karma fortunes by now.
 
Posts: 21,673
Karma: 29711016
Join Date: Mar 2012
Location: Sydney Australia
Device: none
what Saberdeyn said

BR
BetterRed is online now   Reply With Quote
Old 10-06-2013, 12:07 PM   #17
chaley
Grand Sorcerer
chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.chaley ought to be getting tired of karma fortunes by now.
 
Posts: 12,375
Karma: 8012652
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')),
				','),
		 '');
The template computes the number of days between the modification times of epub and some other format. If that value is greater than zero then the epub format is newer than the other format, and that format's name is added to the list.

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.
chaley is offline   Reply With Quote
Advert
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
how to handle this 'book'? wn1ytw Library Management 6 06-24-2011 10:21 AM
Best way to handle two or more PDF variants for single book? Mekk Calibre 9 12-08-2010 04:49 AM
How do you handle multiple stories in a single book? Sabardeyn Calibre 1 06-24-2009 02:42 PM
how to handle one book has multi-files ? zhanglong Calibre 5 03-27-2009 11:47 PM


All times are GMT -4. The time now is 06:31 AM.


MobileRead.com is a privately owned, operated and funded community.