JUCE
JUCE copied to clipboard
JUCE is an open-source cross-platform C++ application framework for desktop and mobile applications, including VST, VST3, AU, AUv3, LV2 and AAX audio plug-ins.
building a plugin as a standalone application with JACK support, it seems that the connection management logic is ~~bogus~~^W conflicting with JACK's idea of connection management. One core idea of...
### Detailed steps on how to reproduce the bug - Use juce::NSViewComponent with an NSView that requires keyboard input. I've tried setting: ```c++ setWantsKeyboardFocus(false); setMouseClickGrabsKeyboardFocus(false); giveAwayKeyboardFocus(); unfocusAllComponents(); setFocusContainerType(FocusContainerType::none); ``` But,...
I have a working project setup for JUCE CMake + Android which you do not support yet, at https://github.com/atsushieno/android-juce-cmake . It is almost without changes to JUCE 6.0.6, except for...
### Detailed steps on how to reproduce the bug Give a TextEditor object a non-zero border size (specifically a non-zero left border size) using `TextEditor::setBorder` - this results in the...
Thank you for submitting a pull request. Please make sure you have read and followed our contribution guidelines (.github/contributing.md in this repository). Your pull request will not be accepted if...
### Detailed steps on how to reproduce the bug - Open the AU Plugin in GarageBand or Logic on an intel or M1 mac. - Click on the PopUpMenu. -...
This PR adds virtual keyword to relevant functions in the Viewport class so it can be used as a base class to create custom behaviour. The use case for making...
### Detailed steps on how to reproduce the bug On line [523 of juce_StandaloneFilterWindow.h](https://github.com/juce-framework/JUCE/blob/d24c2729268e322f3ba1b5070eb96ab232d7f6ba/modules/juce_audio_plugin_client/Standalone/juce_StandaloneFilterWindow.h#L529), SettingsComponent passes `true` as the argument to the parameter `bool showMidiInputOptions` of the AudioDeviceSelectorComponent. This means...
### Detailed steps on how to reproduce the bug Attempting to list plugins, if there's a VST3 which cannot be loaded (in this case, due to incompatible architecture, with the...
[module-libs-issue.zip](https://github.com/WeAreROLI/JUCE/files/3799068/module-libs-issue.zip) [JUCE_Module_Format.txt](https://github.com/WeAreROLI/JUCE/blob/master/modules/JUCE%20Module%20Format.txt) says it supports precompiled binaries: ``` Precompiled libraries --------------------- Precompiled libraries can be included in a module by placing them in a libs/ subdirectory. The following directories are...