With the newest release, when i use a custom entry point to browse my media, it is doing a full library refresh. This can be quite annoying when its refeshing 200 movies while yor trying to view them. When using the default menu entry, this does not occur.
Hmm, I'm not quite sure about this, I rewrote it so it does not.
// entry points
if (!(this.RootFolderModel == null)) {
//refresh the root folder children in case we changed sort order
foreach (var child in this.RootFolderModel.Children) {
child.RefreshMetadata();
}
}
if (IsInEntryPoint) {
FullRefresh(this.RootFolderModel.Folder);
} else {
FullRefresh(this.RootFolder);
}
OK I put in a fix that disables the refresh code all together for entry points.
This will make navigating to entry points really fast.
sorry, root always gets a refresh. Any direct navigation into non-root will not.
BUT the folder validation and standard refresh will still run. so new media will be detected. Its just new media deep in the directory structure will not.
So say you have a direct entry into TV. If you rip a new TV series it will be detected. However if you rip a new season you will have to navigate to it for MB to become aware of it.