summaryrefslogtreecommitdiff
path: root/libs
AgeCommit message (Collapse)Author
2017-01-20Extract program version that a session was created withRobin Gareus
2017-01-20remove cruftRobin Gareus
2017-01-20fix a -WformatRobin Gareus
2017-01-20Reap invalidation recordsRobin Gareus
2017-01-20Free dead request-buffersRobin Gareus
This partially plugs a memory leak of event-loops.
2017-01-20MIDI leaks -- the Controllergate conspiracy debunkedRobin Gareus
2017-01-20Plug some libardour memory leaksRobin Gareus
2017-01-20Yet another pane pain: allow deleting children using forall_vfuncRobin Gareus
We not only need to make sure the iterator remains valid, but also the object pointed to. Valgrind trace: Invalid read of size 8 Gtkmm2ext::Pane::forall_vfunc(int, void (*)(_GtkWidget*, void*), void*) (pane.cc:617) Gtk::Container_Class::forall_vfunc_callback(_GtkContainer*, int, void (*)(_GtkWidget*, void*), void*) gtk_container_destroy (gtkcontainer.c:1073) g_closure_invoke (gclosure.c:804) ... g_object_run_dispose (gobject.c:1084)
2017-01-20Plug a memory leak (recent session list, session info)Robin Gareus
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-19Relax monitor-section processor channel restrictionRobin 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-19Move preroll duration calc into libardourRobin Gareus
2017-01-19fix up Canvas::Grid child layoutPaul Davis
2017-01-19correct translation matrix for Canvas::WidgetPaul Davis
2017-01-19do not add items twice to their canvas parent!Paul Davis
2017-01-18Implement record with prerollRobin 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-16Prepare session-wide implicit monitoring overridesRobin Gareus
2017-01-16Accommodate newly introduced source(s) in our MSVC project (cairocanvas)John Emmas
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-13Set rate and blocksize for multi-instance VSTsRobin Gareus
2017-01-13Accommodate newly introduced source(s) in our MSVC project (ardour_osc)John Emmas
2017-01-12add API to query name of bound actionRobin Gareus
2017-01-11OSC: We want to see aux buses even if the gui has them hiddenLen Ovens
2017-01-10OSC: Fix aux mute to check stripable exists firstLen Ovens
2017-01-10fix nested templates for ye ancient compilers of the worldePaul Davis
2017-01-10Fix MTC slave implicit return on transport-stopRobin Gareus
MTC returns not-locked (no flywheel) when the signal is lost, in which case Session::follow_slave() jumps to no_roll and ignores the slave-position. The MTC slave does explicitly request a transport-locate and transport-stop. Yet, Session::realtime_stop() honors _requested_return_frame for whatever reason
2017-01-09OSC: Fix cue observer stop to zero controlsLen Ovens
2017-01-09OSC: Add Talent individual monitor controlsLen Ovens
2017-01-09add XML names/handling for additional Parameter types.Paul Davis
This is still incomplete and really not generic. Ought to be revisited, but has backwards compatibility issues that make it more complex
2017-01-09save state of an automation list, even if empty, because it might exist in ↵Paul Davis
the history state
2017-01-09add clamp for adding points to a ControlList from a (G)UIPaul Davis
2017-01-09tweak previous commit to make desc.max_unbound "more correct"Paul Davis
2017-01-09fix ranges for LADSPA unbounded toggle parameters.Paul Davis
Used to be 0..4, now 0..1. The 4 is still used as an arbitrary upper bound for non-toggled parameters
2017-01-08NO-OP: whitespaceRobin Gareus
2017-01-08Fix Pane size allocation:Robin Gareus
* Skip calling allocate on recently hidden children. * Don't [temporarily] call size_allocate with negative sizes