|
@@ -192,6 +192,10 @@ namespace MediaBrowser.Model.Configuration
|
|
public bool EnableExternalContentInSuggestions { get; set; }
|
|
public bool EnableExternalContentInSuggestions { get; set; }
|
|
|
|
|
|
public int ImageExtractionTimeoutMs { get; set; }
|
|
public int ImageExtractionTimeoutMs { get; set; }
|
|
|
|
+
|
|
|
|
+ public PathSubstitution[] PathSubstitutions { get; set; }
|
|
|
|
+ public bool EnableSimpleArtistDetection { get; set; }
|
|
|
|
+
|
|
/// <summary>
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
|
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
|
/// </summary>
|
|
/// </summary>
|
|
@@ -202,6 +206,8 @@ namespace MediaBrowser.Model.Configuration
|
|
Migrations = new string[] { };
|
|
Migrations = new string[] { };
|
|
ImageExtractionTimeoutMs = 0;
|
|
ImageExtractionTimeoutMs = 0;
|
|
EnableLocalizedGuids = true;
|
|
EnableLocalizedGuids = true;
|
|
|
|
+ PathSubstitutions = new PathSubstitution[] { };
|
|
|
|
+ EnableSimpleArtistDetection = true;
|
|
|
|
|
|
DisplaySpecialsWithinSeasons = true;
|
|
DisplaySpecialsWithinSeasons = true;
|
|
EnableExternalContentInSuggestions = true;
|
|
EnableExternalContentInSuggestions = true;
|
|
@@ -563,4 +569,10 @@ namespace MediaBrowser.Model.Configuration
|
|
};
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ public class PathSubstitution
|
|
|
|
+ {
|
|
|
|
+ public string From { get; set; }
|
|
|
|
+ public string To { get; set; }
|
|
|
|
+ }
|
|
}
|
|
}
|