From 377381976986423422dab1a30737b226ebdd7263 Mon Sep 17 00:00:00 2001 From: GeiserX <9169332+GeiserX@users.noreply.github.com> Date: Tue, 31 Mar 2026 16:23:00 +0200 Subject: [PATCH 1/2] Add SmartCovers to third-party plugins --- docs/general/server/plugins/index.mdx | 8 ++++++++ src/data/pluginRepositories.ts | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/docs/general/server/plugins/index.mdx b/docs/general/server/plugins/index.mdx index 79e2f242..ddc0ac38 100644 --- a/docs/general/server/plugins/index.mdx +++ b/docs/general/server/plugins/index.mdx @@ -289,6 +289,14 @@ A plugin to integrate your Shoko database with the Jellyfin media server. - [GitHub](https://github.com/ShokoAnime/Shokofin) +#### SmartCovers + +Fallback cover-image provider for books, audiobooks, and PDFs. Extracts covers from files locally (EPUB, PDF, audio embedded art) and fetches from Open Library and Google Books when local extraction fails. + +**Links:** + +- [GitHub](https://github.com/GeiserX/smart-covers) + #### Skin Manager Download and manage the most popular skins. diff --git a/src/data/pluginRepositories.ts b/src/data/pluginRepositories.ts index 9002a53c..7cec5be9 100644 --- a/src/data/pluginRepositories.ts +++ b/src/data/pluginRepositories.ts @@ -121,5 +121,13 @@ export const ThirdPartyRepositories: Array = [ includes: { 'WizdomSubs Downloader': 'https://github.com/DeDuplicate/Jellyfin_wizdomsubs_downloader' } + }, + { + id: 'gh:GeiserX/smart-covers', + name: "GeiserX's SmartCovers Repo", + url: 'https://geiserx.github.io/smart-covers/manifest.json', + includes: { + SmartCovers: 'https://github.com/GeiserX/smart-covers' + } } ]; From ae25dc1de4522db3eb49e4c7e7f0a784398977a8 Mon Sep 17 00:00:00 2001 From: GeiserX <9169332+GeiserX@users.noreply.github.com> Date: Tue, 31 Mar 2026 18:03:29 +0200 Subject: [PATCH 2/2] move SmartCovers to end of plugin list per reviewer request --- docs/general/server/plugins/index.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/general/server/plugins/index.mdx b/docs/general/server/plugins/index.mdx index ddc0ac38..2f7dd9da 100644 --- a/docs/general/server/plugins/index.mdx +++ b/docs/general/server/plugins/index.mdx @@ -289,14 +289,6 @@ A plugin to integrate your Shoko database with the Jellyfin media server. - [GitHub](https://github.com/ShokoAnime/Shokofin) -#### SmartCovers - -Fallback cover-image provider for books, audiobooks, and PDFs. Extracts covers from files locally (EPUB, PDF, audio embedded art) and fetches from Open Library and Google Books when local extraction fails. - -**Links:** - -- [GitHub](https://github.com/GeiserX/smart-covers) - #### Skin Manager Download and manage the most popular skins. @@ -345,6 +337,14 @@ Downloads Hebrew subtitles from WizdomSubs for your media files. This plugin pro - [GitHub](https://github.com/DeDuplicate/Jellyfin_wizdomsubs_downloader) +#### SmartCovers + +Fallback cover-image provider for books, audiobooks, and PDFs. Extracts covers from files locally (EPUB, PDF, audio embedded art) and fetches from Open Library and Google Books when local extraction fails. + +**Links:** + +- [GitHub](https://github.com/GeiserX/smart-covers) + ## Repositories import { OfficialPluginRepositories, ThirdPartyRepositories } from '../../../../src/data/pluginRepositories';