mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Add options to expand album types by default (#644)
* Add options to expand album types by default * Remove isAfter and simplify slightly * Fix display of settings on large screens
This commit is contained in:
parent
1e48ea58b0
commit
1f483c3a3c
7 changed files with 118 additions and 10 deletions
|
@ -314,6 +314,41 @@ namespace NzbDrone.Core.Configuration
|
|||
set { SetValue("EnableColorImpairedMode", value); }
|
||||
}
|
||||
|
||||
public bool ExpandAlbumByDefault
|
||||
{
|
||||
get { return GetValueBoolean("ExpandAlbumByDefault", false); }
|
||||
|
||||
set { SetValue("ExpandAlbumByDefault", value); }
|
||||
}
|
||||
|
||||
public bool ExpandEPByDefault
|
||||
{
|
||||
get { return GetValueBoolean("ExpandEPByDefault", false); }
|
||||
|
||||
set { SetValue("ExpandEPByDefault", value); }
|
||||
}
|
||||
|
||||
public bool ExpandSingleByDefault
|
||||
{
|
||||
get { return GetValueBoolean("ExpandSingleByDefault", false); }
|
||||
|
||||
set { SetValue("ExpandSingleByDefault", value); }
|
||||
}
|
||||
|
||||
public bool ExpandBroadcastByDefault
|
||||
{
|
||||
get { return GetValueBoolean("ExpandBroadcastByDefault", false); }
|
||||
|
||||
set { SetValue("ExpandBroadcastByDefault", value); }
|
||||
}
|
||||
|
||||
public bool ExpandOtherByDefault
|
||||
{
|
||||
get { return GetValueBoolean("ExpandOtherByDefault", false); }
|
||||
|
||||
set { SetValue("ExpandOtherByDefault", value); }
|
||||
}
|
||||
|
||||
public bool CleanupMetadataImages
|
||||
{
|
||||
get { return GetValueBoolean("CleanupMetadataImages", true); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue