All checks were successful
Publish Release / release (push) Successful in 12s
Filters trailer pool items and pre-roll/feature pre-roll bumpers using BaseItem.IsVisibleStandalone(user), so users without access to the relevant library are never handed an item they can't actually play — some Cinema Mode clients hang indefinitely in that case.
25 lines
820 B
XML
25 lines
820 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<RootNamespace>Jellyfin.Plugin.CinemaTrailers4Jellyfins</RootNamespace>
|
|
<AssemblyVersion>1.0.0.9</AssemblyVersion>
|
|
<FileVersion>1.0.0.9</FileVersion>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jellyfin.Controller" Version="10.11.0" />
|
|
<PackageReference Include="Jellyfin.Model" Version="10.11.0" />
|
|
<PackageReference Include="YoutubeExplode" Version="6.*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Configuration\config.html" />
|
|
<EmbeddedResource Include="Configuration\config.html" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|