summaryrefslogtreecommitdiff
path: root/gtk2_ardour
AgeCommit message (Collapse)Author
2014-05-19Merge branch 'export-dialog' into cairocanvasColin Fletcher
Fix merge conflicts in: gtk2_ardour/export_range_markers_dialog.cc gtk2_ardour/wscript libs/ardour/ardour/export_handler.h libs/ardour/system_exec.cc libs/pbd/pbd/system_exec.h libs/pbd/system_exec.cc
2014-05-19indent in wscript uses spacesColin Fletcher
2014-05-19Use libardour SystemExec wrapper in gtk2_ardourColin Fletcher
#include ardour/system_exec.h where SystemExec is used in gtk2_ardour to get the libardour wrapper class, and remove the include completely where it's no longer required.
2014-05-19remove unnecessary and wierd constant for bottom rect (drop zone) of track ↵Paul Davis
canvas
2014-05-19comment tweakPaul Davis
2014-05-19adding a new track via copy-region-drag now works (and shares code with the ↵Paul Davis
non-copy case
2014-05-19non-copy region drag now creates a new track when a region is dragged to the ↵Paul Davis
drop zone
2014-05-19change return type of Editor::axis_view_from_route()Paul Davis
2014-05-19remove unused variablePaul Davis
2014-05-19part one of allowing region drag to the bottom (drop-zone) rect of track canvasPaul Davis
2014-05-16don't load selected session if other-project is chosen:Robin Gareus
1) Open Ardour 2) Select project from recent list 3) "Open Other" project 4) project from (2) is opened instead of the one chosen at (3)
2014-05-16replace gettimeofday() with g_get_monotonic_time()Robin Gareus
2014-05-14fix rounding error in the min:sec rulerDevin J. Pohly
When zoomed in to the millisecond level, the framerate was being divided by 1000 as an integer to generate a ruler tick interval, which doesn't work so well at things like 44100 or 88200. Instead, just count this value in milliseconds, dividing by 1000 when we are done. This was purely a display issue - the grid was in the correct place.
2014-05-14fix major/minor ticks on min:sec rulerDevin J. Pohly
All ticks from 0:00.000 to 0:00.999... were major, and everything after was minor, instead of the correct distribution.
2014-05-10Oops - minor spelling correctionsJohn Emmas
2014-05-10Bug fix imported from Mixbus2 (SVN r11448)John Emmas
If we couldn't figure out a plugin creator's name, either use as much of it as we could determine or mark the creator as 'Unknown'
2014-05-07Fix region content drag directionColin Fletcher
Fix <Control>+drag in bottom of region to move the region contents in the expected direction.
2014-05-07Fix undo of layer-changing region dragsColin Fletcher
Move clear_changes() of the playlist on which a region has been dragged before calling set_layer() on that playlist, so that undo of region drags in layered mode undoes any layer changes too. Should fix #5904
2014-05-07shift-modifier during trim dragging causes region to jump to original ↵Paul Davis
position (anchored at start or end, depending on trim type)
2014-05-06fix mingw build - needs bundle_env_mingw.cc when building with mingw, and ↵Paul Davis
that is a build target, not a platform
2014-05-01Add ComboOption configuration for default-fade-shapeAdrian Knoth
Let the user choose the preferred default fade shape in the editor section of the preference menu.
2014-05-01if using the audio/MIDI setup dialog because there are >1 backends, but the ↵Paul Davis
chosen backend is not under our control (i.e. JACK), remember to start it before returning from the dialog
2014-05-01change location marker ruler text for get_trx() == true casePaul Davis
2014-05-01correctly set up ruler preferences for get_trx() == true casePaul Davis
2014-04-30script to run ardour under callgrindRobin Gareus
2014-04-29remove two more unnecessary instances of os.path.join in install path ↵Paul Davis
definitions
2014-04-29Merge branch 'cairocanvas' of git.ardour.org:ardour/ardour into cairocanvasCarl Hetherington
2014-04-29"sequence regions" operation (remove space between selected regions) added, ↵Paul Davis
c/o Thomas Brand
2014-04-28skeleton dummy audio-engineRobin Gareus
2014-04-28Fix some capitalisation in the preferences dialog.Carl Hetherington
2014-04-24NOOP, no whitespace at EOFRobin Gareus
2014-04-24fix packing of LXVST UIs (minimum size, border)Robin Gareus
2014-04-24try get_win_special_folder() for harvid & xjadeo (if registry fails)Robin Gareus
2014-04-24query windows registry for xjadeo & harvid pathRobin Gareus
2014-04-23fix xjadeo on windows (directly use xjadeo.exe)Robin Gareus
2014-04-22dynamically adjust open-video-dialog layout depending on configurationRobin Gareus
2014-04-21increase LXVST GUI idle call regularity, aim for 25HzRobin Gareus
2014-04-21vtl: fix leftover typo in request URL (noop)Robin Gareus
2014-04-20update GUI while waiting for video server to respondRobin Gareus
2014-04-20add missing "Path" to label, re-order VST preferencesRobin Gareus
2014-04-19Save any cached fonts into our dedicated cache folder (msvc)John Emmas
(modifies the appropriate entry in 'fonts.conf')
2014-04-19videotimeline: path related fixes for windowsRobin Gareus
2014-04-18put back bottom line of region views if name highlight is not shown.Paul Davis
Also remove redundant line that replicated the one we modified.
2014-04-18fix VST GUI swallowing for windowsRobin Gareus
2014-04-17account for MS version of std::isalnum() - fixes assert on UTF8Robin Gareus
2014-04-17new transport option, "loop-is-mode" which optionally changes the role of ↵Paul Davis
the "play loop" button. If enabled, then the button simply changes the behaviour of the "play" button rather than actually starting playback. If disabled transport behaviour should be unchanged from before.
2014-04-16fix lack of region trimming when not displaying name highlight barPaul Davis
2014-04-16improve comment textPaul Davis
2014-04-16add preferences item for show-name-highlight (does not take effect till next ↵Paul Davis
instance)
2014-04-16fix logic for Config->show_name_highlight (reversed from inital experiments)Paul Davis