jules
|
b4446d34ca
|
VST: workaround for position problems in 64-bit cubase.
AU: initialised some channel configs on construction.
|
13 years ago |
jules
|
54573ae2e5
|
Reintroduced some packing settings for RTAS builds.
|
13 years ago |
jules
|
2e0640b8ba
|
Added some speaker arrangement methods to AudioProcessor, with support for retrieving host speaker arrangements in a VST plugin.
|
13 years ago |
jules
|
46ae142d8a
|
Added loop position indicators to CurrentPositionInfo (only enabled in VSTs)
|
13 years ago |
jules
|
f043bb6ace
|
Removed some old packing pragmas from the plugin code.
|
13 years ago |
jules
|
295d125142
|
Stopped using the old BEGIN_JUCE_NAMESPACE macros, and just used hard-coded namespaces where necessary instead. The macro definitions are still there, so this shouldn't affect anyone's code.
|
13 years ago |
jules
|
4f0c2c0fb8
|
More openGL shader fixes. VST fix for Wavelab.
|
13 years ago |
jules
|
0301e9d1e4
|
Introjucer RTAS fix. VST fix for intel compiler.
|
13 years ago |
jules
|
a997490f17
|
Updated the OpenGLComponent so that it can render sub-components when using a background thread, and changed the demo to use this mode (which is faster).
|
13 years ago |
jules
|
9b38f91226
|
Fixed a compile problem in VSTs. Minor clean-ups.
|
13 years ago |
Julian Storer
|
7c77e101fc
|
Minor clean-ups.
|
13 years ago |
Julian Storer
|
81da96f1a2
|
Refactored the structure of the introjucer's generated code folder, and gave it the ability to embed local copies of modules.
|
13 years ago |
Julian Storer
|
4808d9c318
|
Hard-coded some juce namespace declarations.
|
13 years ago |
Julian Storer
|
e7ca7963f0
|
VST fix. Updated the old jucer to be managed with an Introjucer project rather than manually.
|
13 years ago |
Julian Storer
|
b70e0a28d2
|
First check-in of the "jucequake": a major re-organisation of the library to break it up into modules. For more details about this, see the website forum..
|
13 years ago |
Julian Storer
|
f89fa9456a
|
Sorted out some windows header files. Introjucer RTAS VC project fix.
|
14 years ago |
Julian Storer
|
e130af03ec
|
Introjucer refactoring, moving more functionality from the ProjectExporters and into the ProjectTypes. Slightly altered the structure of nested groups that is generated, and tweaked the demo projects to reflect this. Couple of minor fixes to symbol exporting and CoreAudioFormat.
|
14 years ago |
Julian Storer
|
b317b47533
|
Multi-touch handling changes for Component class. 64-bit VST keypress fix.
|
14 years ago |
Julian Storer
|
94a0bf1af1
|
Removed the PlatformUtilities class and moved its functions to more sensible classes - see forum post for more details.
|
14 years ago |
Julian Storer
|
fb58d0c380
|
Tidied up some warnings and documentation.
|
14 years ago |
Julian Storer
|
981ef9313c
|
Android fixes. Caret colour fix. VST host recursion check clean-up.
|
14 years ago |
Julian Storer
|
bef3828ce2
|
VST mouse hook fix. AU assertion fix.
|
14 years ago |
Julian Storer
|
a9b1676028
|
Fixed for OpenGL, DropShadower, Linux midi, VST resizing + mouse wheel hooks.
|
14 years ago |
Julian Storer
|
67afa64a4b
|
Relocated the audio plugin wrapper files from the 'extras' folder into src/audio/plugin_client/
|
14 years ago |
Julian Storer
|
b047d9be53
|
More 'nullptr' updates and minor clean-ups.
|
14 years ago |
Julian Storer
|
f04309f44a
|
Added fake placeholder versions of the new c++0x 'noexcept' and 'nullptr' keywords, and altered the library classes to use these instead of 'throw()' and '0'. This shouldn't make any difference at all to existing code, but will enable better static checking with future c++0x compilers.
|
14 years ago |
Julian Storer
|
e1e5018a91
|
New class: CaretComponent, which is created by the LookAndFeel. Fix for VST build on VC2005.
|
14 years ago |
Julian Storer
|
5d98779f19
|
Updated the date in the copyright notice.
|
14 years ago |
Julian Storer
|
19c6d9d2bc
|
Fix for win32 sockets.
|
14 years ago |
Julian Storer
|
2a6c8af928
|
Updated some posix socket code to handle IPV6.
|
14 years ago |
Julian Storer
|
06d436a3ab
|
Minor string clean-ups. Made key-shortcut indicators in popup menus use icons for shift/command/option on the mac.
|
14 years ago |
Julian Storer
|
533e7ba795
|
Many more String changes, so that finally the String class can store its internal data as either utf8, 16 or 32 - this is controlled by a flag JUCE_STRING_UTF_TYPE. It's currently set to utf-8 by default.
|
14 years ago |
Julian Storer
|
f19e4d1c04
|
Added workarounds for mouse-wheel events in win32 VSTs and mouse-moves in carbon AUs and VSTs. Fixed a problem when swapping between carbon/cocoa views in AUs.
|
14 years ago |
Julian Storer
|
99085429b5
|
Rewrote the AudioThumbnail class to support some new features like using readers and adding data directly to the thumb. Added an option to AudioFormatWriter::ThreadedWriter to take a thumbnail which it dynamically generates while recording. Added a couple of new maths functions: findMinAndMax, isPositiveAndBelow.
|
14 years ago |
Julian Storer
|
952b8c3940
|
Updated ComponentDragger to handle transformed components (this required a change to its parameters). Tidied up some classes with the JUCE_DECLARE_NON_COPYABLE macro. Changed some 3rd-party include statements to use angle-bracket quotes.
|
14 years ago |
Julian Storer
|
a5cf4030f5
|
New class LeakedObjectDetector, and JUCE_LEAK_DETECTOR macros for spotting leakages in a neat, cross-platform way. Used these to replace all the old juce_UseDebuggingNewOperator stuff in all the classes. Also some drawable and component transform fixes.
|
14 years ago |
Julian Storer
|
9896b75340
|
Internal code modernisation.
|
14 years ago |
Julian Storer
|
584d9a4ec0
|
Fixes for ComponentBoundsConstrainer, linux VSTs, and firefox NPAPI.
|
14 years ago |
Julian Storer
|
377b9ff2c4
|
Added a couple of useful constructors to some stream classes. Replaced some old static functions with anonymous namespaces.
|
14 years ago |
Julian Storer
|
9168728a7e
|
Added a hasEditor() virtual method to the AudioProcessor class, which you'll need to implement in your plugins so that we can work around non-standard threading behaviour in Wavelab.
|
14 years ago |
Julian Storer
|
38c64a7840
|
Minor tweaks to LookAndFeel, VST wrapper.
|
14 years ago |
Julian Storer
|
0a6aaea93b
|
Minor updates for plugins. Fixed some X windows locking.
|
14 years ago |
Julian Storer
|
73f17dba08
|
Minor clean-ups.
|
14 years ago |
Julian Storer
|
dffa2dc6e7
|
Fix for Cubase 32/64 bit bridge. Fix for Jucer RTAS project generation.
|
14 years ago |
Julian Storer
|
d2b3c283eb
|
New classes UnitTest and UnitTestRunner. Minor updates to VST wrapper. Added a dynamic buffer for win32 midi input.
|
14 years ago |
Julian Storer
|
b161c0f437
|
Minor code clean-ups.
|
14 years ago |
Julian Storer
|
f953c19efb
|
Fix for CoreGraphics image loading on iOS. Auto-linked library fix for win32.
|
14 years ago |
Julian Storer
|
5a89fc6ad8
|
Cleaned up a few compiler warnings.
|
14 years ago |
Julian Storer
|
23e07daec7
|
Minor code clean-ups.
|
14 years ago |
Julian Storer
|
cb7b3d7562
|
Mouse fix for audio plugins in Muse Receptor. Fixed DrawableText constructor.
|
15 years ago |