Skip to content

Commit

Permalink
Merge pull request #7 from EusthEnoptEron/feature/jellygin-10.9.11
Browse files Browse the repository at this point in the history
build: upgrade to Jellyfin 10.9.11
  • Loading branch information
EusthEnoptEron authored Sep 30, 2024
2 parents a43e210 + 1eefcff commit 4eed4ec
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Jellyfin.Plugin.AnimeThemes/AnimeThemesDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ public void Dispose()
}
}

internal record FlattenedTheme(AnimeTheme Theme, AnimeThemeEntry Entry, Video Video, Audio Audio);
internal sealed record FlattenedTheme(AnimeTheme Theme, AnimeThemeEntry Entry, Video Video, Audio Audio);

internal enum MediaType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Plugins;

namespace Jellyfin.Plugin.AnimeThemes.Configuration;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.AnimeThemes</RootNamespace>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -11,8 +11,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.8.4" />
<PackageReference Include="Jellyfin.Model" Version="10.8.4" />
<PackageReference Include="Jellyfin.Controller" Version="10.9.11" />
<PackageReference Include="Jellyfin.Model" Version="10.9.11" />
</ItemGroup>

<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions Jellyfin.Plugin.AnimeThemes/PluginServiceRegistrator.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using MediaBrowser.Common.Plugins;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Plugins;
using Microsoft.Extensions.DependencyInjection;

namespace Jellyfin.Plugin.AnimeThemes;
Expand All @@ -7,7 +8,7 @@ namespace Jellyfin.Plugin.AnimeThemes;
public class PluginServiceRegistrator : IPluginServiceRegistrator
{
/// <inheritdoc />
public void RegisterServices(IServiceCollection serviceCollection)
public void RegisterServices(IServiceCollection serviceCollection, IServerApplicationHost applicationHost)
{
serviceCollection.AddScoped<AnimeThemesDownloader>();
}
Expand Down
4 changes: 2 additions & 2 deletions build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: "AnimeThemes"
guid: "086022b5-29fb-4f89-a298-3d595492a5ed"
version: "1.0.0.0"
targetAbi: "10.8.4.0"
framework: "net6.0"
targetAbi: "10.9.11.0"
framework: "net8.0"
overview: "Plugin for Jellyfin that fetches anime themes (OPs and EDs) from animethemes.moe"
description: >
Plugin for Jellyfin that fetches anime themes (OPs and EDs) from animethemes.moe.
Expand Down

0 comments on commit 4eed4ec

Please sign in to comment.