summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-12-01Make capitalization consistent and other minor spelling corrections.André Nusser
2015-12-01Create fr.potrebmuh
add a French translation
2015-11-30faderport: add some "curated" actions for mix, proj and trns; make new ↵Paul Davis
bindings use release, not press
2015-11-30faderport: restore button actions, and correctly indicate current action in GUIPaul Davis
2015-11-30faderport: some code cleanups, add timing for button presses, add new ↵Paul Davis
comboboxes to GUI to allow more button programming, save button state
2015-11-29no-op: add comment to faderport button ID definitionsPaul Davis
2015-11-29NOOP, remove trailing whitespace, replace tabs in python scriptsRobin Gareus
2015-11-29some upcoming release codenamesRobin Gareus
2015-11-29faderport: add two functioning actions for the mix buttonPaul Davis
2015-11-29basic structure for Faderport GUIPaul Davis
Not fully functional (or sensible yet) but the pieces are all there
2015-11-29fix OSX openFile Application DelegateRobin Gareus
allows to open Ardour via double-click on a .ardour file in Finder.
2015-11-29fix seamless midi-looping - fixes #5438Robin Gareus
well, now... - Midi-Ports have a midi-buffer. - Midi-Tracks have a midi-buffer. - Midi-tracks have a diskstream. - Midi-diskstream has a midi-ring-buffer. - Midi-tracks have a delivery - The delivery can get a reference to the actual backend-ports - The delivery calls the Midi-Port's flush() buffer to send out queued events at the end of a cycle all clear ? :) - when splitting the process-cycle: only the Ports are informed. all other objects see a "normal" short process cycle starting at "0". The offset needs to be applied early on, so that internally routed buffers push the event at the correct time when combining the buffer with immediate and async events. Luckily Port::port_offset() is a static member, available to all, objects, which allows to bridge the conceptual gap between the diskstream and the delivery. There's a snag: When there's a note-on directly at the beginning of the loop it coincides with the panic message sent when looping. The panic comes before note events, so it *should* be good. Also the final note-offs (state tracker end of loop/region) are sent 1 sample too early (smells like an off-by-one), and are hence dropped. (no matter we send a panic right after it). It should really be at the same time, just before the panic.
2015-11-28don't clear MIDI buffers during split-cyclesRobin Gareus
if dst_offset is zero, MidiBuffer::read_from() clears the buffer. copy_to_outputs() eventually calls MidiBuffer::read_from().
2015-11-28add some midi-debug printf() to the dummy backendRobin Gareus
2015-11-28fix typo in panic message, honor event-time.Robin Gareus
2015-11-28midi-panic needs to honor split-cycle buffer offset,Robin Gareus
otherwise panic message will be delivered out-of-order when seamlessly looping.
2015-11-28filling the midi playback buffer is a private operation.Robin Gareus
2015-11-27faderport: shift+encoder controls pan width (for ardour only), input trim ↵Paul Davis
now controlled by user+encoder. User is now a modifier key
2015-11-27faderport: basic panning via encoder knob.Paul Davis
Doesn't help with 2=>2 panner, where width control is also required
2015-11-27fadeport: make fader touch workPaul Davis
2015-11-26Mackie Control: Disable Selected group in User/Selected view mode to allow ↵Len Ovens
individual adjustment.
2015-11-25implement more Faderport buttons (window and fader automation). ToDo: ↵Ben Loftis
automation LEDs, fader banking
2015-11-26use human readable port-names in Mackie config.Robin Gareus
2015-11-25faderport: simpler logic for master/monitor/otherPaul Davis
When choosing master or monitor, do NOT save master or monitor as the pre_{master,monitor}_route under any circumstances. This means that master/monitor choices do not stack, and just switch between them.
2015-11-25Merge branch 'chaot4-feature_include_more_options_in_help'Paul Davis
2015-11-25Correct spelling of action names. Translation context for Reference.André Nusser
2015-11-25Add more menu entries to the 'Help' menu.André Nusser
* The functions were already implemented -- I just added the links in ardour.menu.in, corrected spelling and the link to the tracker. * The tracker link was corrected as I considered it confusing when one is not already logged in.
2015-11-25faderport: handle mute for monitor out by using monitor processor ops; try ↵Paul Davis
to blink mute button when cut-all is in effect. Still some logic bugs when switching between master, monitor and other
2015-11-25faderport: fix odd interaction when selecting master-then-monitor or ↵Paul Davis
monitor-then-master and toggling back
2015-11-25faderport: fix odd interaction when selecting master-then-monitor or ↵Paul Davis
monitor-then-master and toggling back
2015-11-25faderport: output button is a toggle between master (or monitor) and ↵Paul Davis
currently used route
2015-11-25faderport: enable "Output" button to select master out (or, with Shift, ↵Paul Davis
monitor out if it exists) as the target route
2015-11-25handle encoder changes. shift+knob = input trim. ToDo: panner controlBen Loftis
2015-11-25cruft removal from faderport codePaul Davis
2015-11-25faderport: implement fader supportPaul Davis
2015-11-25restore measured Insert latencyRobin Gareus
(XML underscore vs dash)
2015-11-25faderport: track GUI selection, use first selected route; implement mute, ↵Paul Davis
solo, rec
2015-11-25check for itstool (>= 1.0.4, -j option)Robin Gareus
2015-11-25faderport: put back the working version of operations.ccPaul Davis
2015-11-24stub file to enable nightly buildsBen Loftis
2015-11-24faderport: more global button functions addedPaul Davis
2015-11-24add goto_zero() function for BasicUIPaul Davis
2015-11-24faderport: more interesting behaviour for the play button (locate to last ↵Paul Davis
start if pressed while rolling, then keep rolling)
2015-11-24clarify a DEBUG_TRACE remarkPaul Davis
2015-11-24faderport: make loop, prev marker, next marker and marker buttons do stuffPaul Davis
2015-11-24add debug "bits" for FaderPortPaul Davis
2015-11-24faderport: allow forcing LED state for use in ::all_lights_out()Paul Davis
2015-11-24faderport: fix modifiers for rewind, stop, undo etc ; listen to session ↵Paul Davis
transport signals and display state with button LEDs; add blinking
2015-11-24fadeport: restructure button info actions to allow modifiers (shift, rewind, ↵Paul Davis
stop) and set up undo and shift-undo (redo)
2015-11-24give the faderport its own thread and event loop, rather than riding on the ↵Paul Davis
back of the MIDI UI thread in libardour