Tab Order Tiddler Macro Question

I had this macro I used to use in Tiddlywiki and it used to work great, but then the version of Tiddlywiki changed at some point and now it puts all of them in reverse order. It used to put them in order by the date they were edited. Is there a field I can use to put them in the correct order again?

<$button>
<$set name="whichTiddlerTag" value=<<currentTiddler>> >
<$list filter="[tag<whichTiddlerTag>count[]]">
   <$list filter="[range<currentTiddler>subtract[1]]">
      <$set name="whichTiddler" filter="[tag<whichTiddlerTag>]" select=<<currentTiddler>> >
              <$action-setfield $tiddler=<<whichTiddler>> $field="caption" $value=<<currentTiddler>> />
              <$action-setfield $tiddler=<<whichTiddler>> $field="tooltip" $value=<<whichTiddler>> />
              <$action-setfield $tiddler=<<whichTiddler>> $field="order" $value=<<currentTiddler>> />
    </$set>
</$list>
</$list>
</$set>
Set Tab Order, Tooltips and Captions
</$button>


<<tabs "[tag{!!title}]">>
<<tabs "[tag{!!draft.of}]">>

have you tried +[sort[modified]]