Merge branch 'jellyfin-10.9' of github.com:tubearchivist/tubearchivist-jf-plugin

This commit is contained in:
DarkFighterLuke
2024-05-14 20:17:26 +02:00
4 changed files with 6 additions and 6 deletions
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.TubeArchivistMetadata</RootNamespace> <RootNamespace>Jellyfin.Plugin.TubeArchivistMetadata</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile> <GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -11,8 +11,8 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.8.13" /> <PackageReference Include="Jellyfin.Controller" Version="10.9.*-*" />
<PackageReference Include="Jellyfin.Model" Version="10.8.13" /> <PackageReference Include="Jellyfin.Model" Version="10.9.*-*" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup> </ItemGroup>
@@ -63,7 +63,7 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.Providers
{ {
Name = video.Channel.Name, Name = video.Channel.Name,
ImageUrl = video.Channel.ThumbUrl, ImageUrl = video.Channel.ThumbUrl,
Type = PersonType.Actor, Type = Data.Enums.PersonKind.Actor,
}); });
result.HasMetadata = true; result.HasMetadata = true;
result.Item = video.ToEpisode(); result.Item = video.ToEpisode();
@@ -62,7 +62,7 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.Providers
{ {
Name = channel.Name, Name = channel.Name,
ImageUrl = channel.ThumbUrl, ImageUrl = channel.ThumbUrl,
Type = PersonType.Actor, Type = Data.Enums.PersonKind.Actor,
}); });
result.HasMetadata = true; result.HasMetadata = true;
result.Item = channel.ToSeries(); result.Item = channel.ToSeries();
+1 -1
View File
@@ -64,7 +64,7 @@ _NOTE: If you are using Docker containers, it is important to mount the TubeArch
## Build ## Build
1. To build this plugin you will need [.Net 6.x](https://dotnet.microsoft.com/download/dotnet/6.0). 1. To build this plugin you will need [.Net 8.x](https://dotnet.microsoft.com/download/dotnet/8.0).
2. Build plugin with following command 2. Build plugin with following command
``` ```