mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Bump version number to 4.3.1
This commit is contained in:
parent
284fc826e2
commit
e0aff606a8
22 changed files with 81 additions and 66 deletions
|
|
@ -4,6 +4,21 @@
|
|||
This file just lists the more notable headline features. For more detailed info
|
||||
about minor changes and bugfixes, please see the git log!
|
||||
|
||||
Version 4.3.1
|
||||
- Added support for iOS download tasks
|
||||
- Added support for AAX plug-in meters
|
||||
- Added support for dynamically disabling/enabling sidechains in ProTools
|
||||
- Re-introduced support for VST3 plug-ins reporting which VST2 plug-in they can replace
|
||||
- Added withRightX and withBottomY methods to Rectangle
|
||||
- Added support for windows 10 on screen keyboard
|
||||
- Added move semantics to AudioBuffer
|
||||
- Added colour coding scheme to module icons in the Projucer to indicate which type of license a module uses
|
||||
- Removed all deprecation warnings for macOS Sierra
|
||||
- Fixed multiple touch, pen and mouse input related bugs on Windows
|
||||
- Added submenu support to ComboBoxes and simplified the usage of ComboBoxes
|
||||
- Various minor improvements and bug fixes
|
||||
- Various documentation improvements
|
||||
|
||||
Version 4.3.0
|
||||
- Added API and examples for ROLI Blocks
|
||||
- Multiple Projucer live-build UI and diagnostics improvements
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<JUCERPROJECT id="M70qfTRRk" name="Projucer" projectType="guiapp" juceFolder="../../juce"
|
||||
jucerVersion="4.3.0" version="4.3.0" bundleIdentifier="com.juce.theprojucer"
|
||||
jucerVersion="4.3.1" version="4.3.1" bundleIdentifier="com.juce.theprojucer"
|
||||
defines="" includeBinaryInAppConfig="1">
|
||||
<EXPORTFORMATS>
|
||||
<XCODE_MAC targetFolder="Builds/MacOSX" vstFolder="~/SDKs/vstsdk2.4" rtasFolder="~/SDKs/PT_80_SDK"
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
ID: juce_audio_basics
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE audio and MIDI data classes
|
||||
description: Classes for audio buffer manipulation, midi message handling, synthesis, etc.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
ID: juce_audio_devices
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
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
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_audio_formats
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE audio file format codecs
|
||||
description: Classes for reading and writing various audio file formats.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_audio_plugin_client
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE audio plugin wrapper classes
|
||||
description: Classes for building VST, VST3, AudioUnit, AAX and RTAS plugins.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_audio_processors
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE audio processor classes
|
||||
description: Classes for loading and playing VST, AU, or internally-generated audio processors.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_audio_utils
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE extra audio utility classes
|
||||
description: Classes for audio-related GUI and miscellaneous tasks.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
ID: juce_blocks_basics
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
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
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_box2d
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE wrapper for the Box2D physics engine
|
||||
description: The Box2D physics engine and some utility classes.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@
|
|||
|
||||
ID: juce_core
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
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
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@
|
|||
*/
|
||||
#define JUCE_MAJOR_VERSION 4
|
||||
#define JUCE_MINOR_VERSION 3
|
||||
#define JUCE_BUILDNUMBER 0
|
||||
#define JUCE_BUILDNUMBER 1
|
||||
|
||||
/** Current Juce version number.
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_cryptography
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE cryptography classes
|
||||
description: Classes for various basic cryptography functions, including RSA, Blowfish, MD5, SHA, etc.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_data_structures
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE data model helper classes
|
||||
description: Classes for undo/redo management, and smart data structures.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -39,7 +39,7 @@
|
|||
|
||||
ID: juce_events
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
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
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_graphics
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE graphics classes
|
||||
description: Classes for 2D vector graphics, image loading/saving, font handling, etc.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_gui_basics
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE GUI core classes
|
||||
description: Basic user-interface components and related classes.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_gui_extra
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE extended GUI classes
|
||||
description: Miscellaneous GUI classes for specialised tasks.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_opengl
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE OpenGL classes
|
||||
description: Classes for rendering OpenGL in a JUCE window.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_osc
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE OSC classes
|
||||
description: Open Sound Control implementation.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
|
||||
ID: juce_tracktion_marketplace
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE Tracktion marketplace support
|
||||
description: Classes for online product authentication via the Tracktion marketplace.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
ID: juce_video
|
||||
vendor: juce
|
||||
version: 4.3.0
|
||||
version: 4.3.1
|
||||
name: JUCE video playback and capture classes
|
||||
description: Classes for playing video and capturing camera input.
|
||||
website: http://www.juce.com/juce
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue