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.
Console Application never set the product_name
### Detailed steps on how to reproduce the bug `juce::Grid`'s item bounds calculation with rounding leads to inconsistent behavior on Windows regarding rendering of the gap property. It seems to...
Currently, it's possible to daisy-chain property setters on a value tree: ```cpp juce::ValueTree {"Tree"} .setProperty("foo", 10, nullptr) .setProperty("bar", 20, nullptr); ``` This PR adds this behaviour to the child-adders as...
Adds default `nullptr` value for all `UndoManager*` arguments in public-facing `ValueTree` methods. Having to explicitly supply the `nullptr` whenever you interact with a value tree makes code very messy, and...
This PR adds a CMake function `juce_install_plugin` which creates install rules & components for each plugin format. Similar to the copy-after-build functionality, there are `JUCE__INSTALL_DEST` target properties for each format,...
### Detailed steps on how to reproduce the bug Create a Unity plugin project and add the android exporter. ### What is the expected behaviour? The output from Android Studio...
### Detailed steps on how to reproduce the bug 1. Add a dsp::Limiter to a project that makes sound, and set its threshold to something like 100 dBFS, and set...
### Detailed steps on how to reproduce the bug - Input method word alternative box not displaying on Win11. - Input method word alternative box not displaying in correct position...
### Detailed steps on how to reproduce the bug When building for Linux ARM 64bit target, it correctly sets `JUCE_ARM` but not `JUCE_64BIT` ### What is the expected behaviour? The...
### Detailed steps on how to reproduce the bug A 'false' boolean is returned when using KeyPress::isKeyCurrentlyDown('=') or KeyPress::isKeyCurrentlyDown('\\\\') in Windows regardless of those keys' states. This is due to...