Skip to content

Commit

Permalink
Add implementation to fetch tmdb networks and build collections based on
Browse files Browse the repository at this point in the history
networks
  • Loading branch information
shayaantx committed Nov 21, 2021
1 parent 8d6ebdc commit fe5b498
Show file tree
Hide file tree
Showing 12 changed files with 306 additions and 498 deletions.
207 changes: 0 additions & 207 deletions .editorconfig

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/main.yml
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 Jellyfin.Collections.Plugin/Configuration/PluginConfiguration.cs

This file was deleted.

75 changes: 0 additions & 75 deletions Jellyfin.Collections.Plugin/Configuration/configPage.html

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jellyfin.Plugin.Template", "Jellyfin.Collections.Plugin\Jellyfin.Collections.Plugin.csproj", "{D921B930-CF91-406F-ACBC-08914DCD0D34}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jellyfin.Tmdb.Collections.Plugin", "Jellyfin.Tmdb.Collections.Plugin\Jellyfin.Tmdb.Collections.Plugin.csproj", "{D921B930-CF91-406F-ACBC-08914DCD0D34}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
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 = "";
}
}
}
Loading

0 comments on commit fe5b498

Please sign in to comment.