jellyfin / jellyfin-plugin-opensubtitles

https://jellyfin.org
GNU General Public License v3.0
119 stars 25 forks source link

10.9 support #115

Closed MBR-0001 closed 4 months ago

MBR-0001 commented 1 year ago

Also "modernized" the code:

Closes #143

crobibero commented 4 months ago

If you rebase on the unstable branch we can release this into the wild

crobibero commented 4 months ago

Also sorry for making other 10.9 changes, I just went through the list of plugins to make them buildable

MBR-0001 commented 4 months ago

I had to do the following modifications to csproj for it to build:

<ItemGroup>
    <Reference Include="blah/jellyfin/MediaBrowser.Common/bin/Debug/net8.0/MediaBrowser.Common.dll" />
    <Reference Include="blah/jellyfin/MediaBrowser.Controller/bin/Debug/net8.0/MediaBrowser.Controller.dll" />
    <Reference Include="blah/jellyfin/MediaBrowser.Model/bin/Debug/net8.0/MediaBrowser.Model.dll" />
  </ItemGroup>

original is:

<PackageReference Include="Jellyfin.Common" Version="10.*-*" />
<PackageReference Include="Jellyfin.Controller" Version="10.*-*" />

CI is not running so I'm not sure if this actually builds with unchanged csproj