mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 05:05:43 +01:00
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:
parent
0fe68cabca
commit
13c819e02b
5 changed files with 49 additions and 0 deletions
|
|
@ -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 ()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue