summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-02-27fix crash caused by trying to connect monitor section before it has ports.5.8Paul Davis
This does not fix the ordering issues caused by things happening before the monitor section gaining ports
2017-02-27fix crash caused by thinko in 123fcf3cfPaul Davis
2017-02-26Consistent naming of installers: Name + Version [+Variant] + Arch5.7Robin Gareus
2017-02-26make sure that when extending the selection in the editor and mixer, the ↵Paul Davis
clicked-upon track gets set_selected() called last This makes it be the "first" selected strip for control surfaces and the editor mixer
2017-02-26remove method no longer neededPaul Davis
Editor::track_selection_changed() is now invoked by EditorRoutes::sync_treeview_from_presentation_info(), AFTER the Selection has been updated
2017-02-26make Selection::set (TrackViewList*) more efficient and emit less PI::Change ↵Paul Davis
signals
2017-02-26avoid doing needless duplicate work in Selection::add (TimeAxisView*)Paul Davis
2017-02-26selected Stripables now have a counter to indicate the order they were ↵Paul Davis
selected in
2017-02-26upcoming codenamesRobin Gareus
2017-02-26Fix yet another oversight for the windows icon file updateRobin Gareus
2017-02-26Fix windows builds, rename icons following 4e96285ba5Robin Gareus
2017-02-25Windows installer: use upper-case for program-nameRobin Gareus
2017-02-25Don't use upper-case in options (only headings)Robin Gareus
2017-02-25Revert "libs: debug output for faderport/editor mixer strip sync"Paul Davis
This reverts commit 6fb91b1ac25bbeb282228822efbdc91b62941f6e.
2017-02-25fix potential crash bug in RouteProcessorSelectionPaul Davis
2017-02-25prevent double-emission of PresentationInfo::Change when making mixer-view ↵Paul Davis
selection set changes
2017-02-25Add some missing luabridge::ClassInfo<>::getClassKey() - fix windows buildsRobin Gareus
2017-02-25OSC: correct busses spelling in GUILen Ovens
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