5 | Jellyfin Theme Songs plugin is a plugin that automatically downloads every theme song of your tv show library; 6 | 7 |
8 | 9 | ## Install Process 10 | 11 | 12 | ## From Repository 13 | 1. In jellyfin, go to dashboard -> plugins -> Repositories -> add and paste this link https://raw.githubusercontent.com/danieladov/JellyfinPluginManifest/master/manifest.json 14 | 2. Go to Catalog and search for Theme Songs 15 | 3. Click on it and install 16 | 4. Restart Jellyfin 17 | 18 | 19 | ## From .zip file 20 | 1. Download the .zip file from release page 21 | 2. Extract it and place the .dll file in a folder called ```plugins/Theme Songs``` under the program data directory or inside the portable install directory 22 | 3. Restart Jellyfin 23 | 24 | ## User Guide 25 | 1. To download the theme songs you can do it from Schedule task or directly from the configuration of the plugin. 26 | 2. You need to have enabled the option "Theme Songs" under display 27 | 28 | 29 | 30 | 31 | 32 | ## Build Process 33 | 1. Clone or download this repository 34 | 2. Ensure you have .NET Core SDK setup and installed 35 | 3. Build plugin with following command. 36 | ```sh 37 | dotnet publish --configuration Release --output bin 38 | ``` 39 | 4. Place the resulting .dll file in a folder called ```plugins/Merge versions``` under the program data directory or inside the portable install directory 40 | 41 | 42 | -------------------------------------------------------------------------------- /build.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: "jellyfin-plugin-tmdbboxsets" 3 | guid: "bc4aad2e-d3d0-4725-a5e2-fd07949e5b42" 4 | version: "5" # Please increment with each pull request 5 | jellyfin_version: "10.5.0" # The earliest binary-compatible version 6 | owner: "jellyfin" 7 | nicename: "TMDb Box Sets" 8 | description: "Automatically create movie box sets based on TMDb collections" 9 | overview: "Automatically create movie box sets based on TMDb collections" 10 | category: "Metadata" 11 | artifacts: 12 | - "Jellyfin.Plugin.TMDbBoxSets.dll" 13 | build_type: "dotnet" 14 | dotnet_configuration: "Release" 15 | dotnet_framework: "netstandard2.1" 16 | --------------------------------------------------------------------------------