Skip to content
This repository has been archived by the owner on Jul 5, 2021. It is now read-only.

Commit

Permalink
Support Jellyfin 10.7.z and .NET 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Musi13 committed Jul 4, 2021
1 parent 4a1b5d6 commit f208de4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
9 changes: 3 additions & 6 deletions Jellyfin.Plugin.Streamlink/Jellyfin.Plugin.Streamlink.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.Streamlink</RootNamespace>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand All @@ -17,9 +17,6 @@

<ItemGroup>
<None Remove="Configuration\configPage.html" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="Configuration\configPage.html" />
</ItemGroup>

Expand Down
5 changes: 5 additions & 0 deletions Jellyfin.Plugin.Streamlink/StreamlinkStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,5 +156,10 @@ private void Resolve(TaskCompletionSource<bool> openTaskCompletionSource)
DateOpened = DateTime.UtcNow;
openTaskCompletionSource.TrySetResult(true);
}

public string GetFilePath()
{
return TempFilePath;
}
}
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ In any case, there are some features that I would like to add before aiming at a

1. Clone or download this repository

2. Ensure you have .NET Core 3.1+ SDK setup and installed
2. Ensure you have .NET 5.0+ SDK setup and installed

3. Copy Emby.Server.Implementations.dll from an existing Jellyfin install into the repo root

Expand Down
8 changes: 4 additions & 4 deletions build.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: "jellyfin-plugin-streamlink"
name: "Streamlink"
guid: "87c22ffb-736c-41aa-8a2d-95d46977bb26"
version: "2.0.0"
targetAbi: "10.6.0.0"
version: "3.0.0.0"
targetAbi: "10.7.0.0"
owner: "jellyfin"
nicename: "Streamlink"
description: "Watching channels through Streamlink on LiveTV"
Expand All @@ -13,4 +13,4 @@ artifacts:
- "Jellyfin.Plugin.Streamlink.dll"
build_type: "dotnet"
dotnet_configuration: "Release"
dotnet_framework: "netstandard2.1"
dotnet_framework: "net5.0"

0 comments on commit f208de4

Please sign in to comment.