reuk
d54f7abb13
AudioPluginHost: Remove magic number
2 years ago
reuk
079c69aee7
AudioPluginHost: Allow selecting presets
2 years ago
reuk
7b61bdfba9
AudioPluginHost: Fix implicit conversion warnings
2 years ago
attila
82a31c9ccc
Linux: Enable ARA compilation
2 years ago
reuk
b060d5d947
AudioPluginHost: Fix occasional deadlocks when scanning plugins out-of-process
Observed on Ubuntu Linux. Occasionally, the loop checking the
condition_variable in the plugin scanner would spin indefinitely.
The cause appears to be that handleMessageFromWorker could be
called immediately after sendMessageToWorker, but before locking the
mutex. If this happens, gotResponse will be false during every call to
condvar.wait_for, and the loop will never exit.
The rewritten version of the scanner always resets gotResult immediately
after the condvar is woken successfully, so a call to
handleMessageFromWorker or handleConnectionLost will always cause a
subsequent call to condvar.wait_for to exit successfully.
The Superprocess class has also been refactored and extracted to avoid
a circular dependency between Superprocess and CustomPluginScanner.
2 years ago
Tom Poole
6589b6d64b
VS2022: Work around a compiler bug
3 years ago
Tom Poole
c7cabbbaba
VS2022: Work around a compiler bug
3 years ago
Tom Poole
2ec861d99e
Update licensing banners to JUCE 7
3 years ago
attila
f36949c1b2
ARA Host: Add support for scanning and hosting ARA plugins
3 years ago
Tom Poole
dea3fe60e4
Update copyright banners
3 years ago
reuk
c7a17934e3
Formatting
3 years ago
reuk
420167f3ec
AudioPluginHost: Add support for loading and saving plugin state directly
3 years ago
attila
454ff64631
AudioPluginHost: Call setUsingNativeTitleBar() before restoreWindowStateFromString()
Since the window borders are unknown for a short time after window creation on
Linux, restoreWindowStateFromString() needs to adjust the restored position
before passing it on to the XWindow system.
The adjustment is dependent on whether we use the native or the JUCE titlebar.
Hence the adjustment can only be correct if the titlebar configuration has
already happened before calling restoreWindowStateFromString().
3 years ago
ed
469a3523b7
AudioPluginHost: Remove parameter listeners in PluginDebugWindow destructor
3 years ago
reuk
b72b155443
Naming: Fix up naming of ChildProcessCoordinator and ChildProcessWorker
3 years ago
reuk
7da8b73a96
AudioPluginHost: Add subprocess plugin scanning feature
3 years ago
reuk
36e35aef3b
AudioPluginHost: Display format of loaded plugins in graph view
3 years ago
reuk
12fd1479a8
AudioPluginHost: Only add editor menu item for plugins with editors
3 years ago
reuk
31c7f42e55
AudioPluginHost: Only allow editor window resizing when this is supported by the plugin
3 years ago
reuk
b30d6b0714
AudioPluginHost: Avoid calling repaint inside parameter change callbacks
3 years ago
Tom Poole
fe4ba9071b
Set the default value of JUCE_MODAL_LOOPS_PERMITTED to 0
See BREAKING-CHANGES.txt for more details.
3 years ago
reuk
9549f8c95e
AudioPluginHost: Try to find matching plugins by uniqueId if loading initially fails
4 years ago
reuk
432cd793d7
AudioPluginHost: Avoid drawing in unsafe areas of the screen on mobile
4 years ago
reuk
de278cf555
AudioPluginHost: Allow resizing plugins from the host, and increase border size on mobile
The increased border size should make it slightly less fiddly to tap on
the window border.
4 years ago
reuk
bc660e8218
AudioPluginHost: Avoid creating editor if hasEditor returns false
4 years ago
ed
8500f40b95
AudioPluginHost: Only auto-scale VST plug-in windows
4 years ago
ed
3a0af69eff
AudioPluginHost: Added an application-level setting for scaling plug-ins on Windows
4 years ago
reuk
b1917085db
AudioProcessor: Update listener callback with change details
4 years ago
ed
f0c90e4c12
Removed some unnecessary isOnTouchDevice() checks in the AudioPluginHost
4 years ago
reuk
394c4fd475
Clang: Fix warnings when building with clang 10
4 years ago
ed
009d685179
Updated all license headers
4 years ago
reuk
4292a38327
Cleanup: Add some missing explicit constructors
5 years ago
Tom Poole
894e7d2bd2
Updated all license headers
5 years ago
Tom Poole
2d16374b14
Updated all license headers
5 years ago
ed
677e03ca15
Fixed an issue instantiating plug-ins from popup menu results in the AudioPluginHost
5 years ago
reuk
f20b93a458
AudioPluginHost: Include example plugins in project
This change adds the examples from `examples/Plugins` to the
AudioPluginHost, surfacing them as 'internal' plugins in the popup menu.
5 years ago
reuk
8433c098b9
MIDI: Add Midi Logger plugin demo PIP
We also build this into the AudioPluginHost, as a convenient way to
check the midi outputs of plugins and devices.
5 years ago
reuk
327f817b9b
Copyrights: Update commercial/gpl headers to be gpl-only
5 years ago
Tom Poole
fce4212ef5
Replaced some old macros
5 years ago
ed
59a058fdc6
Fixed some warnings flagged up when enabling -Wswitch-enum, -Wswitch-default, -Wredundant-decls, and -Wimplicit-fallthrough
5 years ago
ed
7d330ab782
Always #include JuceHeader.h from the include search path
5 years ago
ed
4b118bb45b
Added a MIDI output node to the AudioPluginHost
5 years ago
ed
a54da0b832
Fixed some more typos
5 years ago
ed
7041be0520
Save and restore plug-in DPI awareness in AudioPluginHost
5 years ago
jules
18bb120179
Did some long-overdue renaming of "filter" -> "plugin" in the AudioPluginHost demo
5 years ago
ed
c88611e5c8
Made KnownPluginList::addToMenu() and ::getIndexChosenByMenu() operate on a copy of the PluginDescription array so they are in sync
6 years ago
ed
b2a4aaa338
Updated some deprecated AudioDeviceManager methods in the AudioPluginHost
6 years ago
Tom Poole
b22db01968
Fixed an iOS compiler warning
6 years ago
jules
15567c7150
Changed the constructor of GenericAudioProcessorEditor to take a reference rather than a pointer, to match all the other AudioProcessorEditor classes. Also tweaked its implementation to resize its components horizontally to fit the width of the parent window
6 years ago
ed
92a9c37bac
Deprecated some thread unsafe methods in KnownPluginList and modernised the interface a bit
6 years ago