@Mr. Goodbar: I think you should be fine to replace the newLister-x.x.x directory on your memory card with the new version hansel attached to his first post. A re-installation of the newLister should not be necessary.
To all contentLister hackers out there: In hsStoreItem() in history.c there is a snippet that assures that png files are not added to the history:
Code:
if ( item->fit == mdsFitFile
&& strcasecmp(item->szFileExt, "png") == 0 )
{
// Notes template: do not add to recent documents
CL_WARNPRINTF("Notes template: file [%s] not added to recent documents", item->szFilename);
}
else
{
hsAddRecent(item);
}
Maybe we can change it to also cover .sh files in the future?