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 is an optimization for the Lagrange Interpolator in DelayLine (file juce_DelayLine.h)

### Detailed steps on how to reproduce the bug - Create a new plugin with the Projucer. - Add `juce::Desktop::getInstance().setGlobalScaleFactor (0.5f);` in the editor constructor. - Open the VST3 plugin...

### Detailed steps on how to reproduce the bug After installing Projucer I can't create or open projects, what I did was: 1. Downloaded JUCE - I tried both cloning...

### Detailed steps on how to reproduce the bug This describes the same steps as Issue #597 _(Because I cannot reopen that issue)_ - Set CodeSigning Identity to "" (Empty...

### Detailed steps on how to reproduce the bug Create an AU plugin project with projucer Put a webview in it, load a website with a text field Launch the...

### Detailed steps on how to reproduce the bug Create an AU plugin project with projucer Put a webview in it, load any website Launch the AU in Ableton Live...

`VST3ClientExtensions.setComponentHandler` is not called in Studio One. `IComponentHandler` is required for PreSonus Plug-In Extensions. This fix supposed to solve this. The PR is based on [this discussion](https://forum.juce.com/t/vst3clientextensions-issue-with-audioprocessor-being-null/50822/4).

### Detailed steps on how to reproduce the bug if you call getLocalBounds inside the repaint() function of a component declared and added to the pluginEditor, the returned rectangle will...

### Detailed steps on how to reproduce the bug I get the following data race in logic when using the thread sanitiser: ``` Data race (pid=88833) Write of size 8...

See: https://forum.juce.com/t/how-to-put-a-tooltip-for-a-popupmenu-item/54529 For now, it is impossible to add a tooltip for each item of a `PopupMenu` without a complex implementation of `CustomComponent`. Now we can add it by setting...