View Single Post
Old 10-28-2011, 05:04 AM   #8
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,460
Karma: 8025600
Join Date: Jan 2010
Location: Notts, England
Device: Kobo Libra 2
The "modified" date is the date the metadata was modified. Adding or modifying a format does not change the metadata, so it does not change the date.

You can get the date that the formats are modified using the formats_modtimes template function. This list is sorted so that the latest change is the first item in the list (accidentally today, guaranteed with the next release). As such, a composite custom column (column made from other columns) containing the following template will show you the date and time of the most recently modified format.
Code:
{:'re(list_item(formats_modtimes('iso'), 0, ','), '^.*?:', '')'}
This template
  • gets the list of formats and their modification times formatted using the 'iso' date format that includes both the date and the time. (formats_modtimes)
  • selects the first (the most recently modified) format (list_item)
  • Strips off the format name (re)
Sorting the library by this column should give you what you are looking for.
chaley is offline   Reply With Quote