fix(screenshots): correct plugin mount path for Lidarr plugins branch#329
Closed
RicherTunes wants to merge 5 commits intomainfrom
Closed
fix(screenshots): correct plugin mount path for Lidarr plugins branch#329RicherTunes wants to merge 5 commits intomainfrom
RicherTunes wants to merge 5 commits intomainfrom
Conversation
The Lidarr plugins branch expects plugins at: /config/plugins/[Owner]/[PluginName]/Lidarr.Plugin.*.dll Previously mounted to /config/plugins/Brainarr/ (missing Owner directory) Now mounts to /config/plugins/RicherTunes/Brainarr/ Also updated API verification to use /api/v1/importlist/schema instead of /api/v1/system/plugins (which only shows API-installed plugins). Verified locally with Docker - plugin loads and registers correctly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
…sion conflicts Updates to commit 415c6b1 which includes the ILRepack fix that merges Microsoft.Extensions assemblies (DependencyInjection, Caching, Options, etc.) to prevent version conflicts with Lidarr's older MS.Extensions versions. This fixes the DryIoc resolution crashes caused by incompatible MS.Extensions.DependencyInjection.Abstractions versions. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Updates Common submodule to include FluentValidation in ILRepack merge list, preventing version conflicts with Lidarr host. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Owner
Author
|
Stale — superseded by packaging-gates adoption (#397) and ecosystem standardization. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
/config/plugins/Brainarr/to/config/plugins/RicherTunes/Brainarr//api/v1/importlist/schemainstead of/api/v1/system/pluginsRoot Cause
Lidarr's plugins branch expects plugins at:
The previous mount path was missing the
[Owner]directory level, causing plugins not to load.Verification
Tested locally with Docker - plugin loads and registers correctly:
Technical Details
PathExtensions.GetPluginAssemblies()scans:[AppDataFolder]/plugins/[Owner]/[PluginName]/Lidarr.Plugin.*.dll/api/v1/system/pluginsonly shows API-installed plugins, not file-loaded ones/api/v1/importlist/schemacorrectly shows file-loaded plugins🤖 Generated with Claude Code