updated nuget
This commit is contained in:
parent
2fc0686c30
commit
5878190cab
|
@ -1067,6 +1067,12 @@
|
|||
<Compile Include="..\MediaBrowser.Model\Sync\LocalItem.cs">
|
||||
<Link>Sync\LocalItem.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\MediaBrowser.Model\Sync\LocalItemInfo.cs">
|
||||
<Link>Sync\LocalItemInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\MediaBrowser.Model\Sync\LocalItemQuery.cs">
|
||||
<Link>Sync\LocalItemQuery.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\MediaBrowser.Model\Sync\SyncCategory.cs">
|
||||
<Link>Sync\SyncCategory.cs</Link>
|
||||
</Compile>
|
||||
|
|
|
@ -1026,6 +1026,12 @@
|
|||
<Compile Include="..\MediaBrowser.Model\Sync\LocalItem.cs">
|
||||
<Link>Sync\LocalItem.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\MediaBrowser.Model\Sync\LocalItemInfo.cs">
|
||||
<Link>Sync\LocalItemInfo.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\MediaBrowser.Model\Sync\LocalItemQuery.cs">
|
||||
<Link>Sync\LocalItemQuery.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="..\MediaBrowser.Model\Sync\SyncCategory.cs">
|
||||
<Link>Sync\SyncCategory.cs</Link>
|
||||
</Compile>
|
||||
|
|
|
@ -376,6 +376,8 @@
|
|||
<Compile Include="Sync\ItemFIleInfo.cs" />
|
||||
<Compile Include="Sync\ItemFileType.cs" />
|
||||
<Compile Include="Sync\LocalItem.cs" />
|
||||
<Compile Include="Sync\LocalItemInfo.cs" />
|
||||
<Compile Include="Sync\LocalItemQuery.cs" />
|
||||
<Compile Include="Sync\SyncCategory.cs" />
|
||||
<Compile Include="Sync\SyncDataRequest.cs" />
|
||||
<Compile Include="Sync\SyncDataResponse.cs" />
|
||||
|
|
|
@ -64,6 +64,12 @@ namespace MediaBrowser.Model.Notifications
|
|||
Type = NotificationType.PluginError.ToString(),
|
||||
Enabled = true,
|
||||
SendToUserMode = SendToUserType.Admins
|
||||
},
|
||||
new NotificationOption
|
||||
{
|
||||
Type = NotificationType.UserLockedOut.ToString(),
|
||||
Enabled = true,
|
||||
SendToUserMode = SendToUserType.Admins
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
11
MediaBrowser.Model/Sync/LocalItemInfo.cs
Normal file
11
MediaBrowser.Model/Sync/LocalItemInfo.cs
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
public class LocalItemInfo
|
||||
{
|
||||
public string ServerId { get; set; }
|
||||
public string Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string PrimaryImageTag { get; set; }
|
||||
}
|
||||
}
|
19
MediaBrowser.Model/Sync/LocalItemQuery.cs
Normal file
19
MediaBrowser.Model/Sync/LocalItemQuery.cs
Normal file
|
@ -0,0 +1,19 @@
|
|||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
public class LocalItemQuery
|
||||
{
|
||||
public string ServerId { get; set; }
|
||||
public string AlbumArtist { get; set; }
|
||||
public string AlbumId { get; set; }
|
||||
public string SeriesId { get; set; }
|
||||
public string Type { get; set; }
|
||||
public string MediaType { get; set; }
|
||||
public string[] ExcludeTypes { get; set; }
|
||||
|
||||
public LocalItemQuery()
|
||||
{
|
||||
ExcludeTypes = new string[] { };
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
using System.Collections.Generic;
|
||||
using MediaBrowser.Model.Dto;
|
||||
|
||||
namespace MediaBrowser.Model.Sync
|
||||
{
|
||||
|
@ -18,18 +19,34 @@ namespace MediaBrowser.Model.Sync
|
|||
/// Gets or sets the quality options.
|
||||
/// </summary>
|
||||
/// <value>The quality options.</value>
|
||||
public List<SyncQuality> QualityOptions { get; set; }
|
||||
public List<NameValuePair> QualityOptions { get; set; }
|
||||
|
||||
public SyncDialogOptions()
|
||||
{
|
||||
Targets = new List<SyncTarget>();
|
||||
Options = new List<SyncJobOption>();
|
||||
QualityOptions = new List<SyncQuality>
|
||||
QualityOptions = new List<NameValuePair>
|
||||
{
|
||||
SyncQuality.Original,
|
||||
SyncQuality.High,
|
||||
SyncQuality.Medium,
|
||||
SyncQuality.Low
|
||||
new NameValuePair
|
||||
{
|
||||
Name = SyncQuality.Original.ToString(),
|
||||
Value = SyncQuality.Original.ToString()
|
||||
},
|
||||
new NameValuePair
|
||||
{
|
||||
Name = SyncQuality.High.ToString(),
|
||||
Value = SyncQuality.High.ToString()
|
||||
},
|
||||
new NameValuePair
|
||||
{
|
||||
Name = SyncQuality.Medium.ToString(),
|
||||
Value = SyncQuality.Medium.ToString()
|
||||
},
|
||||
new NameValuePair
|
||||
{
|
||||
Name = SyncQuality.Low.ToString(),
|
||||
Value = SyncQuality.Low.ToString()
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>MediaBrowser.Common.Internal</id>
|
||||
<version>3.0.579</version>
|
||||
<version>3.0.580</version>
|
||||
<title>MediaBrowser.Common.Internal</title>
|
||||
<authors>Luke</authors>
|
||||
<owners>ebr,Luke,scottisafool</owners>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<description>Contains common components shared by Media Browser Theater and Media Browser Server. Not intended for plugin developer consumption.</description>
|
||||
<copyright>Copyright © Media Browser 2013</copyright>
|
||||
<dependencies>
|
||||
<dependency id="MediaBrowser.Common" version="3.0.579" />
|
||||
<dependency id="MediaBrowser.Common" version="3.0.580" />
|
||||
<dependency id="NLog" version="3.2.0.0" />
|
||||
<dependency id="SimpleInjector" version="2.7.0" />
|
||||
</dependencies>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>MediaBrowser.Common</id>
|
||||
<version>3.0.579</version>
|
||||
<version>3.0.580</version>
|
||||
<title>MediaBrowser.Common</title>
|
||||
<authors>Media Browser Team</authors>
|
||||
<owners>ebr,Luke,scottisafool</owners>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>MediaBrowser.Model.Signed</id>
|
||||
<version>3.0.579</version>
|
||||
<version>3.0.580</version>
|
||||
<title>MediaBrowser.Model - Signed Edition</title>
|
||||
<authors>Media Browser Team</authors>
|
||||
<owners>ebr,Luke,scottisafool</owners>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>MediaBrowser.Server.Core</id>
|
||||
<version>3.0.579</version>
|
||||
<version>3.0.580</version>
|
||||
<title>Media Browser.Server.Core</title>
|
||||
<authors>Media Browser Team</authors>
|
||||
<owners>ebr,Luke,scottisafool</owners>
|
||||
|
@ -12,7 +12,7 @@
|
|||
<description>Contains core components required to build plugins for Media Browser Server.</description>
|
||||
<copyright>Copyright © Media Browser 2013</copyright>
|
||||
<dependencies>
|
||||
<dependency id="MediaBrowser.Common" version="3.0.579" />
|
||||
<dependency id="MediaBrowser.Common" version="3.0.580" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
|
|
Loading…
Reference in New Issue
Block a user