Writing the tag into index.html on disk fails on most fresh installs (linuxserver image, distro packages, Docker as a normal user) because the web files belong to root. A middleware now adds the tag to the response instead, so the ShareLink action and the guest lockdown work right after install. The on-disk edit stays as a best-effort extra, and the tag uses a relative src so it also works under a base URL. Bump to 1.0.8.0.
26 lignes
774 B
XML
26 lignes
774 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
<RootNamespace>Jellyfin.Plugin.ShareLinks</RootNamespace>
|
|
<AssemblyName>Jellyfin.Plugin.ShareLinks</AssemblyName>
|
|
<Version>1.0.8.0</Version>
|
|
<AssemblyVersion>1.0.8.0</AssemblyVersion>
|
|
<FileVersion>1.0.8.0</FileVersion>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Jellyfin.Controller" Version="10.11.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Web\**\*.*" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|