f771679ade
Fix thinkos in cubasish theme
2020-01-14 12:17:11 -06:00
06567c7b82
Recover caineville theme
2020-01-14 12:03:09 -06:00
a8a2f9df12
Recover clear_gray theme
2020-01-14 12:03:09 -06:00
756c5a5ee1
Add some example Lua scripts
2020-01-14 17:04:04 +01:00
2579e70f46
remove debug output
2020-01-13 23:19:52 -07:00
9f474953fd
prevent everything except the name column from changing selection in EditorRoutes
2020-01-13 23:13:14 -07:00
659683c686
store some/most of the TreeViewColumn pointers for EditorRoutes in the parent object
2020-01-13 23:13:14 -07:00
4b9d6ff498
Add Lua bindings to inspect the Tempo Map
2020-01-14 03:05:22 +01:00
bca825e515
NO-OP: whitespace
2020-01-14 00:52:24 +01:00
34c4f7b8ee
Fix Ardour VAMP plugins (FFT)
...
Bug was introduced in 8ed33f1bc7
symbol visibility setting
in CFLAGS, CXXFLAGS was overridden. This resulted in publicly exposed
and bound kiss_fft symbols in libqm-dsp.
At runtime those symbols were resolved using previously bound
symbols in libcodec (see below) that uses a mismatching implementation
(ardour/qm-dsp uses -Dkiss_fft_scalar=double)
#0 0x00007fffea793d40 in kiss_fftr () at /usr/lib/x86_64-linux-gnu/libcodec2.so.0.8.1
#1 0x00007fffcf4516ab in FFTReal::D::forward(double const*, double*, double*) (this=0x5555571d73a0, ri=0x55555a734810, ro=0x55555a7262b0, io=0x55555a728590)
at ../libs/qm-dsp/dsp/transforms/FFT.cpp:121
#2 0x00007fffcf4510fd in FFTReal::forward(double const*, double*, double*) (this=0x555559868190, ri=0x55555a734810, ro=0x55555a7262b0, io=0x55555a728590)
at ../libs/qm-dsp/dsp/transforms/FFT.cpp:186
2020-01-14 00:52:24 +01:00
2c9b301912
Recover Unastudia theme.
2020-01-13 17:12:55 -06:00
70c53cba49
Recover cubasish theme
2020-01-13 17:12:55 -06:00
3f92b8152a
Recover Blueberry Milk theme
2020-01-13 17:12:55 -06:00
cb156db99d
Sort palette colors by name only
2020-01-13 17:12:55 -06:00
7f80883eb1
Add more clues to port themes to new paradigm
2020-01-13 17:12:55 -06:00
87f79b3891
Fix more default theme colors
2020-01-13 17:12:55 -06:00
ed5ec7cb3f
Tweak the tooltip for PDC button
2020-01-13 17:12:55 -06:00
b83c4f2fa4
Fix C++11ism
2020-01-13 22:47:50 +01:00
8112d6472e
Drop references held by any GUI Lua script after execution
2020-01-13 20:25:00 +01:00
fa2c935581
Fix re-packing of toolbar meter
...
This fixes a gtk-warning when loading a session from a
running instance:
IA__gtk_table_attach: assertion 'child->parent == NULL' failed"
2020-01-13 20:17:58 +01:00
fd4c35d46a
Add rubberband Lua bindings to process ardour regions
2020-01-13 17:57:35 +01:00
868d752b4f
Processor list should use the same bg color as other lists
2020-01-12 18:13:57 -06:00
6d62352673
Add missing theme elements, and fix some thinkos
2020-01-12 18:13:52 -06:00
30553a2675
Apply some missing widget names
2020-01-12 18:13:47 -06:00
66e24f3333
Fix preference pane to access for external-sync
2020-01-12 18:05:16 +01:00
6487d6c62b
Fix external timecode GUI display
...
Only show mis/matching TC if FPS has been detected and
timecode master is locked.
2020-01-12 18:04:12 +01:00
c87bec07cd
Fix thinko in eee01188
(engine pulse spacing)
2020-01-12 00:16:19 +01:00
e508bb1396
Add test synth to debug capture alignment
2020-01-11 22:33:32 +01:00
03c4335c1e
fix drawing of zero-length notes
...
Note that the result is too narrow to be manipulated, though it can be moved
2020-01-11 10:57:21 -07:00
d79e869da8
use "extends to numeric_limits<Beats>::max()" rather than "zero length" for nascent (incoming) notes
2020-01-11 10:57:21 -07:00
8547a23e9c
removal incorrect/unnecessary forward decl
2020-01-11 10:57:21 -07:00
929bd7c8ac
use Note::end_time() == numeric_limits<Beats>::max() as the indicator that a note is in-process w.r.t. recording
...
We used to use length() == 0, but this clashes with actual zero-length notes
2020-01-11 10:57:21 -07:00
00150e105c
Fix AFL position
...
* update AFL position when preference changes
* "after post-fader processors (before pan)" is before
the main-out (not at the end).
* Fix "immediately post-fader":
The amp, when added was the last element. ++after_end then
made the iterator point to .end()
This likely worked in the past when the monitor send was added
immediately after adding the fader/amp before any other processors.
2020-01-11 17:48:42 +01:00
Carl Hetherington
1f14a9d9a5
Scale the port matrix with the GUI/font-scaling setting.
2020-01-11 01:17:42 +01:00
a883afbd64
Clarify insert-time option
2020-01-10 18:59:09 +01:00
abc6f24d10
Stop engine for new session creation
...
This restores Ardour5 behavior and works around a missing "OK"
button in the engine-dialog.
2020-01-10 18:11:42 +01:00
afe52fbff5
Special case JACK, sample-rate cannot be changed for new sessions
2020-01-10 02:14:30 +01:00
242774eada
Allow to configure sample-rate of new sessions
...
When creating a session from the Editor (after Session > Close,
or directly via Session > New) the engine-dialog needs to be displayed
to allow configuring the sample-rate.
This also consolidates scripted session setup: meta_session_setup()
is now called from build_session(), instead of all callers.
2020-01-09 23:53:07 +01:00
Nikolaus Gullotta
c2da64f7ad
NOP: Trim whitespace and convert tabs to spaces
2020-01-09 14:01:37 -06:00
Nikolaus Gullotta
dac127c897
Update reset_mixer script to use new well-known controls
2020-01-09 13:54:43 -06:00
0771717dd5
Remove unused variable
2020-01-09 18:21:48 +01:00
16549e86e3
Latency debug script: include MIDI ports
2020-01-09 18:21:48 +01:00
Nikolaus Gullotta
0f85a33487
Fix typo in Lua binding for compressor enable control
2020-01-09 10:22:00 -06:00
0e42708685
expand comment to include (more of?) the full story about uncombining and copies
2020-01-08 22:21:21 -07:00
965bf74f2b
expand the test used to decide if we need to make copies when uncombining a compound region
2020-01-08 22:21:21 -07:00
1c86b0ce13
never remove entries from the CompoundAssociation map
2020-01-08 22:21:21 -07:00
7373e3ac14
add concept of an owner region (by ID) to PlaylistSource
2020-01-08 22:21:21 -07:00
d1c2098c11
fix bugs (thinkos?) that confused PlaylistSource's id() with its original()
2020-01-08 22:21:21 -07:00
0098072904
NOOP: reindent
2020-01-08 22:21:21 -07:00
4d6ad4a499
increase explicit refcnt for playlists when used by a PlaylistSource
2020-01-08 22:21:21 -07:00