summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2013-08-24fix merge conflicts from masterPaul Davis
2013-08-24pot/po file updates caused by waf i18nPaul Davis
2013-08-23don't run meter in import-dialog if the dialog is not visibleRobin Gareus
2013-08-15update czech translations from pavel fricPaul Davis
2013-08-15fix newly-appearing crash-at-close caused by muddled thinking in ↵Paul Davis
pbd/pthread_utils threads created with this code can now just return a value as they normally would, and the infrastructure will ensure cleanup. there is no longer any reason to call pthread_exit_pbd() and so that has been removed.
2013-08-13Move curve test file handling in main() until after ARDOUR::init is calledTim Mayberry
This means it doesn't need to call PBD::ID::init directly, which it now shouldn't be doing
2013-08-13Remove call to PBD::ID::init as it is now done via ARDOUR::initTim Mayberry
2013-08-13Move initialization of libardour from ARDOUR_UI class into main()Tim Mayberry
2013-08-13Change ARDOUR::init return type to bool type for success/failureTim Mayberry
2013-08-09fix typosRobin Gareus
2013-08-08remove --no-freesound option. fixes #5640Robin Gareus
2013-08-04fix meter-background highlight when peaking. (> vs >=)Robin Gareus
2013-08-04fix rounding issue when dragging video with fractional fpsRobin Gareus
2013-08-04vtl: import audio at video-offset, forget offset on "Remove Video"Robin Gareus
2013-08-04make master-meter in toolbar optionalRobin Gareus
2013-08-03dedicated namespace for video-utilsRobin Gareus
conflicting symbol prophylaxis
2013-08-03remove strtok_r() from video_query_info()Robin Gareus
for minGW compatibility
2013-08-03add a peak reset button to the editor meterRobin Gareus
see http://tracker.ardour.org/view.php?id=5601
2013-08-03fix gtk "child->parent == NULL" assertsRobin Gareus
2013-08-03fix "other" port-group tabRobin Gareus
Separate port-bundles for each jack client in the connection manager. Previously, apps were only listed as separate bundles if the ports were gathered at different times. ie one app shows up after the other (and if no complete re-scan was triggered) Fixes issue reported by Fons Adriaensen.
2013-08-03Merge branch 'midiclock' of https://github.com/axetota/ardourRobin Gareus
2013-08-02Send and Read MIDI Positions the right wayMichael Fisher
2013-08-03disallow invalid port-removalRobin Gareus
do not allow port-removal if the port would be re-added immediately after that again because the main-delivery actually needs it. As a side effect this prevents this crash: * create a stereo-track, then remove one output -> unhandled exception "AudioEngine::PortRegistrationFailure&" The problem: - the port is removed from the RCU ports list, but Port::drop() (which calls jack_port_unregister) is only called from the Port's destructor at some later time. (because a reference to the port still exists elsewhere) - the jack-port is not yet removed. - meanwhile Delivery::configure_io comes along and notices that there are more audio-buffers than ports and tries to re-register the port. - but the port still exists in jack, so it fails and throws an exception ...which is not handled.
2013-08-02Merge branch 'master' into windowsPaul Davis
2013-08-02keep port-matrix in sync when deleting ports. and fix segfault on session ↵Robin Gareus
close with io-matrix visible
2013-08-02Human readable printing of MIDI Position messagesMichael Fisher
2013-08-01Merge branch 'master' into windowsPaul Davis
2013-08-01re-check meterbridge metric-area on route deletionRobin Gareus
fixes http://tracker.ardour.org/view.php?id=5616#c15204
2013-07-31fix merge conflict from masterPaul Davis
2013-07-31tiny detail.. GUI-callback may try to check vmonitor->is_started() or issue ↵Robin Gareus
a periodic seek update while it's going away
2013-07-31clean up some valgrid "Uninitialised value was created by a heap allocation" ↵Robin Gareus
wanings
2013-07-31correct error messageRobin Gareus
2013-07-31fix close_allv() sentinelRobin Gareus
2013-07-31initialize two more uninitialized vars..Robin Gareus
2013-07-30adjust meterbridge label-heigh optionsRobin Gareus
2013-07-30add name-tooltips to the meterbridge metersRobin Gareus
2013-07-30clean up 44fc92c3 (not a threading issue but sigc++ problem)Robin Gareus
RouteUI is not sigc::trackable itself (only derived classes are) RouteUI::~RouteUI() does not disconnect from signals on destruction.
2013-07-30disconnect AuxSend connection when deleting busRobin Gareus
fixes crash: - add bus - aux-send a signal to that bus - delete bus - add another bus - aux-send a signal to "another bus" - click "Aux Send" button on "another bus" - crash
2013-07-29Send a song position pointer with mmc and fullframe fake locatingMichael Fisher
2013-07-29Add relavent OSX midi options in the startup dialogMichael Fisher
- MIDI driver options are now "None" and "coremidi" on OSX - If coremidi is selected, jack will start with midi activated - Requires Jack OSX version 0.90 beta 15 (or another version that supports midi
2013-07-29tweak meterbridge-label heightRobin Gareus
2013-07-29change default BBC-meter colorRobin Gareus
2013-07-29fix compiler warningRobin Gareus
2013-07-29add option to resize meterbridge track-labelsRobin Gareus
2013-07-29explicitly re-init meter when theme changes.Robin Gareus
fixes: 14:14 < oofus> rgareus: BBC meter colour changed, all meters except the one on the tool bar picked it up
2013-07-29change metric-scale on the sides of meterbridge when scrollingRobin Gareus
2013-07-29allow to configure color of BBC meterRobin Gareus
2013-07-28left/right meter marks in mixer (narrow red-stripe)Robin Gareus
2013-07-28fix diamond inheritance - gtkmm main class is sigc::trackableRobin Gareus
2013-07-28fix compiler warnings.Robin Gareus