summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-04Change color of nudge-buttons depending on selection.Robin Gareus
Experimental. This indicates region selection: * nudge region(s): red * nudge playhead or marker(s): default gray This does not indicate marker selection (nudge marker vs playhead), nor does it change when primary-modifier is held (force playhead nudge).
2018-10-04Fix French translation #7665Robin Gareus
2018-10-04remove LTC port parameter, since it's no longer a thing.Paul Davis
This commit does not remove this concept from the libs/ardour/engine_state_controller code, which is used exclusively by Waves Track Live (to the extent that this can be said to be "used").
2018-10-04add new ::update_interval() method for transport masters, and use in shared ↵Paul Davis
::speed_and_position() implementation
2018-10-04fix error introduced in MTC transport masterPaul Davis
2018-10-04Remove cruftRobin Gareus
2018-10-04Unhardcode and increase bindable Lua-script-action countRobin Gareus
2018-10-04Sort Factory/Lua-script session-templatesRobin Gareus
2018-10-04Sort Session templates alphabeticallyRobin Gareus
2018-10-04Handle generic-midi bindings per session.Robin Gareus
This allows to special-cases session-specific control-surface state. e.g. midi-learn. Only restore midi-learned, session-specific, bindings when loading a session with generic-midi enabled. Also dis/re-enable generic-midi resets midi-learned, but no other session-independent settings. This also handles the edge case: 1) load global config, generic-midi = ON, w/ bindings. state is remembered as cpi->state 2) load session-condig, generic-midi = OFF, cpi->state is retained 3) user enables the surface, cpi->state from (1) is applied. -> invalid bindings applied -> fail
2018-10-04Persistent ctrl-surface stateRobin Gareus
Keep latest surface configuration, regardless if surface is active or being deactivated. Current state after de-activation is retained. Currently state loaded from a session overrides global state from global preferences, if the surface is marked active in the session. This is to allow midi-learn. generic-midi and session-specific midi-learn will require additional work.
2018-10-03Prevent excessive meter redraws for inactive meters at zeroRobin Gareus
2018-10-03Properly initialize midi-metersRobin Gareus
Midi meters are using linear 0..1 range, (not decibels, no log-scale falloff). If a track is deactivated, run() is never called. the queued reset never executed and the meter remained at the initialization default -inf (visually it looked like a pegged meter).
2018-10-03Remove Transport > TimeMaster toggle from menuRobin Gareus
The checkbox is not kept in sync with Session > Properties > Timecode > JACK Time Master besides, it relies on JACK, relies on ardour being the first jack client and also is mostl useless due to tempo-ramps not being supported by many jack clients.
2018-10-03Prevent adding aux-sends to master or monitorRobin Gareus
2018-10-02Fix weird behavior in playhead_x_to_grid: use return value from snap_to_grid.Ben Loftis
2018-10-02Include Track-number with stem-exports, if track-numbers are present.Robin Gareus
2018-10-02Add a GUI option to enable boxy button styleRobin Gareus
2018-10-02Prepare a boxy, no round borders, button-styleRobin Gareus
2018-10-02Fix context-menu item "bus" = audio and midi busses.Robin Gareus
Hide/show logic uses "not track". This results in matching both audio and midi busses.
2018-10-02Fix false-positive duplicate format detectionRobin Gareus
Previously, stem-exports of more than 1 channel always included the export-format, even if only one format was exported.
2018-10-02More correct fix for 8bfbef4: the check was already there; just needed to ↵Ben Loftis
set the dirty flag.
2018-10-02Fix deadlock when no region boundaries are selected in the Snap prefs.Ben Loftis
2018-10-02ipw: Fix race condition with polling the cancel state of the dialogDamien Zammit
Sometimes the interthread process window dialog reports "cancelled" when it was not actually cancelled, it was just hidden and reshown, Since we are polling the cancel state interthread, we must reset the cancel status BEFORE the dialog is shown, and never toggle the cancel state unless it is a true cancel action by the user.
2018-10-02libptformat: Add ability to reuse object && add path to ptf to apiDamien Zammit
2018-10-02Remove a call to 'fst_audio_master_idle()'John Emmas
Nobody seems quite sure why it's needed but it seems to be crashing a lot of plugins:- http://tracker.ardour.org/view.php?id=7668
2018-09-30Fix Mixbus master-bus tape-saturation controllableRobin Gareus
2018-09-30Adapt our remaining MSVC projects for 'boost::atomic' (in case it later gets ↵John Emmas
extended to the other libs) Stage 3 of 3
2018-09-30Adapt our remaining MSVC projects for 'boost::atomic' (in case it later gets ↵John Emmas
extended to the other libs) Stage 2 of 3 (more to follow)
2018-09-30Adapt our remaining MSVC projects for 'boost::atomic' (in case it later gets ↵John Emmas
extended to the other libs) Stage 1 of 3 (more to follow)
2018-09-29Add support (in our MSVC projects) for using 'boost::atomic'John Emmas
(only done "where necessary" for the moment - more to follow...)
2018-09-28FP8/16: include makeup gain controlRobin Gareus
2018-09-27MCP: Fix up the feedback for the view selection buttons.Albert Graef
2018-09-27MCP: Allow the current bank to move right one channel even if this results ↵Albert Graef
in a partial bank. Rationale: This change is trivial, but Ardour's behavior of refusing to move right one channel unless a full bank remains has been there for a long time, and there are probably good reasons for it. This design was likely conceived when all MCP-compatible devices had banks of 8 faders anyway. However, with the advent of affordable single-strip devices like the X-Touch ONE it becomes a real issue. Single-strip devices can only access the first channel in the current bank, so relaxing this restriction is the easiest way to enable such devices to access all strips, while still maintaining the usual bank size of 8. Note that maintaining a bank size of 8 is beneficial even with single-strip devices for several reasons: - It allows use of the bank switch buttons to flip through a large number of strips more quickly. - It maintains compatibility with existing device descriptions. E.g., the X-Touch ONE can be used with the existing X-Touch device description without any ado. - Most importantly, it maintains compatibility with other MCP-compatible controllers which do have 8 strips and may be connected to Ardour at the same time. E.g., one might want to use an X-Touch Mini, or even a full-size X-Touch along with the X-Touch ONE in some use cases. Changing the bank size to 1 affects all connected MCP devices, so you'd rather keep the bank size to 8 in such scenarios. (Ardour should preferably have separate bank size settings for each connected MCP device, but that isn't possible right now since only one MCP device description can be active at the same time.)
2018-09-27MCP: Fix up the feedback for the bank left/right buttons.Albert Graef
2018-09-27show last received and when for timecode timestamps in transport masters widgetPaul Davis
2018-09-27add name editing for transport mastersPaul Davis
2018-09-27use new TransportMaster::speed_and_position() APIPaul Davis
2018-09-27consolidate all transport masters on a SafeTime object that is a member of ↵Paul Davis
the TransportMaster base class. This seems to have broken some aspects of chasing/locking
2018-09-27change type of MIDI::Parser::position signal to include timestampPaul Davis
2018-09-27more objectification for SafeTimePaul Davis
2018-09-27initial hacks towards a truly thread-safe SafeTime object, using boost::atomicPaul Davis
2018-09-25VST-state, set/restore program before loading chunk.Robin Gareus
This may fix some issues with VST state being restored incorrectly when a plugin-preset was loaded.
2018-09-25Add script to exercise PI-stats interfaceRobin Gareus
2018-09-25Add Lua bindings to query DSP load statisticsRobin Gareus
2018-09-25Fix/tweak various DSP-load window issuesRobin Gareus
* update when window is visible and session-changes * drop connections to prevent multiple callbacks * catch session-deletion, skip updates
2018-09-25Accommodate newly introduced source(s) in our MSVC project (gtk2_ardour)John Emmas
2018-09-25Add a reset-all DSP-load-stats buttonRobin Gareus
2018-09-25Add a window that shows DSP usage of all pluginsRobin Gareus
Currently hidden, use Editor:access_action("Window", "toggle-plugin-dsp-load")
2018-09-25Separate Plugin DSP load UI implementationRobin Gareus