JUCE icon indicating copy to clipboard operation
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.

Results 327 JUCE issues
Sort by recently updated
recently updated
newest added
trafficstars

This assertion would trigger if there are tabs in the area strings. jassert (s.size() == strings[0].size()); // all rows must have the same number of columns For readability formatting the...

### Detailed steps on how to reproduce the bug 1. Create an Android audio standalone app with DSP Convolution which plays audio 2. Enable the DSP Convolution Impulse Effect 3....

### Detailed steps on how to reproduce the bug 1. Create an iOS audio app with microphone input, audio output and background audio enabled. 2. Pair Bluetooth headphones with the...

### Detailed steps on how to reproduce the bug Run any JUCE based app which is using class juce_Image under Xcode thread sanitizer(turn on undefined behaviour checkbox). Observe pointer overflow...

Now the appendCharPointer method only preallocates more space if the appended data won't fit into the already preallocated space. Now the juce::String copy constructor always copies the string. Now the...

Below is an example of the bug. When dragging from a DragAndDropContainer::startDragging under Linux, there is a short period before the image is rendered correctly: ![draganddrop_juce_ghost_image_flicker](https://github.com/juce-framework/JUCE/assets/12004932/2b732df1-3274-42b1-82e4-0141c3fed048) Linux also loses the...

JUCE currently uses multiple glibc-specific features when JUCE_LINUX is defined. Instead, this pull request adds two new macros in juce_TargetPlatform.h: JUCE_GLIBC and JUCE_MUSL. JUCE_GLIBC is defined if the system is...

### Detailed steps on how to reproduce the bug [This](https://github.com/werman/noise-suppression-for-voice) project calls ```juce_add_plugin```: ``` juce_add_plugin(${PLUGIN_NAME} VERSION ${BUILD_VERSION} PLUGIN_NAME "RNNoise suppression for voice" COMPANY_NAME werman BUNDLE_ID my.werman.noise_suppression_for_voice COPY_PLUGIN_AFTER_BUILD TRUE PLUGIN_MANUFACTURER_CODE Werm...

Before this tweak, a juce plugin target which had a `target_compile_definitions` entry with an escaped semicolon `\;` would end up generating format-specific targets which not only had a preprocessor definition...

### Detailed steps on how to reproduce the bug 1. Create a `juce::TextEditor`, enable multi-line support and set the text to `"a"`. 2. Set a breakpoint in `juce::TextEditor::getTotalTextHeight()` 3. Type...