Introduce blacklisted plugins to core

This commit is contained in:
Johannes Lorenz
2020-11-08 01:45:27 +01:00
committed by Johannes Lorenz
parent 4fb66542a0
commit 7dd6a39366
4 changed files with 18 additions and 0 deletions

View File

@@ -88,6 +88,8 @@ public:
return s_projectJournal;
}
static bool ignorePluginBlacklist();
#ifdef LMMS_HAVE_LV2
static class Lv2Manager * getLv2Manager()
{

View File

@@ -44,6 +44,7 @@ enum PluginIssueType
portHasNoMax,
featureNotSupported, //!< plugin requires functionality LMMS can't offer
badPortType, //!< port type not supported
blacklisted,
noIssue
};
@@ -60,6 +61,7 @@ public:
: m_issueType(it), m_info(msg)
{
}
PluginIssueType type() const { return m_issueType; }
friend QDebug operator<<(QDebug stream, const PluginIssue& iss);
};