summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)Author
2017-02-24libs: debug output for faderport/editor mixer strip syncPaul Davis
2017-02-24try to make sure faderport shows the same strip as the editor mixer stripPaul Davis
2017-02-24no-op: move method order in filePaul Davis
2017-02-24add a missing class-keyRobin Gareus
2017-02-24Save Lua script origin (for later updates) -- DSP pluginRobin Gareus
2017-02-24Add static class-keys for windowsRobin Gareus
2017-02-24remove misleading/incorrect commentPaul Davis
The previously-commented code is precisely what gets invoked when solo state changes, and had nothing to do with actually changing solo state in any way.
2017-02-23OSC: remove invalid feedback for solo and pan az.Len Ovens
2017-02-23fix solo + mute controls when slavedPaul Davis
clamp/scale by masters only applies to non-boolean controls
2017-02-23Add static Class-Keys for Windows buildRobin Gareus
2017-02-23LuaBridge: Dedicated type for pointer-lists and const versionRobin Gareus
"class C*" cannot be defined nor resolved, so STL containers to class instance pointers need to be special-cased.
2017-02-23luaBridge support const references to class-instance pointersRobin Gareus
Support passing "T*" as as "const T* &" argument e.g. std::list<T*>::push_back ( const T* & )
2017-02-23Constrain VCA slave value to controllable rangeRobin Gareus
This prevents overshoot e.g. when writing automation (and related oddities)
2017-02-22fix deadlock when assigning a VCA masterPaul Davis
2017-02-22Update processor Lua bindingsRobin Gareus
2017-02-22Prepare re-locating missing external files.Robin Gareus
2017-02-22NO-OP; whitespaceRobin Gareus
2017-02-22if a slave's masters are at zero, lock slave to zero and not NaNPaul Davis
2017-02-21fix thinko/typo which failed to notify when a VCA is unassignedPaul Davis
2017-02-21Add Lua binding to query monotonic time (in microseconds)Robin Gareus
2017-02-21Allow to access/load LuaDSP plugins with default plugin lua-bindings APIRobin Gareus
2017-02-21Implementations for Plugin-Preset-Load to set automationRobin Gareus
2017-02-21Add API allowing plugin preset load to affect automationRobin Gareus
2017-02-21redesign VCA control over gain (and theoretically other scalar controls)Paul Davis
master(s) value now just scales the control's own value; a trivial bit of math at assign/deassign ensures that values do not change during add/remove master operations
2017-02-20Allow to pre-seed Tabbable detached state.Robin Gareus
2017-02-20Add a missing #define to our MSVC project (portaudio_backend)John Emmas
2017-02-20Allow to create aux sends from Lua scriptsRobin Gareus
2017-02-20Add Lua bindings for std::list ::front() and ::back()Robin Gareus
2017-02-19Emit a signal when Lua session script change (prepare UI update to un/set)Robin Gareus
2017-02-18Fix 32bit compilationRobin Gareus
2017-02-18move color_to_rgba to LuaAPI for consistencyRobin Gareus
2017-02-18ptformat: Update lib to upstream 624671cDamien Zammit
Temporary measure to prevent bogus data being parsed: Until .ptx decryption is fully solved, we protect the MIDI data output against bogus values being parsed.
2017-02-17Allow to use any Lua function factory, produce bytecodeRobin Gareus
2017-02-18ptformat: Update lib to upstream 3b60276Damien Zammit
bugfix: Empty out MIDI events per region Signed-off-by: Damien Zammit <damien@zamaudio.com>
2017-02-17ptformat: Update the lib to 9d0b64f (upstream ptformat)Damien Zammit
Adds MIDI region import support and simplifies XOR decryption. Signed-off-by: Damien Zammit <damien@zamaudio.com>
2017-02-17leave a ToDo note for the mackie surfaceRobin Gareus
2017-02-17Remove direct calls to set solo_control()Robin Gareus
Changing solo-state needs to be done in rt-context to atomically propagate solo/mute. set_control() queues a rt-event, later Session::rt_set_control() calls Session::update_route_solo_state() to propagate solo/mute.
2017-02-17Add Lua bindings related to solo/mute and realtime control changesRobin Gareus
2017-02-17Fix initial order-keys when creating tracks/bussesRobin Gareus
.. and leave some notes for the day when UI treemodel won't be canonical to set order-keys.
2017-02-16amend 32248b755ba (legacy tempo map).nick_m
2017-02-16fix loading of 4.x sessions with a missing initial tempo section.nick_m
- behaviour should match that of 4.x (move the first tempo to frame 0).
2017-02-15Add Lua bindings for plugin re-orderingRobin Gareus
2017-02-15Don't copy-construct MusicFrame, pass const reference.Robin Gareus
2017-02-15unconditionally set region quarter note in set_position().nick_m
- this fixes incorrect timing of new regions recorded before the music origin.
2017-02-14Add missing bindings (after 59daffea1)Robin Gareus
2017-02-14Fix lua-doc (Null pointer c'tor doc)Robin Gareus
2017-02-13Prepare record with count-in actionRobin Gareus
2017-02-13latest Czech translation for libs/ardour, from Pavel Fric (December 2016)Paul Davis
2017-02-14fix 'snap to beat' havoc-causing misplaced bracket.nick_m
- should fix 7234
2017-02-13fix missing position property in MidiRegion::clone()nick_m