mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 09:34:44 +01:00
3.0.5231.40980
This commit is contained in:
@@ -58,6 +58,12 @@ namespace MediaBrowser.Model.Configuration
|
||||
Type = NotificationType.PluginInstalled.ToString(),
|
||||
Enabled = true,
|
||||
SendToUserMode = SendToUserType.Admins
|
||||
},
|
||||
new NotificationOption
|
||||
{
|
||||
Type = NotificationType.PluginError.ToString(),
|
||||
Enabled = true,
|
||||
SendToUserMode = SendToUserType.Admins
|
||||
}
|
||||
};
|
||||
}
|
||||
@@ -166,6 +172,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
AudioPlayback,
|
||||
GamePlayback,
|
||||
InstallationFailed,
|
||||
PluginError,
|
||||
PluginInstalled,
|
||||
PluginUpdateInstalled,
|
||||
PluginUninstalled,
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if [enable u pn p]; otherwise, <c>false</c>.</value>
|
||||
public bool EnableUPnP { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the HTTP server port number.
|
||||
/// </summary>
|
||||
@@ -62,7 +62,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
/// </summary>
|
||||
/// <value>The metadata path.</value>
|
||||
public string MetadataPath { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the display name of the season zero.
|
||||
/// </summary>
|
||||
@@ -220,13 +220,16 @@ namespace MediaBrowser.Model.Configuration
|
||||
public string WanDdns { get; set; }
|
||||
|
||||
public string UICulture { get; set; }
|
||||
|
||||
|
||||
public DlnaOptions DlnaOptions { get; set; }
|
||||
|
||||
public double DownMixAudioBoost { get; set; }
|
||||
|
||||
public NotificationOptions NotificationOptions { get; set; }
|
||||
|
||||
[Obsolete("Please use RequireManualLoginForMobileApps")]
|
||||
public string[] ManualLoginClients { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="ServerConfiguration" /> class.
|
||||
/// </summary>
|
||||
@@ -292,6 +295,8 @@ namespace MediaBrowser.Model.Configuration
|
||||
UICulture = "en-us";
|
||||
|
||||
NotificationOptions = new NotificationOptions();
|
||||
|
||||
ManualLoginClients = new string[] { };
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -54,6 +54,8 @@ namespace MediaBrowser.Model.Configuration
|
||||
public bool EnableMediaPlayback { get; set; }
|
||||
public bool EnableContentDeletion { get; set; }
|
||||
|
||||
public bool GroupMoviesIntoBoxSets { get; set; }
|
||||
|
||||
public string[] BlockedMediaFolders { get; set; }
|
||||
|
||||
public UnratedItem[] BlockUnratedItems { get; set; }
|
||||
@@ -69,6 +71,7 @@ namespace MediaBrowser.Model.Configuration
|
||||
EnableLiveTvManagement = true;
|
||||
EnableMediaPlayback = true;
|
||||
EnableLiveTvAccess = true;
|
||||
GroupMoviesIntoBoxSets = true;
|
||||
|
||||
BlockedMediaFolders = new string[] { };
|
||||
BlockUnratedItems = new UnratedItem[] { };
|
||||
|
||||
Reference in New Issue
Block a user