summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-09-28change clearlooks style file so that small_entry and related styles use text ↵Paul Davis
color for text even when selected
2015-09-28Merge branch 'chaot4-fix_lock_solo_ctrl_shift'Paul Davis
2015-09-28Introduce Ctrl+Shift+Click on lock solo in the mixer.André Nusser
2015-09-28fix initialization of reserved I/O names vectorPaul Davis
2015-09-28fix const-nessPaul Davis
2015-09-28Revert "add new action and loop marker menu item for setting up loop record"Paul Davis
This reverts commit ebb43508f1ab75b7d7467e0e95cdd1c816cf3183.
2015-09-28get loop recording working when using seam-ed loopingPaul Davis
2015-09-28better more reliable checks on renamed, newly created and imported track/bus ↵Paul Davis
names
2015-09-28change semantics of 4th argument to Session::locate to mean "this locate is ↵Paul Davis
connected with play-loop just being enabled"
2015-09-28change the way the audio clock cursor is drawn (somewhat of an experiment ↵Paul Davis
but it has some benefits
2015-09-28when editing an audio clock, swallow illegal keys rather than allowing them ↵Paul Davis
to reach the rest of the GUI
2015-09-28fix the logic of the GUI "toggle roll" action as it pertains to loop recordingPaul Davis
2015-09-28a few new DEBUG_TRACE calls related to session transport statePaul Davis
2015-09-28minor fix for possible off-by-one logic when at/near the end of the loop rangePaul Davis
2015-09-28fix a long-standing bug arising from a change to some logic which reversed ↵Paul Davis
an "is-rolling" test
2015-09-28move code location where loop playback is cancelled when stoppingPaul Davis
2015-09-28loop record is a feature whether or not loop-is-mode is true or notPaul Davis
2015-09-28Session::disable_record() should work whether we are in loop mode or notPaul Davis
2015-09-28add new action and loop marker menu item for setting up loop recordPaul Davis
2015-09-28fix long options of gcc-glibmm-abi-check.Robin Gareus
2015-09-28remove outdated limiationRobin Gareus
2015-09-28remove cruft.Robin Gareus
2015-09-27mixer-strip name context-menu cleanupRobin Gareus
patch thanks to chaot4
2015-09-27add deva to authors.Robin Gareus
2015-09-27Sort ports in state-save.Robin Gareus
This results in identical XML if the session did not change, allowing to keep track of state-changes easily (e.g. session file in git). Thanks to deva (again).
2015-09-27LV2 state cleanup, patch from deva. closes #6607Robin Gareus
set _impl->state on session load in order to detect state changes properly (no not save duplicate states). + some small mem-leaks (free state)
2015-09-27Close export directory browser dialog when clicking on 'Cancel' button, ↵Tim Mayberry
Fixes #6594
2015-09-27update semantics of PBD::remove_directory()Robin Gareus
Remove the directory recursively including itself. The function is used in two places only: * LV2Plugin::add_state() -- no change, remove tmp. state * Session::save_as() -- on error, remove target In both cases removing the folder itself is correct.
2015-09-27fix mixer group-tab width - #6572Robin Gareus
EditorGroupTabs are re-exposed in the idle-callback, widgets are packed and geometry is valid. Mixer_UI::redisplay_track_list() does not have this property.
2015-09-26accept/ignore --gcc5abi option during packaging.Robin Gareus
2015-09-26..and another packaging typoRobin Gareus
2015-09-26add missing space.Robin Gareus
2015-09-26linux-installer: gcc4/5 warning.Robin Gareus
2015-09-26new tool to test gcc4/5 ABIRobin Gareus
2015-09-26remove old gcc ABI (libstc++) test toolRobin Gareus
2015-09-26gcc5/c++11 deprecates std::auto_ptrRobin Gareus
2015-09-25copy LV2 options to heap.Robin Gareus
Stack pointer becomes invalid when the array goes out of scope. Fixes rare crash in suil_wrapper_new() or GUIs iterating over options.
2015-09-25fix crash at session-close, amend dec4790dRobin Gareus
2015-09-24Add some casting to keep MSVC happyJohn Emmas
2015-09-24Add some newly introduced sources to our MSVC project (libardour)John Emmas
2015-09-24redisplay markers after removal - fixes #6596Robin Gareus
2015-09-23fix iterator after map::erase().Robin Gareus
The iterator referring to the removed element is invalidated. Other iterators remain valid.
2015-09-22standardize VST Callback debug message printRobin Gareus
2015-09-22add debug flags for VST CallbacksRobin Gareus
2015-09-21Hide create new item from Group Tab context menuTodd Naugle
Creating a new empty group from the group tab area just looks broken since nothing visible happens, so hide this item when the context menu is triggered from this location.
2015-09-21PBD::Debug to stdoutRobin Gareus
fixes debug output on windows. std::cerr is lost, only std::cout, printf() and fprintf(stderr, ..) work.
2015-09-21amend 01403dc (VST Pin connected)Robin Gareus
2015-09-21Create new Groups with a consistent set of default properties.Todd Naugle
This is part of a larger fix for #6450. Previously new route groups were created with different default properties depending on which code created the new group. The group tab method had all properties set and that is now going to be the default for all other methods (mixer strip button, etc).
2015-09-21Update RouteGroup property defaults.Todd Naugle
This is part of a larger fix for #6450. Previously new route groups were created with different default properties depending on which code created the new group. The group tab method had all properties set and that is now going to be the default.
2015-09-21processor-box: explicitly check for "Amp" (Fader)Robin Gareus