mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
New: Added iTunes new albums, AppleMusic Top and New Lists
This commit is contained in:
parent
18b29f8208
commit
598e3eb23b
2 changed files with 4 additions and 1 deletions
|
@ -24,6 +24,9 @@ namespace NzbDrone.Core.ImportLists.LidarrLists
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
yield return GetDefinition("iTunes Top Albums", GetSettings("itunes/album/top"));
|
yield return GetDefinition("iTunes Top Albums", GetSettings("itunes/album/top"));
|
||||||
|
yield return GetDefinition("iTunes New Albums", GetSettings("itunes/album/new"));
|
||||||
|
yield return GetDefinition("Apple Music Top Albums", GetSettings("apple-music/album/top"));
|
||||||
|
yield return GetDefinition("Apple Music New Albums", GetSettings("apple-music/album/new"));
|
||||||
yield return GetDefinition("Billboard Top Albums", GetSettings("billboard/album/top"));
|
yield return GetDefinition("Billboard Top Albums", GetSettings("billboard/album/top"));
|
||||||
yield return GetDefinition("Billboard Top Artists", GetSettings("billboard/artist/top"));
|
yield return GetDefinition("Billboard Top Artists", GetSettings("billboard/artist/top"));
|
||||||
yield return GetDefinition("Last.fm Top Albums", GetSettings("lastfm/album/top"));
|
yield return GetDefinition("Last.fm Top Albums", GetSettings("lastfm/album/top"));
|
||||||
|
|
|
@ -23,7 +23,7 @@ namespace NzbDrone.Core.ImportLists.LidarrLists
|
||||||
|
|
||||||
public string BaseUrl { get; set; }
|
public string BaseUrl { get; set; }
|
||||||
|
|
||||||
[FieldDefinition(0, Label = "List Id")]
|
[FieldDefinition(0, Label = "List Id", Advanced = true)]
|
||||||
public string ListId { get; set; }
|
public string ListId { get; set; }
|
||||||
|
|
||||||
public NzbDroneValidationResult Validate()
|
public NzbDroneValidationResult Validate()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue