Currently we have 'today only' and 'all days for the past week'. It would be nice if you add 'today + yesterday' in between
1 Like
In the meantime, you could use an Eval Column:
XML
<?xml version="1.0"?>
<evalcolumn align="1" attrrefresh="yes" autorefresh="yes" category="date" foldertype="all" header="Modified" keyword="modifiedfriendly" maxstars="5" namerefresh="no" reversesort="no" title="Modified (friendly+)" type="7">yesterday = Now() - 60*60*24;
if (DatePart(modified, "date") == DatePart(Now(), "date")) return "Today " + DatePart(modified, "time");
if (DatePart(modified, "date") == DatePart(yesterday, "date")) return "Yesterday " + DatePart(modified, "time");
return modified;</evalcolumn>
4 Likes
It's a global setting.
It's there, it's just incorrectly showing as "Modified" instead of "Modified (friendly+)". Fixed in the next beta.