New: Readarr 0.1

This commit is contained in:
ta264
2020-05-06 21:14:11 +01:00
parent 476f2d6047
commit 08496c82af
911 changed files with 14837 additions and 24442 deletions
@@ -5,14 +5,14 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
public class RenameArtistCommand : Command
{
public List<int> ArtistIds { get; set; }
public List<int> AuthorIds { get; set; }
public override bool SendUpdatesToClient => true;
public override bool RequiresDiskAccess => true;
public RenameArtistCommand()
{
ArtistIds = new List<int>();
AuthorIds = new List<int>();
}
}
}
@@ -5,7 +5,7 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
public class RenameFilesCommand : Command
{
public int ArtistId { get; set; }
public int AuthorId { get; set; }
public List<int> Files { get; set; }
public override bool SendUpdatesToClient => true;
@@ -15,9 +15,9 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
}
public RenameFilesCommand(int artistId, List<int> files)
public RenameFilesCommand(int authorId, List<int> files)
{
ArtistId = artistId;
AuthorId = authorId;
Files = files;
}
}
@@ -12,18 +12,18 @@ namespace NzbDrone.Core.MediaFiles.Commands
AddNewArtists = true;
}
public RescanFoldersCommand(List<string> folders, FilterFilesType filter, bool addNewArtists, List<int> artistIds)
public RescanFoldersCommand(List<string> folders, FilterFilesType filter, bool addNewArtists, List<int> authorIds)
{
Folders = folders;
Filter = filter;
AddNewArtists = addNewArtists;
ArtistIds = artistIds;
AuthorIds = authorIds;
}
public List<string> Folders { get; set; }
public FilterFilesType Filter { get; set; }
public bool AddNewArtists { get; set; }
public List<int> ArtistIds { get; set; }
public List<int> AuthorIds { get; set; }
public override bool SendUpdatesToClient => true;
public override bool RequiresDiskAccess => true;
@@ -5,14 +5,14 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
public class RetagArtistCommand : Command
{
public List<int> ArtistIds { get; set; }
public List<int> AuthorIds { get; set; }
public override bool SendUpdatesToClient => true;
public override bool RequiresDiskAccess => true;
public RetagArtistCommand()
{
ArtistIds = new List<int>();
AuthorIds = new List<int>();
}
}
}
@@ -5,7 +5,7 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
public class RetagFilesCommand : Command
{
public int ArtistId { get; set; }
public int AuthorId { get; set; }
public List<int> Files { get; set; }
public override bool SendUpdatesToClient => true;
@@ -15,9 +15,9 @@ namespace NzbDrone.Core.MediaFiles.Commands
{
}
public RetagFilesCommand(int artistId, List<int> files)
public RetagFilesCommand(int authorId, List<int> files)
{
ArtistId = artistId;
AuthorId = authorId;
Files = files;
}
}