From 36d6c99a7402312b54b669f43e9b5350c59c3e66 Mon Sep 17 00:00:00 2001 From: Anthony Lavado Date: Mon, 30 Sep 2019 18:05:39 -0400 Subject: [PATCH] Update links Removes reference to other GitHub repo for the template, and uses the one in this repo. Updates documentation link to new location. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e128aa7..4acee80 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Awesome! This guide is for you. Jellyfin plugins are written using the dotnet st We have a number of quickstart options available to speed you along the way - [Download the Example Plugin Project](https://github.com/jellyfin/jellyfin-plugin-template/tree/master/Jellyfin.Plugin.Template) from this repository, open it in your IDE and go to [step 3](https://github.com/jellyfin/jellyfin-plugin-template#3-customize-plugin-information) -- Install our dotnet template by [downloading the dotnet-template/content folder from this repo](https://github.com/LogicalPhallacy/jellyfin-plugin-template/tree/master/dotnet-template/content) or off of Nuget (Coming soon) +- Install our dotnet template by [downloading the dotnet-template/content folder from this repo](https://github.com/jellyfin/jellyfin-plugin-template/tree/master/dotnet-template/content) or off of Nuget (Coming soon) ``` dotnet new -i /path/to/templatefolder ``` @@ -92,7 +92,7 @@ Here's some interfaces you could implement for common use cases: - **IResolverIgnoreRule** - Allows you to define subpaths that are ignored by media resolvers for use with another function (i.e. you wanted to have a theme song for each tv series stored in a subfolder that could be accessed by your plugin for playback in a menu). - **IScheduledTask** - Allows you to create a scheduled task that will appear in the scheduled task lists on the dashboard. -There are loads of other interfaces that can be used, but you'll need to poke around the API to get some info. If you're an expert on a particular interface, you should help [contribute some documentation](https://jellyfin.readthedocs.io/en/latest/)! +There are loads of other interfaces that can be used, but you'll need to poke around the API to get some info. If you're an expert on a particular interface, you should help [contribute some documentation](https://jellyfin.org/docs/)! ### 4b. Use plugin aimed interfaces to add custom functionality