summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-01-20Add a note.Robin Gareus
2017-01-20Fix oddities when replacing VST-presets.Robin Gareus
VST used the count of available of presets as URI: - add 2 presets (1,2) - remove first, add another one -> two presets with same URI (2,2) PluginInfo::get_presets() simply lists all (name only) in a vector. Plugin::find_presets() uses the URI in a map (unique by URI). ..various ensuing bugs: eg. Plugin::remove_preset() looked up by name, but didn't check for NULL.
2017-01-19Scale default Atom Ringbuffer size with samplerateRobin Gareus
This increases the safe-margin for plugins producing more messages sent to the plugin GUI (usually fixed ~25Hz updates)
2017-01-19ancillary change related to removal of boost::optional<Rect>Paul Davis
2017-01-19remove use of boost::optional to define "undefined" Canvas::Rect, and use ↵Paul Davis
Rect::empty instead. This commit includes Rect::operator bool() which might be a candidate for removal in a future commit, in an attempt to make the meaning clearer
2017-01-19add delete x-run marker scriptRobin Gareus
2017-01-19Fix metronome level preference displayRobin Gareus
click-level fader is not a component added to the top-level, the page intercepts the parameter_changed signal
2017-01-19Allow to change metronome level via mouse-wheelRobin Gareus
2017-01-19Relax monitor-section processor channel restrictionRobin Gareus
2017-01-19Update monitor section controls when channelcount changesRobin Gareus
2017-01-19GUI: use new preroll-rec + trim modeRobin Gareus
2017-01-19Add some commentRobin Gareus
2017-01-19Add alternative preroll record mode:Robin Gareus
* Start recording at preroll, trim region to skip preroll at rec-stop * Keep old punch-in rec-at-preroll API for tape-tracks (later)
2017-01-19Rework preroll-rec API:Robin Gareus
* rename: indicate that recording happens after preroll, punch-in * move API into libardour: rec+roll (no separate setup, seek, roll APIs)
2017-01-19Remove rec-with-preroll, prepare for reworkRobin Gareus
2017-01-19Remove Editor API to calc preroll durationRobin Gareus
2017-01-19Move preroll duration calc into libardourRobin Gareus
2017-01-18Add comment regarding themeable boxesBen Loftis
2017-01-18Tweak some tooltip text.Ben Loftis
2017-01-18Allow editor toolbar and background to be themeable.Ben Loftis
2017-01-19fix up Canvas::Grid child layoutPaul Davis
2017-01-19correct translation matrix for Canvas::WidgetPaul Davis
2017-01-19fix code for ArdourButton so that an existing translation component to the ↵Paul Davis
cairo transformation matrix is honored correctly
2017-01-19do not add items twice to their canvas parent!Paul Davis
2017-01-18Promote the preroll_seconds config option to include musical time:Robin Gareus
Interpret negative preroll time as bars
2017-01-18prepare for musical-time prerollRobin Gareus
2017-01-18tweak table packing for more consistent spacing between buttons.Ben Loftis
2017-01-18Shuffle the layout of new monitor section, so it is recognizably different ↵Ben Loftis
than punch section; Standardize the button heights.
2017-01-18Add GUI action to record with prerollRobin Gareus
2017-01-18Implement record with prerollRobin Gareus
2017-01-18Cleanup global monitor options:Robin Gareus
- rely on parameter-changed signal emission to update buttons - use dedicated button/style names - improve tooltip
2017-01-18push sorted Stripable order back to PI (for control surfaces)Robin Gareus
2017-01-17Add session option to enable count-inRobin Gareus
2017-01-17Implement Count-In (before recording), fixed BPM, up to 2 barsRobin Gareus
2017-01-17Split metronome methods into re-usable parts (for count-in)Robin Gareus
2017-01-16Fix a -WreorderRobin Gareus
2017-01-16Prepare generic spill ([mix]busses)Robin Gareus
2017-01-16Configurable toolbar rec/punch & monitoring buttonsRobin Gareus
2017-01-16Add initial GUI support for global monitor statesRobin Gareus
2017-01-16Prepare session-wide implicit monitoring overridesRobin Gareus
2017-01-16Accommodate newly introduced source(s) in our MSVC project (cairocanvas)John Emmas
2017-01-16setlocale(LC_MESSAGES) isn't valid when building with MSVCJohn Emmas
In fact AFAICT it isn't supported by MinGW either (I've a feeling it probably isn't valid on Windows at all).
2017-01-15canvas::grid: get padding and margin to work; remove some debug outputPaul Davis
2017-01-15Add Japanese translationHiroki Inagaki
2017-01-15get grid layout workingPaul Davis
2017-01-15tweak Grid repositioning code to be a little more O(N)Paul Davis
2017-01-15basic (and probably wrong) Canvas::Grid child placementPaul Davis
2017-01-15include Canvas::Grid in build scriptPaul Davis
2017-01-15initial skeleton for a Grid canvas itemPaul Davis
2017-01-14consolidate --help text, allow to generate man page.Robin Gareus