I am attempting to modify $:/core/macros/timeline
, so that when I look at the “Recent” tab, it includes all tiddlers, including system tiddlers. This is something I miss from TWC.
I have modified these two lines from this:
<$list filter="[!is[system]$subfilter$has[$dateField$]!sort[$dateField$]limit[$limit$]eachday[$dateField$]]">
<$list filter="[sameday:$dateField${!!$dateField$}!is[system]$subfilter$!sort[$dateField$]]">
to this:
<$list filter="[all[]$subfilter$has[$dateField$]!sort[$dateField$]limit[$limit$]eachday[$dateField$]]">
<$list filter="[sameday:$dateField${!!$dateField$}all[]$subfilter$!sort[$dateField$]]">
This worked but included some tiddlers I didn’t want.
Basically, I want system tiddlers, but I don’t want anything ignored by $:/config/SaverFilter
.
Also, how I would add a “History” tab. I noticed there was some talk about this and this is something I would like to have.
Edit: I figured out the “History” tab on my own. I don’t suppose there is a way to reorder the tabs?