mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
repos: warn on missing testing API (#2056)
* repos: warn on missing testing API * repos: reword missing testing API warning
This commit is contained in:
parent
8956bd54a9
commit
f3bd83fbe9
1 changed files with 7 additions and 0 deletions
|
|
@ -205,6 +205,13 @@ internal class PluginRepository
|
|||
return false;
|
||||
}
|
||||
|
||||
if (manifest.TestingAssemblyVersion != null &&
|
||||
manifest.TestingAssemblyVersion > manifest.AssemblyVersion &&
|
||||
manifest.TestingDalamudApiLevel == null)
|
||||
{
|
||||
Log.Warning("The plugin {PluginName} in {RepoLink} has a testing version available, but it lacks an associated testing API. The 'TestingDalamudApiLevel' property is required.", manifest.InternalName, this.PluginMasterUrl);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue