Skip to content

Commit

Permalink
Fix Jellyfin 10.9 not able to download subtitles
Browse files Browse the repository at this point in the history
  • Loading branch information
josdion committed May 21, 2024
1 parent ff20e22 commit 53ae20e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
6 changes: 3 additions & 3 deletions AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
[assembly: System.Reflection.AssemblyCompanyAttribute("subbuzz")]
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © josdion, 2024")]
[assembly: System.Reflection.AssemblyDescriptionAttribute("Subtitles plugin for emby and jellyfin")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.9.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.9.0")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.1.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("subbuzz")]
[assembly: System.Reflection.AssemblyTitleAttribute("subbuzz")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.9.0")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.1.0.0")]

8 changes: 8 additions & 0 deletions repo/jellyfin_10.9.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@
"category": "Metadata",
"imageUrl": "https://raw.githubusercontent.com/josdion/subbuzz/master/thumb.png",
"versions": [
{
"version": "1.1.0.0",
"changelog": "- Fix issue with Jellyfin 10.9 not able to download subtitles\n",
"targetAbi": "10.9.0.0",
"sourceUrl": "https://github.com/josdion/subbuzz/releases/download/v1.1.0.0/subbuzz_1.1.0.0_jellyfin_10.9.zip",
"checksum": "9317b6cf5410c3ef82d6f67c7978fc95",
"timestamp": "2024-05-21T06:37:33Z"
},
{
"version": "1.0.9.0",
"changelog": "- Update to Jellyfin 10.9\n- Remove Subf2m.co and Subscene.com\n",
Expand Down
9 changes: 5 additions & 4 deletions subbuzz.jellyfin.10.9.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageProjectUrl>https://github.com/josdion/subbuzz</PackageProjectUrl>
<Nullable>annotations</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>

<ItemGroup>
<Compile Remove="API\ControllerEmby.cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Jellyfin.Controller" Version="10.9.*-*" />
<PackageReference Include="SharpCompress" Version="0.36.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="2.2.8" />
<PackageReference Include="Jellyfin.Controller" Version="10.9.*-*" IncludeAssets="compile" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" IncludeAssets="compile" />
<FrameworkReference Include="Microsoft.AspNetCore.App" Version="2.2.8" IncludeAssets="compile" />
<PackageReference Include="SharpCompress" Version="0.37.2" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 53ae20e

Please sign in to comment.