summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-25Tweak preferences textRobin Gareus
2017-02-25Tweak metering prefs: clarify default type behaviorRobin Gareus
2017-02-25NO-OP, re-arrange codeRobin Gareus
2017-02-24Snap-back fader on release (follow-up to e8cebac6a36a)Robin Gareus
When dragging a fader out-of-bounds (VCA slave constraint), move it back on release.
2017-02-24Add some Lua-script icon.Robin Gareus
2017-02-24Group-override for fadersRobin Gareus
Tentative solution. Eventually the gain_adjustment should be moved into the PixFader or SliderController and a dedicated API should replace gain_adjustment.signal_value_changed()
2017-02-24Allow to switch master-meter type in the toolbar-meterRobin Gareus
2017-02-24NO-OP resolve an ambiguity, just because.Robin Gareus
Due to LevelMeterVBox : public LevelMeterBase, public Gtk::VBox; LevelMeterBase::get_type() overloads Gtk::Widget::get_type(), Glib::Object::get_type(), Atk::Implementor::get_type() etc.. Besides Ardour-style prefers not to use get_...()
2017-02-24gui: debug output for faderport/editor mixer strip syncPaul Davis
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 file origin (for later updates) -- GUI+Session pluginRobin Gareus
2017-02-24Save Lua script origin (for later updates) -- DSP pluginRobin Gareus
2017-02-24Add static class-keys for windowsRobin Gareus
2017-02-24add an example script to show/hide TAVsRobin Gareus
2017-02-24Add some convenient public editor methods (for lua-bindings)Robin Gareus
and s/get// in the old API for consistency.
2017-02-24the daily dose of const'nessRobin Gareus
2017-02-24re-order inheritanceRobin Gareus
LuaBridge only allows one parent class, others need explicit casts. Allowing RoutUI to be passed as Selectable argument is handy.
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-23Lua bindings to access editor selection + region selection bindingsRobin 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-23remove explicit line-break (rely on wrap)Robin Gareus
2017-02-23Do not bundle default system_config (prefer built-in defaults)Robin Gareus
Inside the bundle, those files are read-only, anyway. This alleviates us from generating/updating the files with whenever the built-in default changes and also makes architecture dependent default-config (compile time #defines) work.
2017-02-23Clarify prefsRobin Gareus
2017-02-24also fix flying percussive hits while copy-dragging.nick_m
2017-02-24hotfix for flying percussive hits while dragging.nick_m
- Hit::position still may not be set correctly, but this patch eliminates the error for now.
2017-02-23Update lua-script to use new playlist-APIRobin Gareus
2017-02-22Move Select-All-Tracks into the Selection category. Currently used only when ↵Ben Loftis
printing keybindings. But we should also use this for categorizing the keybindings dialog IMHO.
2017-02-22fix deadlock when assigning a VCA masterPaul Davis
2017-02-22Update processor Lua bindingsRobin Gareus
2017-02-22amend a2d54c3d9710 (w64 debug builds)Robin Gareus
2017-02-22GUI support to re-locate missing external (abs-path) filesRobin Gareus
2017-02-22Prepare re-locating missing external files.Robin Gareus
2017-02-22NO-OP: whitespaceRobin Gareus
2017-02-22NO-OP; whitespaceRobin Gareus
2017-02-22The return of the w64 debug buildRobin Gareus
2017-02-22remove cruftRobin Gareus
2017-02-22if a slave's masters are at zero, lock slave to zero and not NaNPaul Davis
2017-02-21fix crash when removing a TimeAxisView from the selectionPaul Davis
2017-02-21fix thinko/typo which failed to notify when a VCA is unassignedPaul Davis
2017-02-21PBD::Signal<...>::connect() is already thread safe, so drop intermediate ↵Paul Davis
proxy/call_slot() invocation in handling Controllable::Changed within AutomationController
2017-02-21Add Lua binding to query monotonic time (in microseconds)Robin Gareus
2017-02-21update plugin-utils Lua example scriptRobin Gareus