1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-16 00:34:19 +00:00
Commit graph

9488 commits

Author SHA1 Message Date
ed
c59cd2d9f1 Projucer: Set SKIP_INSTALL for shared code target in the Xcode exporter to fix iOS app archive validation in Xcode 10 2018-09-19 15:48:21 +01:00
ed
e02611bcb0 Windows: Replaced WM_DPICHANGED with its numerical value for < 8.1 compatibility 2018-09-19 14:05:34 +01:00
ed
fc203d62d9 Windows: Refactored some of the recent DPI-aware VST2 and VST3 plug-in changes 2018-09-19 12:35:48 +01:00
ed
c5f80a9853 Windows: Refactored the per-monitor DPI aware windowing code to use the WM_DPICHANGED message and fixed some bugs when using a non-default global scale factor 2018-09-19 12:34:34 +01:00
Tom Poole
05f49bab50 Fixed an issue when connecting to a non-existent NamedPipe 2018-09-19 10:18:22 +01:00
jules
c9d05caaae Replaced win32 font kerning tables with maps to improve performance 2018-09-18 12:20:11 +01:00
ed
c957c5c911 Projucer: Fixed a bug loading editor colour schemes when running from the command line 2018-09-17 12:17:01 +01:00
ed
8bb652a279 Projucer: Minor whitespace fix 2018-09-17 10:50:48 +01:00
ed
9ddad4a434 Windows: Use the return value of GetEnvironmentVariable() to indicate whether the function call was successful instead of GetLastError() 2018-09-17 10:09:18 +01:00
Tom Poole
eb1f8641f8 Fixed a documentation typo 2018-09-17 09:13:24 +01:00
Tom Poole
e6b123e751 Removed some unused code 2018-09-14 17:32:48 +01:00
Tom Poole
b26495491b APVTS: Allowed the creation of parameters without adding them to the AudioProcessor 2018-09-14 15:24:21 +01:00
Tom Poole
a20a6141c5 Fixed a plug-in hosting parameter group bug 2018-09-14 08:46:08 +01:00
ed
d56e4c3cc3 Added a new HeavyweightLeakedObjectDetector to juce_core which will print out a stack trace showing where the leaked object was created and added a corresponding JUCE_HEAVYWEIGHT_LEAK_DETECTOR macro 2018-09-13 16:11:52 +01:00
ed
0d481950f9 Windows: Fix a leak due to the IDropTarget interface ref count not being decremented for child HWNDs after the parent HWND is destroyed 2018-09-13 10:49:13 +01:00
Tom Poole
7e1db1aa4f Added plug-in parameter groups 2018-09-13 10:48:31 +01:00
ed
af041a02d7 Projucer: Fixed a bug when merging the old plug-in format settings if the current value is empty 2018-09-13 10:28:28 +01:00
Daniel Walz
312afa0ac0 BLOCKS: Triggered a topologyChanged() callback in response to setActive() 2018-09-12 14:51:37 +01:00
Daniel Walz
accb5d573d BLOCKS: Added a method PhysicalTopologySource::isLockedFromOutside() 2018-09-12 14:50:21 +01:00
Tom Poole
ce5757821d Added a std::make_unique implementation to systems lacking c++14 support 2018-09-12 13:08:30 +01:00
ed
3d60c7613e macOS: Use File::createFileWithoutCheckingPath() in Process::openDocument() to avoid an assertion when opening a URL 2018-09-12 11:21:20 +01:00
ed
190ca02e06 Windows: Ensure that the initial screen scale is correct when creating the OpenGL native context 2018-09-12 09:35:20 +01:00
cesare
e1a8bbf020 Added support for finding the broadcast address of an interface 2018-09-11 09:56:39 +01:00
ed
bea6639637 Projucer: Merge old plug-in format vars instead of replacing in coalescePluginFormatValues() to ensure that format settings persist 2018-09-11 09:16:13 +01:00
Tom Poole
044c36f5bb DSP: Fixed some errors in the previous commit 2018-09-10 23:05:22 +01:00
Tom Poole
1396d7cfc5 DSP: Fixed an issue returning arrays of reference counted objects 2018-09-10 16:02:26 +01:00
ed
856d7dc333 Projucer: Only scan module paths on command-line when re-saving projects using global paths 2018-09-10 14:56:45 +01:00
Tom Poole
e1e3b42b4f Fixed an invalid memory read when handling MIDI reset messages 2018-09-10 12:02:27 +01:00
jules
93ea3d922f Added class AudioProcessLoadMeasurer, and a new version of the method AudioDeviceManager::getAudioDeviceSetup() 2018-09-10 11:46:47 +01:00
jules
ab8202f04d Fixed a documentation typo 2018-09-10 11:45:24 +01:00
ed
8495d429ff Projucer: Removed the jobNeedsRunningAgain logic from AvailableModuleList's ModuleScannerJob as it was causing the job to hang when the module was found in the root directory 2018-09-10 11:09:57 +01:00
Tom Poole
56022b6680 DSP: Fixed an uninitialised memory issue in the Convolution class 2018-09-10 09:47:23 +01:00
ed
696f26dea0 Re-saved all projects 2018-09-07 14:35:03 +01:00
ed
bb0a0d3cb6 Projucer: Use a workaround to set the VS2017 Windows target platform option to the latest Windows 10 SDK installed on the build machine by default 2018-09-07 14:31:55 +01:00
ed
773ca9a3b3 Replaced another call to InputStream::skipNextBytes() with ::setPosition() in CoreAudioFormatMetatdata::read() 2018-09-07 09:21:18 +01:00
jules
dca741a01d Made an assertion in MemoryOutputStream::write() slightly more forgiving 2018-09-06 22:01:19 +01:00
Tom Poole
6f5b15e345 Projucer: Added a framework search path to the Xcode exporter 2018-09-06 20:02:24 +01:00
ed
9761a03334 Projucer: Made it possible to specify a semicolon-separated list of user modules paths to override the global default when generating a project from a PIP using the "--create-project-from-pip" command-line option 2018-09-06 17:10:20 +01:00
ed
a3f20c0d08 VST3: Use the version of MidiBuffer::Iterator::getNextEvent() which deals with the raw MidiBuffer data in MidiEventList::toEventList() to fix a use-after-free bug with SysEx message data 2018-09-06 14:34:53 +01:00
ed
a64183914a Added unit tests to the InputStream classes 2018-09-06 09:35:30 +01:00
ed
d7e2a8a4ec Fixed a bug in GZIPDecompressorInputStream::isExhausted() 2018-09-06 09:35:30 +01:00
ed
e8e69410bb Override InputStream::skipNextBytes() in MemoryInputStream to call setPosition() as it will be faster than the base class implementation 2018-09-06 09:35:30 +01:00
ed
294a6a9ca3 Corrected the documentation for InputStream::skipNextBytes() 2018-09-06 09:35:30 +01:00
ed
027f329d43 Fixed some whitespace in juce_MemoryBlock.h 2018-09-06 09:35:30 +01:00
ed
9a83e5cd00 Optimise CoreAudioFormatMetatdata::read() by calling InputStream::setPosition() instead of ::skipNextBytes() when skipping the data chunk 2018-09-06 09:35:30 +01:00
Tom Poole
5223c594c8 Linux: Fixed a race condition when loading cURL lazily 2018-09-05 17:36:15 +01:00
ed
c50b0c2660 Projucer: Allow a semicolon-separated list of multiple paths when setting defaultUserModulePath via the --set-global-search-path command line option 2018-09-05 17:31:47 +01:00
Tom Poole
34bbb94e2f Fixed some documentation errors 2018-09-05 17:23:37 +01:00
Tom Poole
d4c94439d1 Clarified the documentation for some LittleFoot functions 2018-09-05 16:31:35 +01:00
ed
38fcc1163d Projucer: Partially reverted commit ff263ec to allow per-project VST3/AAX/RTAS SDK path overrides 2018-09-05 15:50:12 +01:00