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

317 commits

Author SHA1 Message Date
jules
d2e1c7f679 Version number update 2014-07-13 19:42:44 +01:00
jules
54512dcb3f In the VST wrapper, made the ioChanged callback happen asynchronously on the message thread. 2014-07-13 19:31:48 +01:00
jules
f7d97b3166 Added a parameter to StandaloneFilterWindow to make ownership of the settings object optional. 2014-06-29 19:22:10 +01:00
jules
8977b896ab Workaround for a window ordering problem with VST plugins in some windows hosts. 2014-06-22 19:21:25 +01:00
jules
0147476afb Modified StandaloneFilterWindow to take an extra argument for setting ownership of the property set. 2014-06-17 14:01:49 +01:00
jules
8a2af98497 Added an assertion to warn if a plugin reports no programs, because this can cause problems in some Sony hosts. 2014-06-17 08:54:41 +01:00
jules
20020a83fe Fixed an OSX plugin build error. 2014-06-16 18:42:50 +01:00
jules
9c8afb5b48 Fixed a build error. 2014-06-15 09:04:01 +01:00
jules
6c61dbb68e Refactored the internal mouse-handling code to use floating point coords. This shouldn't affect much user code, but a few methods in MouseInputSource have now changed to use Point<float> rather than Point<int>. 2014-06-14 13:06:53 +01:00
jules
f8e9a13f1d Version number update 2014-06-01 19:26:09 +01:00
jules
e0f64bb27a Changed the linux VST wrapper to create its window directly inside the host's window. 2014-05-30 10:39:55 +01:00
jules
d01a508217 Added a method AudioProcessor::isParameterInverted(), and support for this in AAX/RTAS 2014-05-28 16:44:02 +01:00
jules
619716751e Tweaked the ScopedJuceInitialiser_GUI to use reference-counting internally, and used it to replace/simplify some similar objects in the plugin wrapper classes. 2014-05-28 11:06:48 +01:00
jules
cc3aa5c757 Avoiding crashes in plugins if components get deleted during a paint callback 2014-05-16 09:09:44 +01:00
jules
ef16b4481f Avoided a compiler warning. 2014-05-06 21:55:05 +01:00
jules
167f75772f Minor VST3 cleanup 2014-05-03 16:00:56 +01:00
jules
f34e812633 VST3 client workarounds for Wavelab and midi-only plugins. 2014-04-28 12:58:53 +01:00
jules
6c6c815a16 Changed default location for standalone plugin wrapper file saving. 2014-04-28 11:40:53 +01:00
jules
22056fab01 Added parameters to StandalonePluginHolder to allow custom file suffixes when loading/saving 2014-04-25 10:47:56 +01:00
jules
ef20f3a662 Added sanity-checks to VST2->3 chunk loading. 2014-04-18 10:25:46 +01:00
jules
596fccb6de Really minor UI tweak in StandaloneFilterWindow. 2014-04-17 12:27:56 +01:00
jules
2db263c122 Refactored StandaloneFilterWindow, breaking it up so that there's a separate class StandalonePluginHolder which can be used inside more customised windows. 2014-04-16 15:25:21 +01:00
jules
e6cb945088 VST2->3 state loading changes. 2014-04-12 22:42:37 +01:00
jules
395082b107 AAX: set the parameter modes differently depending upon the number of steps. 2014-04-05 22:05:44 +01:00
jules
f4fa3a420b Fix for VST3 stucture size issue. 2014-04-02 19:40:02 +01:00
jules
41cac9e5a1 More VST->VST3 auto-replace functionality. 2014-04-02 14:17:38 +01:00
jules
223523f4f5 Cleaned up some mistakes in the VST3 COM macros. 2014-04-02 10:26:25 +01:00
jules
b5d10d753a Made Process::isForegroundProcess() return a correct result on iOS. 2014-04-01 12:13:29 +01:00
jules
eff5503439 Fixed a few warnings in some OSX plugin builds. 2014-03-31 18:12:50 +01:00
jules
352e603d43 A couple of compiler warning fixes 2014-03-31 10:42:53 +01:00
jules
c478ff0116 Documentation fix. 2014-03-31 10:11:06 +01:00
jules
5409951861 Refactored some Xcode warning suppression. 2014-03-30 14:57:39 +01:00
jules
4251a2437b Version number update 2014-03-24 20:01:37 +00:00
jules
d102b61703 Another attempt at fixing win32 plugin key hook loops. 2014-03-24 19:23:39 +00:00
jules
93bf34ad0a Avoiding loops in win32 plugin key handling 2014-03-24 15:25:45 +00:00
jules
fa21d2ac02 Replaced AudioSampleBuffer::getSampleData with getReadPointer/getWritePointer methods (the old method is still available but deprecated). Apart from making code more explanatory and improving constness, these work with a new flag that keeps track of whether the buffer is clear, so that some operations can be elided when the data is known to be empty. 2014-03-24 14:39:32 +00:00
jules
e91a69080e Warning fixes 2014-03-21 15:26:55 +00:00
jules
5feabe9687 Another attempt to fix the infamous VST cubase key focus problem. 2014-03-19 21:00:47 +00:00
jules
b026fccb92 VST3 stream loading fix. 2014-03-17 13:27:14 +00:00
jules
8d834b29a1 Refactored VST plugin win32 hooks, and added mouse-wheel hooking to VST3. Also added a VC2010 project to the audio demo plugin. 2014-03-14 18:16:56 +00:00
jules
5ede2da44b Improved some MemoryBlock comments and gave the class a reset() method. 2014-03-14 10:15:35 +00:00
jules
bf72ff0851 Added VST3->VST2 backwards compatibility, with a flag JUCE_VST3_CAN_REPLACE_VST2 to disable this if you want your VST2 + 3 versions to use different IDs and not be interchangable. 2014-03-13 13:54:50 +00:00
jules
d633ee5d31 Stopped VST3 plugins sending parameter updates on the message thread, as these could interfere with updates being processed on the audio thread. 2014-03-11 11:03:35 +00:00
jules
d5cd1663db Fixed a VS compile problem. 2014-03-09 09:12:35 +00:00
jules
12d31f5203 VST3 fix for reading state from streams of unknown size. 2014-03-08 14:57:36 +00:00
jules
902a47d1ad Refactored a VST3 state method. 2014-03-08 13:07:30 +00:00
jules
a2b67cbfae Incrementing AAX change counter when audioProcessorChanged is called. 2014-03-02 21:41:34 +00:00
jules
7f9425058a Version number update 2014-02-28 20:55:06 +00:00
jules
3617bca65f Added multi-mono control for AAX. Fixed a problem with RTAS automation when opening plugin UIs. 2014-02-27 10:15:52 +00:00
jules
dd366bbcaa Fix for step count in VST3 parameters 2014-02-25 22:13:18 +00:00