diff --git a/BREAKING-CHANGES.txt b/BREAKING-CHANGES.txt index ecdc63a1b6..3b89431975 100644 --- a/BREAKING-CHANGES.txt +++ b/BREAKING-CHANGES.txt @@ -1,7 +1,7 @@ JUCE breaking changes ===================== -Develop Branch +Version 5.1.2 ============= Change @@ -15,7 +15,7 @@ Possible Issues Plug-ins: DAW projects with automation data written by an AudioUnit, AudioUnit v3 VST3 or AAX plug-in built with JUCE version 5.1.1 or earlier may load incorrectly when opened by an AudioUnit, AudioUnit v3, VST3 or AAX plug-in -built with JUCE version 5.2.0 and later. +built with JUCE version 5.1.2 and later. Hosts: The AudioPluginInstance::getParameterNumSteps method now returns correct values for AU and VST3 plug-ins. diff --git a/ChangeList.txt b/ChangeList.txt index 6171704bea..6345d60f49 100644 --- a/ChangeList.txt +++ b/ChangeList.txt @@ -1,56 +1,70 @@ -== Major JUCE features and updates == +== Major JUCE features and updates == This file just lists the more notable headline features. For more detailed info -about minor changes and bugfixes, please see the git log! - -Version 5.1.1 - - Fixed Windows live build engine on Visual Studio 2017 - - Fixed a compiler error in juce_MathFunctions.h in Visual Studio 2013 - - Fixed a potential crash when using the ProcessorDuplicator - - Fixed a compiler-error in Filter::IIR - - Fixed an issue where the WavFileFormatWriter could not create files with discrete channels - - Fixed an issue where a window which is beneath a hidden window would not receive any clicks on Linux - - Altered the format of BREAKING-CHANGES.txt to display better on GitHub - - Projucer: Fixed an issue in exporter tilde expansion - - Fixed compiler errors when building the DSP module with a static version of FFTW - - Fixed an audio glitch when bypassing the convolution engine - - Fixed an issue where a JUCE VST2 would not correctly report that it supports resizing of it’s plugin editor - - Various documentation tweaks and fixes - -Version 5.1.0 - - Release of the JUCE DSP module - - Multichannel audio readers and writers - - Plugin editor Hi-DPI scaling support - - Major improvements to Projucer module search paths - - Added Projucer support for iOS app groups - - Added support for AVFoundation and deprecated the use of Quicktime - - Added a new real-time audio thread priority for Android - - Various Projucer UI fixes - - Various documentation fixes - - Various minor improvements and bug fixes - -Version 5.0.2 - - Improved project save speed in the Projucer - - Added option to save individual exporters in the Projucer - - Added the ability to create custom colour schemes for the Projucer’s code editor - - Minor fixes to JUCE’s SVG parser - - Various bug fixes in the way JUCE handles Hi-DPI monitors - - Improved code browsing in Visual Studio Exports - - Improved the handling of audio device buffer size changes on iOS - - Fixed bug in the Win32 FileChooser dialog when selecting a nonexistent root drive - - Fixed a Projucer crash when saving projects with no targets - - Fixed a bug where Projucer generated Makefiles would not trigger a recompilation when header files had changed - - The standalone plugin target is now compatible with effect plug-ins - - Fixed an issue where it was not possible to use the live build engine on plugin projects - - Improved the way the Projucer’s live-build engine searches for platform headers on Windows - - Fixed an issue where the Projucer would complain about not having internet even if the user had a license - - Fixed a use-after-free in the AUv3 wrapper - - Fixed an issue where the channel layout would not be reported correctly in the AUv3 wrapper - - Fixed a potential memory overrun issue when hosting VST2 plugins with more than eight channels - - Fixed a problem with the Mac main menu bar showing menus in the wrong position - - Various Projucer UI fixes - - Various documentation fixes +about minor changes and bugfixes, please see the git log! + +Version 5.1.2 + - Fixed multiple plugin-resizing bugs + - Added support for AUv3 MIDI and screen size negotiation + - Added support for Xcode 9 and iOS 11 + - Added an In-App Purchases module + - Added backwards compatible constexpr support + - Standalone plug-in improvements + - Better .jucer file change monitoring in the Projucer + - Increased the speed of AU parameter lookup + - Improved the Android thread management when dealing with web requests + - Better denormal support + - Plug-in parameters can be explicitly marked as continuous or discrete + - Multiple documentation updates + +Version 5.1.1 + - Fixed Windows live build engine on Visual Studio 2017 + - Fixed a compiler error in juce_MathFunctions.h in Visual Studio 2013 + - Fixed a potential crash when using the ProcessorDuplicator + - Fixed a compiler-error in Filter::IIR + - Fixed an issue where the WavFileFormatWriter could not create files with discrete channels + - Fixed an issue where a window which is beneath a hidden window would not receive any clicks on Linux + - Altered the format of BREAKING-CHANGES.txt to display better on GitHub + - Projucer: Fixed an issue in exporter tilde expansion + - Fixed compiler errors when building the DSP module with a static version of FFTW + - Fixed an audio glitch when bypassing the convolution engine + - Fixed an issue where a JUCE VST2 would not correctly report that it supports resizing of it’s plugin editor + - Various documentation tweaks and fixes + +Version 5.1.0 + - Release of the JUCE DSP module + - Multichannel audio readers and writers + - Plugin editor Hi-DPI scaling support + - Major improvements to Projucer module search paths + - Added Projucer support for iOS app groups + - Added support for AVFoundation and deprecated the use of Quicktime + - Added a new real-time audio thread priority for Android + - Various Projucer UI fixes + - Various documentation fixes + - Various minor improvements and bug fixes + +Version 5.0.2 + - Improved project save speed in the Projucer + - Added option to save individual exporters in the Projucer + - Added the ability to create custom colour schemes for the Projucer’s code editor + - Minor fixes to JUCE’s SVG parser + - Various bug fixes in the way JUCE handles Hi-DPI monitors + - Improved code browsing in Visual Studio Exports + - Improved the handling of audio device buffer size changes on iOS + - Fixed bug in the Win32 FileChooser dialog when selecting a nonexistent root drive + - Fixed a Projucer crash when saving projects with no targets + - Fixed a bug where Projucer generated Makefiles would not trigger a recompilation when header files had changed + - The standalone plugin target is now compatible with effect plug-ins + - Fixed an issue where it was not possible to use the live build engine on plugin projects + - Improved the way the Projucer’s live-build engine searches for platform headers on Windows + - Fixed an issue where the Projucer would complain about not having internet even if the user had a license + - Fixed a use-after-free in the AUv3 wrapper + - Fixed an issue where the channel layout would not be reported correctly in the AUv3 wrapper + - Fixed a potential memory overrun issue when hosting VST2 plugins with more than eight channels + - Fixed a problem with the Mac main menu bar showing menus in the wrong position + - Various Projucer UI fixes + - Various documentation fixes - Various minor improvements and bug fixes Version 5.0.1 diff --git a/extras/Projucer/Projucer.jucer b/extras/Projucer/Projucer.jucer index 69c9b27a7a..743df4b33b 100644 --- a/extras/Projucer/Projucer.jucer +++ b/extras/Projucer/Projucer.jucer @@ -1,7 +1,7 @@ diff --git a/modules/juce_audio_basics/juce_audio_basics.h b/modules/juce_audio_basics/juce_audio_basics.h index a6c7b85f1e..03c99363f6 100644 --- a/modules/juce_audio_basics/juce_audio_basics.h +++ b/modules/juce_audio_basics/juce_audio_basics.h @@ -31,7 +31,7 @@ ID: juce_audio_basics vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE audio and MIDI data classes description: Classes for audio buffer manipulation, midi message handling, synthesis, etc. website: http://www.juce.com/juce diff --git a/modules/juce_audio_devices/juce_audio_devices.h b/modules/juce_audio_devices/juce_audio_devices.h index 6dddca865e..9b26405daf 100644 --- a/modules/juce_audio_devices/juce_audio_devices.h +++ b/modules/juce_audio_devices/juce_audio_devices.h @@ -31,7 +31,7 @@ ID: juce_audio_devices vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE audio and MIDI I/O device classes description: Classes to play and record from audio and MIDI I/O devices website: http://www.juce.com/juce diff --git a/modules/juce_audio_formats/juce_audio_formats.h b/modules/juce_audio_formats/juce_audio_formats.h index 4fa9e79eeb..c1664704b2 100644 --- a/modules/juce_audio_formats/juce_audio_formats.h +++ b/modules/juce_audio_formats/juce_audio_formats.h @@ -35,7 +35,7 @@ ID: juce_audio_formats vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE audio file format codecs description: Classes for reading and writing various audio file formats. website: http://www.juce.com/juce diff --git a/modules/juce_audio_plugin_client/juce_audio_plugin_client.h b/modules/juce_audio_plugin_client/juce_audio_plugin_client.h index 8dcb2d4adf..c9e017bf71 100644 --- a/modules/juce_audio_plugin_client/juce_audio_plugin_client.h +++ b/modules/juce_audio_plugin_client/juce_audio_plugin_client.h @@ -35,7 +35,7 @@ ID: juce_audio_plugin_client vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE audio plugin wrapper classes description: Classes for building VST, VST3, AudioUnit, AAX and RTAS plugins. website: http://www.juce.com/juce @@ -72,7 +72,7 @@ DAW projects with automation data written by an AudioUnit, VST3 or AAX plug-in built with JUCE version 5.1.1 or earlier may load incorrectly when opened by an AudioUnit, VST3 or AAX plug-in built - with JUCE version 5.2.0 and later. + with JUCE version 5.1.2 and later. */ #ifndef JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE #define JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE 0 diff --git a/modules/juce_audio_processors/juce_audio_processors.h b/modules/juce_audio_processors/juce_audio_processors.h index 4645514b88..ff0b4f730e 100644 --- a/modules/juce_audio_processors/juce_audio_processors.h +++ b/modules/juce_audio_processors/juce_audio_processors.h @@ -35,7 +35,7 @@ ID: juce_audio_processors vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE audio processor classes description: Classes for loading and playing VST, AU, or internally-generated audio processors. website: http://www.juce.com/juce diff --git a/modules/juce_audio_utils/juce_audio_utils.h b/modules/juce_audio_utils/juce_audio_utils.h index d8816ef2d6..0707c72b16 100644 --- a/modules/juce_audio_utils/juce_audio_utils.h +++ b/modules/juce_audio_utils/juce_audio_utils.h @@ -35,7 +35,7 @@ ID: juce_audio_utils vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE extra audio utility classes description: Classes for audio-related GUI and miscellaneous tasks. website: http://www.juce.com/juce diff --git a/modules/juce_blocks_basics/juce_blocks_basics.h b/modules/juce_blocks_basics/juce_blocks_basics.h index 700592fbc2..07df52e68c 100644 --- a/modules/juce_blocks_basics/juce_blocks_basics.h +++ b/modules/juce_blocks_basics/juce_blocks_basics.h @@ -31,7 +31,7 @@ ID: juce_blocks_basics vendor: juce - version: 5.1.1 + version: 5.1.2 name: Provides low-level control over ROLI BLOCKS devices description: JUCE wrapper for low-level control over ROLI BLOCKS devices. website: http://developer.roli.com diff --git a/modules/juce_box2d/juce_box2d.h b/modules/juce_box2d/juce_box2d.h index 2eb94954aa..7c2902e472 100644 --- a/modules/juce_box2d/juce_box2d.h +++ b/modules/juce_box2d/juce_box2d.h @@ -35,7 +35,7 @@ ID: juce_box2d vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE wrapper for the Box2D physics engine description: The Box2D physics engine and some utility classes. website: http://www.juce.com/juce diff --git a/modules/juce_core/juce_core.h b/modules/juce_core/juce_core.h index 8cd5913622..f340710800 100644 --- a/modules/juce_core/juce_core.h +++ b/modules/juce_core/juce_core.h @@ -32,7 +32,7 @@ ID: juce_core vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE core classes description: The essential set of basic JUCE classes, as required by all the other JUCE modules. Includes text, container, memory, threading and i/o functionality. website: http://www.juce.com/juce diff --git a/modules/juce_core/system/juce_StandardHeader.h b/modules/juce_core/system/juce_StandardHeader.h index c658514eb6..f194fe4477 100644 --- a/modules/juce_core/system/juce_StandardHeader.h +++ b/modules/juce_core/system/juce_StandardHeader.h @@ -29,7 +29,7 @@ */ #define JUCE_MAJOR_VERSION 5 #define JUCE_MINOR_VERSION 1 -#define JUCE_BUILDNUMBER 1 +#define JUCE_BUILDNUMBER 2 /** Current Juce version number. diff --git a/modules/juce_cryptography/juce_cryptography.h b/modules/juce_cryptography/juce_cryptography.h index 07b5494658..3d9f6e5c45 100644 --- a/modules/juce_cryptography/juce_cryptography.h +++ b/modules/juce_cryptography/juce_cryptography.h @@ -35,7 +35,7 @@ ID: juce_cryptography vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE cryptography classes description: Classes for various basic cryptography functions, including RSA, Blowfish, MD5, SHA, etc. website: http://www.juce.com/juce diff --git a/modules/juce_data_structures/juce_data_structures.h b/modules/juce_data_structures/juce_data_structures.h index 183df62279..7856e1917c 100644 --- a/modules/juce_data_structures/juce_data_structures.h +++ b/modules/juce_data_structures/juce_data_structures.h @@ -35,7 +35,7 @@ ID: juce_data_structures vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE data model helper classes description: Classes for undo/redo management, and smart data structures. website: http://www.juce.com/juce diff --git a/modules/juce_dsp/juce_dsp.h b/modules/juce_dsp/juce_dsp.h index c700684cae..c85da40d8b 100644 --- a/modules/juce_dsp/juce_dsp.h +++ b/modules/juce_dsp/juce_dsp.h @@ -36,7 +36,7 @@ ID: juce_dsp vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE DSP classes description: Classes for audio buffer manipulation, digital audio processing, filtering, oversampling, fast math functions etc. website: http://www.juce.com/juce diff --git a/modules/juce_events/juce_events.h b/modules/juce_events/juce_events.h index b451c40d6f..d0340e1fd4 100644 --- a/modules/juce_events/juce_events.h +++ b/modules/juce_events/juce_events.h @@ -31,7 +31,7 @@ ID: juce_events vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE message and event handling classes description: Classes for running an application's main event loop and sending/receiving messages, timers, etc. website: http://www.juce.com/juce diff --git a/modules/juce_graphics/juce_graphics.h b/modules/juce_graphics/juce_graphics.h index 29b19b1370..41693ec5fb 100644 --- a/modules/juce_graphics/juce_graphics.h +++ b/modules/juce_graphics/juce_graphics.h @@ -35,7 +35,7 @@ ID: juce_graphics vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE graphics classes description: Classes for 2D vector graphics, image loading/saving, font handling, etc. website: http://www.juce.com/juce diff --git a/modules/juce_gui_basics/juce_gui_basics.h b/modules/juce_gui_basics/juce_gui_basics.h index 5ddb188b3e..aed77635ca 100644 --- a/modules/juce_gui_basics/juce_gui_basics.h +++ b/modules/juce_gui_basics/juce_gui_basics.h @@ -35,7 +35,7 @@ ID: juce_gui_basics vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE GUI core classes description: Basic user-interface components and related classes. website: http://www.juce.com/juce diff --git a/modules/juce_gui_extra/juce_gui_extra.h b/modules/juce_gui_extra/juce_gui_extra.h index e01397a1f0..a5bcc30a7a 100644 --- a/modules/juce_gui_extra/juce_gui_extra.h +++ b/modules/juce_gui_extra/juce_gui_extra.h @@ -35,7 +35,7 @@ ID: juce_gui_extra vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE extended GUI classes description: Miscellaneous GUI classes for specialised tasks. website: http://www.juce.com/juce diff --git a/modules/juce_opengl/juce_opengl.h b/modules/juce_opengl/juce_opengl.h index a0094d2fc4..edad48042e 100644 --- a/modules/juce_opengl/juce_opengl.h +++ b/modules/juce_opengl/juce_opengl.h @@ -35,7 +35,7 @@ ID: juce_opengl vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE OpenGL classes description: Classes for rendering OpenGL in a JUCE window. website: http://www.juce.com/juce diff --git a/modules/juce_osc/juce_osc.h b/modules/juce_osc/juce_osc.h index 79b772e07d..04961e9b41 100644 --- a/modules/juce_osc/juce_osc.h +++ b/modules/juce_osc/juce_osc.h @@ -35,7 +35,7 @@ ID: juce_osc vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE OSC classes description: Open Sound Control implementation. website: http://www.juce.com/juce diff --git a/modules/juce_product_unlocking/juce_product_unlocking.h b/modules/juce_product_unlocking/juce_product_unlocking.h index 9e6cae807f..2f52f17354 100644 --- a/modules/juce_product_unlocking/juce_product_unlocking.h +++ b/modules/juce_product_unlocking/juce_product_unlocking.h @@ -35,7 +35,7 @@ ID: juce_product_unlocking vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE Online marketplace support description: Classes for online product authentication website: http://www.juce.com/juce diff --git a/modules/juce_video/juce_video.h b/modules/juce_video/juce_video.h index 4fe138e0f0..b8ae9f3fdb 100644 --- a/modules/juce_video/juce_video.h +++ b/modules/juce_video/juce_video.h @@ -36,7 +36,7 @@ ID: juce_video vendor: juce - version: 5.1.1 + version: 5.1.2 name: JUCE video playback and capture classes description: Classes for playing video and capturing camera input. website: http://www.juce.com/juce