mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Renamed file.
This commit is contained in:
parent
f73e744785
commit
d27d2a8990
@ -1051,12 +1051,16 @@ namespace Emby.Server.Implementations
|
|||||||
var dllList = new List<string>();
|
var dllList = new List<string>();
|
||||||
var versions = new List<(Version PluginVersion, string Name, string Path)>();
|
var versions = new List<(Version PluginVersion, string Name, string Path)>();
|
||||||
var directories = Directory.EnumerateDirectories(path, "*.*", SearchOption.TopDirectoryOnly);
|
var directories = Directory.EnumerateDirectories(path, "*.*", SearchOption.TopDirectoryOnly);
|
||||||
|
string metafile;
|
||||||
|
|
||||||
foreach (var dir in directories)
|
foreach (var dir in directories)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var manifest = _jsonSerializer.DeserializeFromFile<PlugInManifest>(Path.Combine(dir, "meta.json"));
|
metafile = Path.Combine(dir, "meta.json");
|
||||||
|
if (File.Exists(metafile))
|
||||||
|
{
|
||||||
|
var manifest = _jsonSerializer.DeserializeFromFile<PluginManifest>(metafile);
|
||||||
|
|
||||||
if (!Version.TryParse(manifest.TargetAbi, out var targetAbi))
|
if (!Version.TryParse(manifest.TargetAbi, out var targetAbi))
|
||||||
{
|
{
|
||||||
@ -1068,12 +1072,19 @@ namespace Emby.Server.Implementations
|
|||||||
version = new Version(0, 0, 0, 1);
|
version = new Version(0, 0, 0, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (targetAbi >= ApplicationVersion)
|
if (ApplicationVersion <= targetAbi)
|
||||||
{
|
{
|
||||||
// Only load Plugins for this version or below.
|
// Only load Plugins if the plugin is built for this version or below.
|
||||||
versions.Add((version, manifest.Name, dir));
|
versions.Add((version, manifest.Name, dir));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
metafile = dir.Split(new char[] { Path.DirectorySeparatorChar }, StringSplitOptions.RemoveEmptyEntries).Last();
|
||||||
|
// Add it under the path name and version 0.0.0.1.
|
||||||
|
versions.Add((new Version("0.0.0.1"), metafile, dir));
|
||||||
|
}
|
||||||
|
}
|
||||||
catch
|
catch
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user