* start moving local scans to separate process * send progress updates to main process * move scanners and tests * simplify dependencies; sync search index * commit search index more often when scanning * support forced scan and cancellation * use scanner process for plex libraries * update changelog * update dockerfiles * fix search index for local folder scanning * rework plex scanners * rework scanner handlers * emby works again * sync jellyfin * cleanup * update build * update changelog * remove scanner dependency in pr and artifacts workflows * fix mac sed syntax * fix pr build
11 lines
233 B
C#
11 lines
233 B
C#
using MediatR;
|
|
|
|
namespace ErsatzTV.Core.MediaSources;
|
|
|
|
public record ScannerProgressUpdate(
|
|
int LibraryId,
|
|
string LibraryName,
|
|
decimal? PercentComplete,
|
|
int[] ItemsToReindex,
|
|
int[] ItemsToRemove) : INotification;
|