Plugin Tags: Add a Lua-accessible function to write untagged plugins to a file so we can bulk-tag them.

print(ARDOUR.LuaAPI.dump_untagged_plugins())
 ...will write untagged plugins to a file, and report the resulting file path to the user
This commit is contained in:
Ben Loftis 2021-05-14 15:08:44 -05:00
parent 0fe68cabca
commit 13c819e02b
5 changed files with 49 additions and 0 deletions

View file

@ -138,6 +138,13 @@ ARDOUR::LuaAPI::new_send (Session* s, boost::shared_ptr<Route> r, boost::shared_
return boost::shared_ptr<Processor> ();
}
std::string
ARDOUR::LuaAPI::dump_untagged_plugins ()
{
PluginManager& manager = PluginManager::instance ();
return manager.dump_untagged_plugins();
}
PluginInfoList
ARDOUR::LuaAPI::list_plugins ()
{