Re-brand a-* plugins as Ardour Community Effects (ACE)

This commit is contained in:
Robin Gareus 2020-09-30 21:59:20 +02:00
parent e4cb7a14e8
commit 46e895aaad
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
26 changed files with 51 additions and 51 deletions

View file

@ -45,8 +45,8 @@ function factory () return function ()
local pos = 0 -- insert at the top
-- the following two lines are equivalent
--local proc = ARDOUR.LuaAPI.new_luaproc(Session, "a-Inline Scope");
local proc = ARDOUR.LuaAPI.new_plugin (Session, "a-Inline Scope", ARDOUR.PluginType.Lua, "");
--local proc = ARDOUR.LuaAPI.new_luaproc(Session, "ACE Inline Scope");
local proc = ARDOUR.LuaAPI.new_plugin (Session, "ACE Inline Scope", ARDOUR.PluginType.Lua, "");
assert (not proc:isnil())
t:add_processor_by_index(proc, pos, nil, true)