1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-24 01:54:22 +00:00
Commit graph

604 commits

Author SHA1 Message Date
tpoole
4c59a920b4 Added Inter-App Audio capabilities to standalone plug-ins 2017-03-01 11:55:52 +00:00
jules
bf02c6e182 Minor documentation fix 2017-02-24 08:24:32 +00:00
tpoole
e33abbc6fe Replaced Projucer-generated header guards with #pragma once and updated the examples 2017-02-17 15:34:10 +00:00
tpoole
1e2f6fec5c Restored module header #defines 2017-02-17 10:26:09 +00:00
tpoole
9593557aa7 Made KnownPluginList sorting case sensitive and binning case insensitive 2017-02-16 17:42:02 +00:00
Felipe F. Tonello
c2100022cc Added several linux improvements to the event loop, MIDI and X11 (see commit messsage)
MIDI: Several ALSA Seq improvements
===================================

Many things were done in this patch (I couldn't really split in several
patches):
 * Only one ALSA Sequencer client per application
 * ALSA Sequencer client name is the application's name by default
 * Fixed a bug when getDeivces() would return devices created by the
   application itself
 * Only ports created with createNewDevice() are allowed to be subscribed,
   other ports (created by openDevice()) doesn't allow subscription
 * AlsaPort is now handled by AlsaClient, basically having the proper
 representation such as the ALSA Sequencer has.

Files: Fix default directory paths
==================================

Some information on:
* Linux LSB FHS:
  http://www.linuxfoundation.org/collaborate/workgroups/lsb/fhs-30
* https://wiki.archlinux.org/index.php/Xdg_user_directories

Refactor Event loop to remove X11 dependency
============================================

The goal of this refactor was to remove X11 dependencies on juce_events
to enable non-gui applications (example, Embedded Linux apps) to have no
libx11 dependency.

The side-effect of this refactor is easy implementation of other Linux
graphical back-end, cleanup some code, better handling of X displays and
other benefits.

I removed a lot of the code from juce_linux_Windowing to separate files
for clarity. I also renamed all Linux X11 files to *linux_X11* instead of
just *linux*.

X11: Remove unnecessary XGrabButton call
========================================

This call is made unnecessary if used proper window flags when a window
is created.
2017-02-13 17:14:34 +00:00
hogliux
eba76a8487 Changed the way the unique AAX plug-in id is generated to future proof it for any future channel formats Avid decide to add to AAX 2017-02-13 14:12:39 +00:00
hogliux
7d28d7dec2 Added a fix to generate the AAX plug-in ID from the channel configuration (and not an arbitrary order in which JUCE probes configurations)
Also added the method AudioProcessor::getAAXPluginIDForMainBusConfig for developers to override the generation of AAX plug-in IDs so that their plug-ins remain backward compatible
2017-02-13 11:57:22 +00:00
jules
efac121466 Increased accuracy of frame rate constants in the plugin wrappers 2017-02-13 08:55:07 +00:00
hogliux
e5f2c7037b Added support for static VST libraries on Android 2017-02-09 18:23:54 +00:00
tpoole
4666c3dec9 Return AudioProcessorParameterWithID from AudioProcessorValueTreeState methods 2017-02-09 10:25:04 +00:00
hogliux
d0b628f0a6 Added a workaround to avoid a crash in broken JUCE 4.1 synth plug-ins 2017-02-07 10:11:32 +00:00
hogliux
2da1bc5f41 Replace include guards with "#pragma once" 2017-02-01 17:18:07 +00:00
hogliux
a4d71cc374 Added a workaround for old JUCE VST2 plug-ins which would not check the speaker arrangement for nullptr 2017-02-01 11:12:03 +00:00
hogliux
e0aff606a8 Bump version number to 4.3.1 2017-01-26 10:40:42 +00:00
hogliux
d16123adc8 Added a new optional in/out parameter to AudioProcessor::Bus::isLayoutSupported to allow hosts to predict how the entire layout of an AudioProcessor may change when changing the layout of a single bus 2017-01-23 14:37:01 +00:00
hogliux
3370adae7b Fixed a compiler warning on newest version of gcc 2017-01-18 17:04:10 +00:00
tpoole
9b1ae84927 Fixed bug when maximum number of plug-in io channels is one 2017-01-18 09:55:29 +00:00
tpoole
a554d0e95e Added to the AudioProcessorValueTreeState documentation 2017-01-12 14:14:19 +00:00
hogliux
ba512e96fd Renamed 'generic' parameter Category enum to something less generic 2017-01-12 12:54:50 +00:00
hogliux
7897331403 Added support for level meter parameter categories 2017-01-11 18:02:40 +00:00
tpoole
0d7a77d8ee Improved AudioProcessorValueTreeState documentation 2017-01-10 13:03:13 +00:00
jules
f1baf9b122 Added VST hosting support for begin/endParameterChangeGesture, and tidied up some internal code 2016-12-30 15:47:18 +00:00
tpoole
158bc981de Fixed an issue restoring VST3 GUI state 2016-12-21 12:25:35 +00:00
tpoole
af0791552a Fixed Linux message thread assertion in AudioProcessorValueTreeState 2016-12-20 13:23:29 +00:00
tpoole
13549989fd Added C++11 functions to Doxygen 2016-12-14 12:40:13 +00:00
ed
9a130f2810 Set avoidReallocating argument of AudioBuffer::makeCopyOf() to true in some audio class methods to avoid unnecessary reallocations in double-float buffer conversion 2016-12-07 10:10:20 +00:00
hogliux
f6727f204b Added label parameter to all AudioParameter constructors 2016-12-05 12:07:44 +00:00
hogliux
bd9697b687 Fixed a compiler error on older gcc versions 2016-12-05 09:49:18 +00:00
hogliux
b86e1331ac Fixed a bug where the AU/AUv3 wrapper would create a spurious input bus when no inputs where specified in the Projucer's legacy channel configuration field 2016-12-01 10:47:52 +00:00
tpoole
a3ef455696 Ignored deprecation warnings in the OS X VST3 SDK 2016-12-01 10:03:05 +00:00
tpoole
acf554a895 Fixed erroneous assertion when saving VST3 states 2016-11-29 19:23:21 +00:00
tpoole
12256536a3 Fixed bug when setting AudioProcessorValueTreeState values before listeners are registered 2016-11-28 17:17:42 +00:00
jules
7467195ffa Minor tidying-up 2016-11-22 18:02:17 +00:00
hogliux
63a71ff20d Fixed a bug where the VST3 plug-in wrapper would not respect the legacy layout field when disabling/enabling buses 2016-11-15 12:09:02 +00:00
tpoole
d438fa59e8 Fixed issues with AudioProcessorValueTreeState parameter synchronization 2016-11-14 12:37:01 +00:00
hogliux
5a2ebefa00 Fixed a bug where the bundle exit function would be called before the VST3 factory is released 2016-11-11 15:44:54 +00:00
hogliux
363ceb08cf Bump version number to 4.3.0 2016-11-02 14:02:52 +00:00
hogliux
7cdcb19d25 Added a convenient function to get all channel sets with a particular number of channels 2016-10-29 17:20:55 +01:00
hogliux
c4d36d15b1 Whitespace clean-up 2016-10-27 09:52:24 +01:00
jules
23a248fe75 Added method VSTPluginFormat::getPluginInstanceFromVstEffectInterface() which can be used for devious purposes to retrieve a plugin's AudioPluginInstance object from an AEffect 2016-10-25 16:11:33 +01:00
jules
c587d4b495 Minor code style tidy-ups 2016-10-20 10:55:27 +01:00
tpoole
0ed9003a8d Fixed bundle ref initialisation of statically linked VSTs on iOS 2016-10-10 15:28:40 +01:00
hogliux
848b400eaf Avoided warning in release builds in AudioUnit hosting code 2016-09-30 14:48:06 +01:00
hogliux
3fb55ffd1f Fixed a compiler error which occured in gcc based compilers 2016-09-26 11:05:00 +01:00
hogliux
5a365ed535 Removed assertion which gets hit by too many VST plug-ins 2016-09-20 12:34:21 +01:00
hogliux
8835a24417 Fixed another typo and removed unecessary for loop 2016-09-20 12:33:38 +01:00
hogliux
4fa0516f40 Revised multibus API and added support for multibus hosting 2016-09-16 17:06:19 +01:00
hogliux
4eb89336f9 Bump version number to 4.2.4 2016-09-16 16:42:43 +01:00
hogliux
0862167459 Fixed a compiler warning for MIDI effect plug-ins 2016-09-16 15:20:58 +01:00