mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Bump version number to 5.3.0
This commit is contained in:
parent
ef2d1fa9fd
commit
262dff8854
25 changed files with 73 additions and 25 deletions
|
|
@ -4,6 +4,41 @@ JUCE breaking changes
|
||||||
Develop
|
Develop
|
||||||
=======
|
=======
|
||||||
|
|
||||||
|
Version 5.3.0
|
||||||
|
=============
|
||||||
|
|
||||||
|
Change
|
||||||
|
------
|
||||||
|
The JUCE examples have been cleaned up, modernised and converted into
|
||||||
|
PIPs (Projucer Instant Projects). The JUCE Demo has been removed and replaced by the
|
||||||
|
DemoRunner application and larger projects such as the Audio Plugin Host and the
|
||||||
|
Network Graphics Demo have been moved into the extras directory.
|
||||||
|
|
||||||
|
Possible Issues
|
||||||
|
---------------
|
||||||
|
1. Due to the large number of changes that have occured in the JUCE Git repository,
|
||||||
|
pulling this version may result in a messy folder structure with empty directories
|
||||||
|
that have been removed.
|
||||||
|
2. The JUCE Demo project is no longer in the JUCE repository.
|
||||||
|
3. The Audio Plugin Host project has moved from the examples directory to the extras
|
||||||
|
directory.
|
||||||
|
|
||||||
|
Workaround
|
||||||
|
----------
|
||||||
|
1. Run a Git clean command (git clean -xdf) in your JUCE directory to remove all untracked
|
||||||
|
files, directories and build products.
|
||||||
|
2. The new DemoRunner application, located in extras/DemoRunner, can be used to preview
|
||||||
|
all the JUCE examples and see the code side-by-side.
|
||||||
|
3. Change any file paths that depended on the plugin host project being located in the examples
|
||||||
|
directory to use the extras directory instead.
|
||||||
|
|
||||||
|
Rationale
|
||||||
|
---------
|
||||||
|
The JUCE examples had inconsistent naming, coding styles and the projects and build products
|
||||||
|
took up a large amount of space in the repository. Replacing them with PIPs reduces the file size
|
||||||
|
and allows us to categorise the examples better, as well as cleaning up the code.
|
||||||
|
|
||||||
|
|
||||||
Change
|
Change
|
||||||
------
|
------
|
||||||
When hosting plug-ins all AudioProcessor methods of managing parameters that
|
When hosting plug-ins all AudioProcessor methods of managing parameters that
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,19 @@
|
||||||
This file just lists the more notable headline features. For more detailed info
|
This file just lists the more notable headline features. For more detailed info
|
||||||
about minor changes and bugfixes, please see the git log!
|
about minor changes and bugfixes, please see the git log!
|
||||||
|
|
||||||
|
Version 5.3.0
|
||||||
|
- Added support for Android OBOE (developer preview)
|
||||||
|
- Updated JUCE's MPE classes to comply with the new MMA-adopted specification
|
||||||
|
- Multiple documentation updates
|
||||||
|
- Restructed the examples and extras directories and updated all JUCE examples
|
||||||
|
- Multiple hosted parameter improvements
|
||||||
|
- Overhauled the GenericAudioProcessorEditor
|
||||||
|
- Added support for a subset of the Cockos VST extensions
|
||||||
|
- Added support for loading VST3 preset files
|
||||||
|
- Added boolean AudioProcessorParameters
|
||||||
|
- Added thread safe methods for getting and setting the AudioProcessorValueTreeState state
|
||||||
|
- Added customisable MacOS icons
|
||||||
|
|
||||||
Version 5.2.1
|
Version 5.2.1
|
||||||
- Added native content sharing support for iOS and Android
|
- Added native content sharing support for iOS and Android
|
||||||
- Added iOS and Android native file chooser support
|
- Added iOS and Android native file chooser support
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
<JUCERPROJECT id="M70qfTRRk" name="Projucer" projectType="guiapp" juceFolder="../../juce"
|
<JUCERPROJECT id="M70qfTRRk" name="Projucer" projectType="guiapp" juceFolder="../../juce"
|
||||||
jucerVersion="5.2.1" version="5.2.1" bundleIdentifier="com.juce.theprojucer"
|
jucerVersion="5.2.1" version="5.3.0" bundleIdentifier="com.juce.theprojucer"
|
||||||
defines="" splashScreenColour="Dark" displaySplashScreen="0"
|
defines="" splashScreenColour="Dark" displaySplashScreen="0"
|
||||||
reportAppUsage="0" companyName="ROLI Ltd." companyCopyright="ROLI Ltd."
|
reportAppUsage="0" companyName="ROLI Ltd." companyCopyright="ROLI Ltd."
|
||||||
cppLanguageStandard="11">
|
cppLanguageStandard="11">
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_analytics
|
ID: juce_analytics
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE analytics classes
|
name: JUCE analytics classes
|
||||||
description: Classes to collect analytics and send to destinations
|
description: Classes to collect analytics and send to destinations
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
ID: juce_audio_basics
|
ID: juce_audio_basics
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE audio and MIDI data classes
|
name: JUCE audio and MIDI data classes
|
||||||
description: Classes for audio buffer manipulation, midi message handling, synthesis, etc.
|
description: Classes for audio buffer manipulation, midi message handling, synthesis, etc.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
ID: juce_audio_devices
|
ID: juce_audio_devices
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE audio and MIDI I/O device classes
|
name: JUCE audio and MIDI I/O device classes
|
||||||
description: Classes to play and record from audio and MIDI I/O devices
|
description: Classes to play and record from audio and MIDI I/O devices
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_audio_formats
|
ID: juce_audio_formats
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE audio file format codecs
|
name: JUCE audio file format codecs
|
||||||
description: Classes for reading and writing various audio file formats.
|
description: Classes for reading and writing various audio file formats.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_audio_plugin_client
|
ID: juce_audio_plugin_client
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE audio plugin wrapper classes
|
name: JUCE audio plugin wrapper classes
|
||||||
description: Classes for building VST, VST3, AudioUnit, AAX and RTAS plugins.
|
description: Classes for building VST, VST3, AudioUnit, AAX and RTAS plugins.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
DAW projects with automation data written by an AudioUnit, VST3 or
|
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
|
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
|
incorrectly when opened by an AudioUnit, VST3 or AAX plug-in built
|
||||||
with JUCE version 5.2.1 and later.
|
with JUCE version 5.3.0 and later.
|
||||||
*/
|
*/
|
||||||
#ifndef JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE
|
#ifndef JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE
|
||||||
#define JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE 0
|
#define JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE 0
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_audio_processors
|
ID: juce_audio_processors
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE audio processor classes
|
name: JUCE audio processor classes
|
||||||
description: Classes for loading and playing VST, AU, or internally-generated audio processors.
|
description: Classes for loading and playing VST, AU, or internally-generated audio processors.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_audio_utils
|
ID: juce_audio_utils
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE extra audio utility classes
|
name: JUCE extra audio utility classes
|
||||||
description: Classes for audio-related GUI and miscellaneous tasks.
|
description: Classes for audio-related GUI and miscellaneous tasks.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
ID: juce_blocks_basics
|
ID: juce_blocks_basics
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: Provides low-level control over ROLI BLOCKS devices
|
name: Provides low-level control over ROLI BLOCKS devices
|
||||||
description: JUCE wrapper for low-level control over ROLI BLOCKS devices.
|
description: JUCE wrapper for low-level control over ROLI BLOCKS devices.
|
||||||
website: http://developer.roli.com
|
website: http://developer.roli.com
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_box2d
|
ID: juce_box2d
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE wrapper for the Box2D physics engine
|
name: JUCE wrapper for the Box2D physics engine
|
||||||
description: The Box2D physics engine and some utility classes.
|
description: The Box2D physics engine and some utility classes.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@
|
||||||
|
|
||||||
ID: juce_core
|
ID: juce_core
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE core classes
|
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.
|
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
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -28,8 +28,8 @@
|
||||||
See also SystemStats::getJUCEVersion() for a string version.
|
See also SystemStats::getJUCEVersion() for a string version.
|
||||||
*/
|
*/
|
||||||
#define JUCE_MAJOR_VERSION 5
|
#define JUCE_MAJOR_VERSION 5
|
||||||
#define JUCE_MINOR_VERSION 2
|
#define JUCE_MINOR_VERSION 3
|
||||||
#define JUCE_BUILDNUMBER 1
|
#define JUCE_BUILDNUMBER 0
|
||||||
|
|
||||||
/** Current JUCE version number.
|
/** Current JUCE version number.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_cryptography
|
ID: juce_cryptography
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE cryptography classes
|
name: JUCE cryptography classes
|
||||||
description: Classes for various basic cryptography functions, including RSA, Blowfish, MD5, SHA, etc.
|
description: Classes for various basic cryptography functions, including RSA, Blowfish, MD5, SHA, etc.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_data_structures
|
ID: juce_data_structures
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE data model helper classes
|
name: JUCE data model helper classes
|
||||||
description: Classes for undo/redo management, and smart data structures.
|
description: Classes for undo/redo management, and smart data structures.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
ID: juce_dsp
|
ID: juce_dsp
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE DSP classes
|
name: JUCE DSP classes
|
||||||
description: Classes for audio buffer manipulation, digital audio processing, filtering, oversampling, fast math functions etc.
|
description: Classes for audio buffer manipulation, digital audio processing, filtering, oversampling, fast math functions etc.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
ID: juce_events
|
ID: juce_events
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE message and event handling classes
|
name: JUCE message and event handling classes
|
||||||
description: Classes for running an application's main event loop and sending/receiving messages, timers, etc.
|
description: Classes for running an application's main event loop and sending/receiving messages, timers, etc.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_graphics
|
ID: juce_graphics
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE graphics classes
|
name: JUCE graphics classes
|
||||||
description: Classes for 2D vector graphics, image loading/saving, font handling, etc.
|
description: Classes for 2D vector graphics, image loading/saving, font handling, etc.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_gui_basics
|
ID: juce_gui_basics
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE GUI core classes
|
name: JUCE GUI core classes
|
||||||
description: Basic user-interface components and related classes.
|
description: Basic user-interface components and related classes.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_gui_extra
|
ID: juce_gui_extra
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE extended GUI classes
|
name: JUCE extended GUI classes
|
||||||
description: Miscellaneous GUI classes for specialised tasks.
|
description: Miscellaneous GUI classes for specialised tasks.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_opengl
|
ID: juce_opengl
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE OpenGL classes
|
name: JUCE OpenGL classes
|
||||||
description: Classes for rendering OpenGL in a JUCE window.
|
description: Classes for rendering OpenGL in a JUCE window.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_osc
|
ID: juce_osc
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE OSC classes
|
name: JUCE OSC classes
|
||||||
description: Open Sound Control implementation.
|
description: Open Sound Control implementation.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
ID: juce_product_unlocking
|
ID: juce_product_unlocking
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE Online marketplace support
|
name: JUCE Online marketplace support
|
||||||
description: Classes for online product authentication
|
description: Classes for online product authentication
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@
|
||||||
|
|
||||||
ID: juce_video
|
ID: juce_video
|
||||||
vendor: juce
|
vendor: juce
|
||||||
version: 5.2.1
|
version: 5.3.0
|
||||||
name: JUCE video playback and capture classes
|
name: JUCE video playback and capture classes
|
||||||
description: Classes for playing video and capturing camera input.
|
description: Classes for playing video and capturing camera input.
|
||||||
website: http://www.juce.com/juce
|
website: http://www.juce.com/juce
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue