I have a handy-dandy tiddler "rendering" engine. See
here and
here. Also the grouping stuff mentioned previously is beginning to bear fruit. Eg, this is working code to render a nice list of actions grouped by projects.
wikify(
store.getTaggedTiddlers("Action").
renderGrouped("Action",function(t){
return [t.getByIndex("Project")];
}),
place,null,tiddler);
And it's playing nicely (t.getByIndex() is FAST) with the "make it faster" code that's been hanging around for a while. See
here. (Warning, not for the faint of heart). The next step is to work in the "tag logic parser" (that one's a keeper) and pick through all the templates to see what's useful.
So I'm thinking this means 2.1 is done for and we're now talking about MonkeyGTD 3.0. Hang in there team. It's going to be good... :P