This repository was archived by the owner on Aug 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed
Jellyfin.Plugin.MediaSegmentsApi Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 1616 - name : Read version from variable
1717 id : read-version
1818 run : |
19- NEW_FILE_VERSION=1.0.2
19+ NEW_FILE_VERSION=1.0.3
2020 echo "NEW_FILE_VERSION=${NEW_FILE_VERSION}" >> $GITHUB_ENV
2121 GIT_HASH=$(git rev-parse --short HEAD)
2222 echo "GIT_HASH=${GIT_HASH}" >> $GITHUB_ENV
3333 - name : Setup .NET
3434 uses : actions/setup-dotnet@v4
3535 with :
36- dotnet-version : 8 .0.x
36+ dotnet-version : 9 .0.x
3737
3838 - name : Setup Node.js
3939 uses : actions/setup-node@v4
Original file line number Diff line number Diff line change 66using System . Net . Mime ;
77using System . Threading . Tasks ;
88using MediaBrowser . Common . Extensions ;
9- using MediaBrowser . Controller ;
109using MediaBrowser . Controller . Entities ;
1110using MediaBrowser . Controller . Library ;
11+ using MediaBrowser . Controller . MediaSegments ;
1212using MediaBrowser . Controller . Providers ;
1313using MediaBrowser . Model . MediaSegments ;
1414using MediaBrowser . Model . Querying ;
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <RootNamespace >Jellyfin.Plugin.MediaSegmentsApi</RootNamespace >
66 <GenerateDocumentationFile >true</GenerateDocumentationFile >
77 <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
1111 </PropertyGroup >
1212
1313 <ItemGroup >
14- <PackageReference Include =" Jellyfin.Controller" Version =" 10.10. *" />
15- <PackageReference Include =" Jellyfin.Model" Version =" 10.10. *" />
14+ <PackageReference Include =" Jellyfin.Controller" Version =" 10.11.*- *" />
15+ <PackageReference Include =" Jellyfin.Model" Version =" 10.11.*- *" />
1616 </ItemGroup >
1717
1818 <ItemGroup >
Original file line number Diff line number Diff line change 11using Jellyfin . Plugin . MediaSegmentsApi . Providers ;
22using MediaBrowser . Controller ;
3+ using MediaBrowser . Controller . MediaSegments ;
34using MediaBrowser . Controller . Plugins ;
45using Microsoft . Extensions . DependencyInjection ;
56
Original file line number Diff line number Diff line change 11using System . Collections . Generic ;
22using System . Threading ;
33using System . Threading . Tasks ;
4- using MediaBrowser . Controller ;
54using MediaBrowser . Controller . Entities ;
5+ using MediaBrowser . Controller . MediaSegments ;
66using MediaBrowser . Model ;
77using MediaBrowser . Model . MediaSegments ;
88
Original file line number Diff line number Diff line change 11---
22name : " MediaSegments API"
33guid : " 6f0aaab5-e251-4a6d-b8d5-bc8c65222051"
4- version : " 1.0.2 .0"
5- targetAbi : " 10.10.2 .0"
6- framework : " net8 .0"
4+ version : " 1.0.3 .0"
5+ targetAbi : " 10.11.0 .0"
6+ framework : " net9 .0"
77overview : " Create and delete Media Segments"
88description : >
99 Provide an extended HTTP API to create and delete MediaSegments
You can’t perform that action at this time.
0 commit comments