Quote:
Originally Posted by PalingB
Is it possible to show the date of an (epub)file and
sort on that date?
|
Yes.
Create a composite custom column (column built from other columns). Set the sort/search type to date. Do not show in tag browser. Do not show checkmarks. Use the following template
Code:
program: list_re(formats_modtimes('yyyy-MM-dd hh:mm:ss'), ',', 'EPUB:(.)', '\1')
You can change the date format (the yyyy... stuff) to whatever you want.
The new column will either be empty or contain the mod date for the epub format for the book. Sorting and searching on the column will work.
Do note that adding this column will have an impact on performance. Sorting on the column will require looking up the mod time of every format in your library. Try it. If you don't like the resulting performance, then delete the column and go to plan B.