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

5954 commits

Author SHA1 Message Date
jules
b5907fa90d Normalised some divider comments 2016-02-20 09:45:43 +00:00
hogliux
c64fcd72e9 Add automation support to the GenericEditor sample code 2016-02-19 16:54:58 +00:00
jules
cb6085733f Fixed a minor leak in posix WaitableEvent 2016-02-19 16:01:09 +00:00
hogliux
be34912b67 Remove unnecessary copying of channels in VST2 wrapper 2016-02-19 15:18:45 +00:00
hogliux
32e34bc808 Fix ugly noise feedback bug for AUs in Logic 2016-02-19 12:31:37 +00:00
hogliux
f4ac12820c Fix channel names in surround channel layouts 2016-02-19 10:22:37 +00:00
jules
5c05483fbb Fixed a minor typo in the Component docs. 2016-02-18 17:40:45 +00:00
jules
6b75e59e1f Added some behind-the-scenes functions for creating snapshots of native windows 2016-02-18 17:37:20 +00:00
jules
16466371f0 Added ability for ImageType::convert() to work on formats with different pixel strides 2016-02-18 16:44:30 +00:00
jules
cdf525f74a Added an option to AudioDeviceManager::playSound to use the sample across all output channels (and made the test sound do this) 2016-02-18 12:41:48 +00:00
hogliux
8465dea2ac Fixed missing surround format in PluginBusUtilities 2016-02-18 10:35:20 +00:00
jules
8622ec4004 Fixes for the operator= implementations of the AudioParameterXXX classes 2016-02-18 10:30:17 +00:00
jules
613aaa765a Fixed parsing of ISO8601 millisecond fields 2016-02-18 10:04:32 +00:00
jules
2343dc153d Added hidden internal helper function to access plugin carbon window wrappers 2016-02-17 17:05:17 +00:00
jules
5835bbc363 Avoided a warning in the plugin host build 2016-02-17 16:52:18 +00:00
jules
f5ee78595a Added a workaround for a problem in MSVC when using large years in Time::formatted 2016-02-17 16:26:13 +00:00
jules
deae885df4 Avoided a warning in OSX when core graphics is disabled 2016-02-17 16:24:39 +00:00
Timur Doumler
1b8c8bdb5d Introjucer Android Studio export: Switched gradle experimental wrapper version from 0.6.0-alpha5 to 0.6.0-beta5. 2016-02-17 14:44:36 +00:00
jules
eca3a5b232 Fixed a typo in a comment 2016-02-17 14:42:15 +00:00
jules
3fdf969ea2 Added some UTC and ISO8601 methods to the Time class. Also clarified some of its comments and added unit tests 2016-02-17 14:41:44 +00:00
jules
d6f02c9ba4 Avoided a false assertion in ChildProcess 2016-02-17 14:24:53 +00:00
jules
32bb5798bf Fixed a rounding error in iOS audio device sample rate selection 2016-02-16 15:36:05 +00:00
jules
536ca6cedf Added an internal flag JUCE_VST3_EMULATE_MIDI_CC_WITH_PARAMETERS which can turn off this VST3 hack if you don't need it 2016-02-16 14:37:33 +00:00
jules
674c833c84 Added method MouseEvent::mouseWasDraggedSinceMouseDown() 2016-02-16 12:59:49 +00:00
jules
b355af98a1 Disabled depth-test when overlaying 2D rendering on openGL 3D content 2016-02-16 09:45:09 +00:00
jules
6256a9163d Resaved some example projects 2016-02-16 09:43:38 +00:00
jules
68fdb3b2f0 Introjucer: Avoided the win32 exporter adding the /FORCE:multiple flag except when building an RTAS plugin 2016-02-16 09:43:05 +00:00
hogliux
d0d9b9c181 Choose stereo layout as default layout when using legacy channel configuration field 2016-02-16 09:11:22 +00:00
jules
3aa68f3d00 Added time-of-day to Time::getCompilationDate() 2016-02-15 16:19:56 +00:00
jules
d788e10eb4 Resaved projects 2016-02-15 15:32:09 +00:00
jules
ddd1b8eb92 Deleted a couple of unused files from an example 2016-02-15 15:31:53 +00:00
Timur Doumler
5d4bef2f99 AudioPerformanceTest: cleaned up some Visual Studio compiler warnings and errors. 2016-02-15 15:23:50 +00:00
hogliux
fc8ffd9f76 Fix finding default layout for legacy plug-ins 2016-02-15 11:38:07 +00:00
hogliux
10d1228e86 Add option to set default stack size for JUCE threads 2016-02-15 11:06:28 +00:00
hogliux
05a3ebc4eb Scale webpages to fit display by default on iOS 2016-02-15 09:19:17 +00:00
jules
e67b67f513 New example project: audio performance test app 2016-02-12 17:37:52 +00:00
jules
60e072f3c4 Added a new class: StatisticsAccumulator 2016-02-12 17:28:54 +00:00
jules
876b4ae1d3 Cleared up some overlap between the JUCE_CLANG and JUCE_GCC flags 2016-02-12 17:03:21 +00:00
jules
00d98c991d Fix for ResizableWindow handling size constraints that are set before it gets made visible 2016-02-12 13:09:04 +00:00
jules
15d746cf6e Added a safety mechanism for pathological cases where user code that repeatedly blocks in a timer callback could get the event loop stuck 2016-02-12 11:36:34 +00:00
jules
b010df5bcd Made ChildProcess::start() auto-remove quotes from the name of the executable that it is given 2016-02-12 10:51:25 +00:00
jules
e051b5ad8f Added method HashMap::Iterator::reset() 2016-02-12 10:21:23 +00:00
jules
e1ba584203 Whitespace 2016-02-12 10:21:04 +00:00
jules
6957a9e3a4 Fix to video demo 2016-02-11 17:44:54 +00:00
jules
dc7853d342 Fixed a mistake in the SurroundProcessor demo 2016-02-11 09:00:13 +00:00
Timur Doumler
28730a28c8 Fixed bug in File::deleteFile() where it would fail to delete a symlink if it was pointing to a nonexistent file. 2016-02-10 12:40:25 +00:00
jules
c2bd54aefc Added some assertions to catch event-based objects being used before the message manager has been initialised 2016-02-10 12:37:06 +00:00
jules
11b652e35a Refactored win32 broadcast message handling to avoid clashes with MS Word 2016-02-10 10:39:06 +00:00
hogliux
644a34da84 Fix linux compile error in setting file limit 2016-02-10 09:45:13 +00:00
hogliux
a53eda27d4 Fix various multi-bus issues and add support for consistent surround channel ordering 2016-02-09 17:46:28 +00:00