* spike new scanner * add existing items to new scanner * add collection refresh actions * add tv show metadata and posters * update metadata and posters when nfo/poster files are updated * add "remove" action, test for all supported file extensions * update statistics when primary video file is updated * reflect that collections are "sourced" from nfo * implement most scanning actions * cleanup * fix startup * cross-platform scanner tests
15 lines
265 B
C#
15 lines
265 B
C#
namespace ErsatzTV.Core.Metadata
|
|
{
|
|
public enum ScanningAction
|
|
{
|
|
None = 0,
|
|
Add = 1,
|
|
Remove = 2,
|
|
Statistics = 3,
|
|
SidecarMetadata = 4,
|
|
FallbackMetadata = 5,
|
|
Collections = 6,
|
|
Poster = 7
|
|
}
|
|
}
|