I have noticed one issue, I haven't quite figured out why it's an issue, but I have a way around it.
If you notice that once it's installed that every post appears to be 'new', this bit will fix the problem. I'll have it included in the next update, as well as moving a bit more of the legacy code to the updated methods.
-K
In includes/functions_threadedmode.php
Find:
Code:
$post['statusicon'] = iif($post['dateline'] > $threadinfo['threadview'], 1, 0);
Replace With:
Code:
//THREADS
$post['statusicon'] = iif($post['dateline'] > $vbulletin->userinfo['lastvisit'], 1, 0);
//THREADS