-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add implementation to fetch tmdb networks and build collections based on
networks
- Loading branch information
Showing
12 changed files
with
306 additions
and
498 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: main | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
dotnet-version: ['5.0.x' ] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | ||
uses: actions/[email protected] | ||
- name: Install dependencies | ||
run: dotnet restore | ||
- name: Build | ||
run: dotnet build --configuration Release --no-restore | ||
- name: copy assets | ||
run: | | ||
cp ./Jellyfin.Tmdb.Collections.Plugin/bin/Release/net5.0/Jellyfin.Tmdb.Collections.Plugin.dll . | ||
- uses: "marvinpinto/action-automatic-releases@latest" | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN }}" | ||
automatic_release_tag: "latest" | ||
prerelease: false | ||
title: "latest" | ||
files: | | ||
Jellyfin.Tmdb.Collections.Plugin.dll |
28 changes: 0 additions & 28 deletions
28
Jellyfin.Collections.Plugin/Configuration/PluginConfiguration.cs
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
Jellyfin.Collections.Plugin.sln → Jellyfin.Tmdb.Collections.Plugin.sln
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
Jellyfin.Tmdb.Collections.Plugin/Configuration/PluginConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using MediaBrowser.Model.Plugins; | ||
|
||
namespace Jellyfin.Tv.Network.Collections.Plugin.Configuration | ||
{ | ||
|
||
public class PluginConfiguration : BasePluginConfiguration | ||
{ | ||
public string TmdbNetworks { get; set; } | ||
|
||
public PluginConfiguration() | ||
{ | ||
// set default options here | ||
TmdbNetworks = ""; | ||
} | ||
} | ||
} |
Oops, something went wrong.