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.
I've included [libwebp](https://developers.google.com/speed/webp) [07b7185](https://github.com/MajorMurphy/libwebp/commit/07b71853adbdcba2f7286df86e4dfd02b1fd8a52), which closes #274 Supports decoding and encoding 24-bit and 32-bit RGB and ARGB images. Encoding by default is lossless. However lossy encoding is possible by calling...
[juce\_runtime\_arch\_detection.cpp](https://github.com/juce-framework/JUCE/blob/6056c686b8264d00022825005262618e0f0ade00/extras/Build/CMake/juce_runtime_arch_detection.cpp#L65) currently identifies `ppc64le` as `ppc64`, which causes JUCE to use the directory name `ppc64-linux` for VST 3 plugin contents. However, VST 3 [specifies that `uname -m` should be used](https://steinbergmedia.github.io/vst3_dev_portal/pages/Technical+Documentation/Locations+Format/Plugin+Format.html#for-the-linux-platform)...
### Detailed steps on how to reproduce the bug With the code below, when I rapidly scroll the mouse wheel and move the mouse into and out of the component's...
### Why do you want this? It's an emerging web-directed image format made by Google, and it's apparently better than PNGs. Also, [QT supports it](http://doc.qt.io/qt-5/qtimageformats-index.html), but we all know JUCE...
### Detailed steps on how to reproduce the bug 1) Open ARAPluginDemo example in Projucer 2) Set target macOS to 13 (resolves JUCE's `static_assert` on the new linker on Xcode...
Currently, on platforms that don't have an implementation of `SIMDNativeOps`, `SIMDRegister` is not available. This PR makes functionality gracefully degrade by adding a fallback implementation of `SIMDNativeOps` that simply calls...
Adds the missing functionality of being able to send additional custom HTTP headers with WebBrowserComponent requests on Linux as described in the [documentation](https://docs.juce.com/master/classWebBrowserComponent.html#a703f3232f580d72125dea4db8e5a0512). See forum post: [Juce WebBrowserComponent not sending...
- Removes duplicate apt dependency (`libxcursor-dev`) - Splits apt dependencies onto new lines to make it easier to spot duplicates
Fixes #1094. The embedded copy of libpng in [juce\_graphics/image\_formats](https://github.com/juce-framework/JUCE/tree/6c32c4df87ae34f7387445cf2ef9410db62c438c/modules/juce_graphics/image_formats) doesn't contain code for processor-specific hardware optimizations, but it may still try to use them in some cases, resulting in linker...
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...