1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Bump version number to 5.2.0

This commit is contained in:
ed 2017-10-25 12:07:32 +01:00
parent 65857af333
commit dbb2f620b4
25 changed files with 47 additions and 26 deletions

View file

@ -1,7 +1,7 @@
JUCE breaking changes
=====================
develop
Version 5.2.0
=============
Change

View file

@ -4,6 +4,27 @@
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.2.0
- Added a CMake exporter to the Projucer
- JUCE analytics module
- Added support for push notifications on iOS and Android
- Added in-app purchase support for macOS
- Added a plugin binary copy step to the Visual Studio exporter
- Added an option to set the debug information format in the Visual Studio exporter
- Added a link-time optimisation option to all exporters
- Added support for adding asm files to Android projects
- Improved the reliability of the Projucer's live-build engine
- Added support for AUv2 Midi Effect plug-in hosting
- Added support for Atmos 7.0.2 and 7.1.2 Surround formats
- Added support for the OGG sub-format inside a WAV file
- Added support for querying the audio hardware on how many overruns/underruns occurred
- Implement Process::hide on mobile platforms
- Added support for multi-touch drag and drop
- Improved the performance of 3D rendering when multiple OpenGL contexts are used at the same time
- Tweaked the rate at which EdgeTable grows its internal storage, to improve performance
rendering large and complex paths
Version 5.1.2
- Fixed multiple plugin-resizing bugs
- Added support for AUv3 MIDI and screen size negotiation

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<JUCERPROJECT id="M70qfTRRk" name="Projucer" projectType="guiapp" juceFolder="../../juce"
jucerVersion="5.1.2" version="5.1.2" bundleIdentifier="com.juce.theprojucer"
jucerVersion="5.1.2" version="5.2.0" bundleIdentifier="com.juce.theprojucer"
defines="" includeBinaryInAppConfig="1" splashScreenColour="Dark"
displaySplashScreen="0" reportAppUsage="0" companyName="ROLI Ltd."
cppLanguageStandard="11" companyCopyright="ROLI Ltd.">

View file

@ -31,7 +31,7 @@
ID: juce_analytics
vendor: juce
version: 5.1.1
version: 5.2.0
name: JUCE analytics classes
description: Classes to collect analytics and send to destinations
website: http://www.juce.com/juce

View file

@ -31,7 +31,7 @@
ID: juce_audio_basics
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE audio and MIDI data classes
description: Classes for audio buffer manipulation, midi message handling, synthesis, etc.
website: http://www.juce.com/juce

View file

@ -31,7 +31,7 @@
ID: juce_audio_devices
vendor: juce
version: 5.1.2
version: 5.2.0
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

View file

@ -35,7 +35,7 @@
ID: juce_audio_formats
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE audio file format codecs
description: Classes for reading and writing various audio file formats.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_audio_plugin_client
vendor: juce
version: 5.1.2
version: 5.2.0
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.1.2 and later.
with JUCE version 5.2.0 and later.
*/
#ifndef JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE
#define JUCE_FORCE_LEGACY_PARAMETER_AUTOMATION_TYPE 0

View file

@ -35,7 +35,7 @@
ID: juce_audio_processors
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE audio processor classes
description: Classes for loading and playing VST, AU, or internally-generated audio processors.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_audio_utils
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE extra audio utility classes
description: Classes for audio-related GUI and miscellaneous tasks.
website: http://www.juce.com/juce

View file

@ -31,7 +31,7 @@
ID: juce_blocks_basics
vendor: juce
version: 5.1.2
version: 5.2.0
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

View file

@ -35,7 +35,7 @@
ID: juce_box2d
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE wrapper for the Box2D physics engine
description: The Box2D physics engine and some utility classes.
website: http://www.juce.com/juce

View file

@ -32,7 +32,7 @@
ID: juce_core
vendor: juce
version: 5.1.2
version: 5.2.0
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

View file

@ -28,8 +28,8 @@
See also SystemStats::getJUCEVersion() for a string version.
*/
#define JUCE_MAJOR_VERSION 5
#define JUCE_MINOR_VERSION 1
#define JUCE_BUILDNUMBER 2
#define JUCE_MINOR_VERSION 2
#define JUCE_BUILDNUMBER 0
/** Current Juce version number.

View file

@ -35,7 +35,7 @@
ID: juce_cryptography
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE cryptography classes
description: Classes for various basic cryptography functions, including RSA, Blowfish, MD5, SHA, etc.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_data_structures
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE data model helper classes
description: Classes for undo/redo management, and smart data structures.
website: http://www.juce.com/juce

View file

@ -36,7 +36,7 @@
ID: juce_dsp
vendor: juce
version: 5.1.2
version: 5.2.0
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

View file

@ -31,7 +31,7 @@
ID: juce_events
vendor: juce
version: 5.1.2
version: 5.2.0
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

View file

@ -35,7 +35,7 @@
ID: juce_graphics
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE graphics classes
description: Classes for 2D vector graphics, image loading/saving, font handling, etc.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_gui_basics
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE GUI core classes
description: Basic user-interface components and related classes.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_gui_extra
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE extended GUI classes
description: Miscellaneous GUI classes for specialised tasks.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_opengl
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE OpenGL classes
description: Classes for rendering OpenGL in a JUCE window.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_osc
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE OSC classes
description: Open Sound Control implementation.
website: http://www.juce.com/juce

View file

@ -35,7 +35,7 @@
ID: juce_product_unlocking
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE Online marketplace support
description: Classes for online product authentication
website: http://www.juce.com/juce

View file

@ -36,7 +36,7 @@
ID: juce_video
vendor: juce
version: 5.1.2
version: 5.2.0
name: JUCE video playback and capture classes
description: Classes for playing video and capturing camera input.
website: http://www.juce.com/juce