* first pass at refresh-all-metadata by source * add version to startup logs * lock media source during refresh * fix local media source "name" in collection editor * optimize scanning so playouts only rebuild when necessary * support more poster file types * more scanning improvements; check for missing posters during scans
12 lines
313 B
C#
12 lines
313 B
C#
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Metadata;
|
|
using LanguageExt;
|
|
using MediatR;
|
|
|
|
namespace ErsatzTV.Application.MediaSources.Commands
|
|
{
|
|
public record ScanLocalMediaSource(int MediaSourceId, ScanningMode ScanningMode) :
|
|
IRequest<Either<BaseError, string>>,
|
|
IBackgroundServiceRequest;
|
|
}
|