reuk
407966b2ca
Windows: Fix warnings when building with clang in 64-bit mode
2021-06-30 17:03:38 +01:00
Tom Poole
fe4ba9071b
Set the default value of JUCE_MODAL_LOOPS_PERMITTED to 0
...
See BREAKING-CHANGES.txt for more details.
2021-06-30 13:01:14 +01:00
ed
4e9521be2d
ComSmartPtr: Fixed behaviour of ComBaseClassHelper::QueryInterface() in release builds
2021-06-29 16:15:01 +01:00
ed
d9f7d068ed
WaitableEvent: Increased lock scope in signal()
2021-06-25 14:44:35 +01:00
Tom Poole
78be43888e
Update the minimum C++ standard to C++14
2021-06-24 16:09:48 +01:00
reuk
ecfa339032
Build: Update minimum build requirements for VS 2015
2021-06-22 10:58:46 +01:00
reuk
feb9ebb485
ComSmartPtr: Allow compilation on VS2015
2021-06-22 10:58:46 +01:00
ed
efd0373525
macOS: Support infinite timeouts for URL connections
2021-06-18 16:19:31 +01:00
ed
76e9a767ec
WaitableEvent: Release lock before calling notify_all() on condition variable
2021-06-15 10:15:02 +01:00
reuk
a70488e38e
MacOS: Fix API deprecations in macOS 12.0 and iOS 15.0
2021-06-10 15:20:39 +01:00
Attila Szarvas
fbc1a51a67
Windows: replace deprecated OS calls in SystemStats::getDisplayLanguage()
...
The previously used getUserDefaultUILanguage() was based on the deprecated
LCID/LANGID concept. It had an increasing number of corner cases as not
every locale had associated LCIDs. The new solution is based on locale
names (string based) and will return reasonable names in more situations.
2021-06-09 12:04:31 +02:00
ed
e4f9e7f79b
macOS Accessibility: Use @available keyword where possible to check if accessibility support is available at runtime
2021-06-07 19:38:29 +01:00
reuk
3399c34d0d
Windows: Fix more warnings emitted by clang with GNU-like command-line
2021-06-04 12:09:05 +01:00
reuk
7ac6911ccc
Windows: Fix clang/gnu compiler warnings
2021-06-03 17:30:44 +01:00
reuk
31a7c62baf
Windows: Fix and suppress some analysis warnings
...
This fixes warnings that are emitted when building with the `-analyze`
flag enabled.
2021-05-26 15:34:26 +01:00
Tom Poole
d7d350599d
macOS: Use __builtin_debugtrap for assertions on ARM
2021-05-18 16:45:17 +01:00
Tom Poole
bfdda737a2
Projucer: Removed the live build
2021-05-14 12:54:07 +01:00
reuk
900282ccf3
MinGW: Fix warnings and errors emitted when building VST3 plugins
2021-05-13 12:10:06 +01:00
ed
ec990202b1
Accessibility: Added VoiceOver (macOS) and Narrator (Windows) accessibility screen reader support to juce_gui_basics
2021-05-10 10:53:14 +01:00
reuk
22189f7aa4
ArrayBase: Avoid undefined behaviour when trying to copy a range of 0 elements
2021-04-30 14:49:23 +01:00
ed
433750941b
MemoryBlock: Added a new replaceAll() method and deprecated the replaceWith() method
...
When passing in valid data with zero size, replaceWith() will do nothing and leave the MemoryBlock in its previous state which may be unexpected. replaceAll() will reset the MemoryBlock and resize it to 0
2021-04-27 09:06:14 +01:00
ed
0fc1ede50f
Used MemoryBlock::isEmpty() in a few places
2021-04-22 18:22:06 +01:00
ed
b2b1685ca6
Added MemoryBlock::isEmpty()
2021-04-22 18:22:06 +01:00
reuk
e4659fd8f2
File: Use unit test random instance to generate unique filename
2021-04-09 10:26:28 +01:00
reuk
cfd85ad4ee
UnitTestRunner: Fix bug in File tests when multiple test instances are run simultaneously
2021-04-08 13:33:11 +01:00
ed
be84627f93
Docs: Updated XmlElement docs to use getChildIterator() instead of deprecated macros
2021-04-08 11:51:41 +01:00
Tom Poole
79fbde7099
Added preliminary support for FreeBSD
2021-03-29 14:16:46 +01:00
ed
be0c36001d
Linux: Fixed some comparison warnings using Clang 10
2021-03-29 10:52:16 +01:00
Tom Poole
ef5608654d
VST3: Fixed a bug loading plug-ins
2021-03-26 10:31:45 +00:00
Tom Poole
a9ad07a945
Use RAII for CFTypes
2021-03-25 15:48:35 +00:00
ed
65bdf50d93
Docs: Fixed a typo in the docs for WebInputStream::Listener::postDataSendProgress()
2021-03-24 08:58:00 +00:00
Tom Poole
4c58e50f2e
Bump version number to 6.0.8
2021-03-22 09:24:48 +00:00
reuk
799c5ef51b
BasicNativeHeaders: Increment minimum required IE version on Windows
...
This ensures the function IUnknown_GetWindow is declared in shlwapi.h
when building against the Windows 7 SDK.
2021-03-18 12:22:32 +00:00
reuk
3fe0b07a82
SystemStats: Avoid "pragma intrinsic" when building with the Intel compiler
2021-03-16 17:20:14 +00:00
ed
77d4ac7242
URL: Fixed backwards compatibility of URL::createInputStream() when specifying a POST-like request with parameters and no POST data
2021-03-15 09:58:09 +00:00
ed
fa8c446d0c
URL: Added InputStreamOptions and enable POST data to be sent with URL-encoded parameters.
...
- Added a new URL::createInputStream() overload that takes an InputStreamOptions helper class to simplify stream creation.
- Modified the internals of URL and WebInputStream so that parameters are only added to the request body when ParameterHandling is set to inPostData. This allows POST data to be added via URL::withPOSTData() and sent with URL-encoded parameters.
2021-03-12 16:23:59 +00:00
ed
f9f0896bbb
Tidied up URL and WebInputStream docs
2021-03-12 16:21:00 +00:00
ed
fe9493867e
Linux: Quote Bash command string in Process::openDocument() to prevent ampersands being treated as a control operator
2021-03-05 18:40:04 +00:00
ed
b1253bfc74
Added JUCE_DECLARE_NON_MOVEABLE macro
2021-03-02 15:53:24 +00:00
reuk
be1e3df4d0
macOS: Be explicit about string encodings when logging assertions
2021-02-18 17:16:45 +00:00
reuk
c6280f7b8a
XmlElement: Fix rare crash when parsing truncated escape sequences
2021-02-18 10:54:29 +00:00
reuk
64b9366e8f
CharacterFunctions: Add new function to move pointer past whitespace
2021-02-18 10:54:29 +00:00
Tom Poole
2018ceca3b
macOS ARM: Allow the debugger to move past failed assertions
2021-02-10 13:48:46 +00:00
jules
a9b5fe3a39
Tweaks for emscripten support
2021-02-08 09:59:46 +00:00
Tom Poole
7c33b2132f
Fixed some parsing issues in readDoubleValue
2021-02-03 17:53:32 +00:00
reuk
837ab64dbd
Android: Fix numeric conversion warnings
2021-02-03 16:09:54 +00:00
Tom Poole
dbecf24722
Fixed a typo in the documentation
2021-02-01 15:13:37 +00:00
ed
46f5b126d5
Tidied up some template statement whitespace
2021-01-29 15:40:12 +00:00
ed
af69be5346
Windows: Tidied up the usage of the JUCE_COMCALL, JUCE_COMCLASS, and JUCE_IUNKNOWNCLASS macros
2021-01-29 15:40:12 +00:00
ed
dc242f76db
Windows: Added multiple inheritance support to ComBaseClassHelper
2021-01-29 15:40:12 +00:00