summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-04-13fix use of C++ style comments in cpp file (avoids warning on OS X)Paul Davis
2016-04-13special case side-chain when copying plugin-state (fix crash, dup IO)Robin Gareus
2016-04-13prepare fix for copying plugin stateRobin Gareus
2016-04-13properly auto-connect sidechain pinsRobin Gareus
Handle cases where the SC pin is not the last (SC3 anyone?) also round-robin connect multiple SC inputs when replicating instances.
2016-04-13fix OSX buildsRobin Gareus
2016-04-13special case strict-i/o on the master-busRobin Gareus
2016-04-13initialize uninitialized variableRobin Gareus
2016-04-13extend strict-i/o to include route outputs.Robin Gareus
2016-04-13fix Plugin Pin for Audio + Midi input pluginsRobin Gareus
2016-04-13VST report audioMasterPinConnected according to Pin ManagementRobin Gareus
2016-04-13prepare VST plugins for reporting connected pinsRobin Gareus
The VST needs a way to get the parent PluginInserts's channel-map :(
2016-04-13update luadoc toolsRobin Gareus
2016-04-13expose sidechain binding, fix "bounce" typoRobin Gareus
2016-04-13yet more documentation..Robin Gareus
2016-04-12Modify 'getIdentityKey()' function to have LuaBridge_API linkage when ↵John Emmas
building with MSVC (rather than simply 'extern')
2016-04-12Change LuaBridge_API to be __declspec(dllexport) or __declspec(dllimport, as ↵John Emmas
required
2016-04-12somewhat improved "thru" and sidechain routing displayRobin Gareus
2016-04-12turn MarkerSelection into a class (bindings)Robin Gareus
2016-04-12fix typo in luabindingsRobin Gareus
2016-04-12some strategic documentationRobin Gareus
Prevent class descriptions inheriting the doc from PBD:Stateful by adding some specific doc.
2016-04-12remove and ignore intermediate generated documentation filesRobin Gareus
..until someone steps up and wants to use those for auto-complete etc.
2016-04-12update luadoc toolsRobin Gareus
2016-04-12use dedicated counter for sidechain port numberingRobin Gareus
2016-04-12add a new counter (for sidechain numbering)Robin Gareus
2016-04-12NO-OP; document some more parameters.Robin Gareus
Since headers only provide the declaration, function parameters need to be documented.
2016-04-12some more windows bandaids for optimized buildsRobin Gareus
really this is getting UGLY.
2016-04-12hotfix process-graph: include internal-send -> internal returnRobin Gareus
2016-04-12improve luawindow save/load/revertRobin Gareus
2016-04-11special case luabridge for windows/MSVCRobin Gareus
luabridge uses static fn addresses to identify classes. Windows uses different addresses for *identical* static functions in libardour.dll and ardour.exe This solves the issue by moving the all functions from a header-only implementation into libardour.
2016-04-11update lua documentation toolsRobin Gareus
2016-04-11indicate read-only scriptsRobin Gareus
2016-04-11update and cleanup lua example scriptsRobin Gareus
2016-04-11add some more Editor Selection lua bindingsRobin Gareus
2016-04-11clean up lua-class inheritanceRobin Gareus
Implicit casts of derived classes only work for the first parent. other parent classes require dedicated casts
2016-04-11add some class documentationRobin Gareus
2016-04-11add Lua bindings for Range Time SelectionRobin Gareus
```lua print (Editor:get_selection ().time:start ()) for ar in Editor:get_selection ().time:iter () do print (ar.id, ar.start, ar._end) end ```
2016-04-11Add tom's additions to tom's loop and turn it into an Action ScriptRobin Gareus
2016-04-10update lua class documentation scriptsRobin Gareus
2016-04-10fix loop example script (updated API)Robin Gareus
2016-04-10update lua related doc, add missing bindingsRobin Gareus
2016-04-10some more example lua scriptsRobin Gareus
2016-04-10convenient API to access track and region selectionRobin Gareus
2016-04-10expose port bindingsRobin Gareus
2016-04-10add lua bindings for Automation EventsRobin Gareus
2016-04-10NO-OP whitespace + commentsRobin Gareus
2016-04-10NO-OP document Evoral::ControlListRobin Gareus
2016-04-10add a C++ lifetime MementoCommand APIRobin Gareus
2016-04-10add undo to the lua bounce+loop example script, just because.Robin Gareus
2016-04-10expose Undo Commands to LuaRobin Gareus
Some trickery is needed here to manage object lifetimes and multiple inheritance.
2016-04-09exercise new lua bindingsRobin Gareus