reuk
aa95939273
SystemStats: Set hasNeon flag correctly on M1 machines
3 years ago
reuk
81fa777ff7
ObjC Helpers: Automatically derive appropriate signature for function
3 years ago
reuk
4196b5e45b
macOS: Silence deprecation warnings on Monterey
3 years ago
reuk
17b8708852
WebBrowserComponent: Avoid leaking browsers on macOS
3 years ago
ed
aabd65b0fd
Text: Fix some build issues when JUCE_STRING_UTF_TYPE != 8
3 years ago
reuk
d36c8b4c55
NamedPipe: Avoid early exits from writes on unavailable pipes
3 years ago
ed
7d1918b385
macOS/iOS: Replace compile-time deployment target checks with runtime checks using the available keyword
3 years ago
ed
d9eb2022ed
POSIX: Fix overflow when setting hi-res timer thread period on macOS/iOS
3 years ago
ed
3d282c1078
Desktop: Deprecate isOSXDarkModeActive() and add isDarkModeActive() for other platforms
3 years ago
ed
b9542ccc4c
Update code to use C++14 [[deprecated]] attribute
This commit removes the various compiler-specific JUCE_DEPRECATED macros and replaces them with C++14's deprecated attribute. It also removes the JUCE_CATCH_DEPRECATED_CODE_MISUSE flag as we can rely on the override specifier catching usage of these old virtual methods, and tidies up the DOXYGEN preprocessor checks as they were inconsistent across the codebase.
3 years ago
ed
a435026b24
macOS: Use available keyword instead of preprocessor version checks where possible
3 years ago
ed
2c02ba9723
macOS: Fix compile error when using C++20 language standard
3 years ago
reuk
f87582a013
URL: Allow specifying shared container for downloads on iOS
3 years ago
reuk
b6ab931bcf
File: Add helper function to locate shared containers on macOS and iOS
File::getContainerForSecurityApplicationGroupIdentifier will return the
path to a container which is shared between all apps using the specified
app group ID. This might be useful if you need to share resources
between a standalone app and an AUv3 plugin, for example.
3 years ago
reuk
d738f0274e
File: Fix quoting in openDocument() on Linux
The previous implementation would fail to open directories with names
that contained spaces, as the space would be escaped and then quoted.
I don't think it's particularly meaningful to supply parameters when
opening a file in this way (especially not quoting the parameters too!)
so I've removed that functionality.
3 years ago
ed
055a4e93e9
POSIX: Set fileHandle to 0 after closing in MemoryMappedFile::openInternal() to prevent it from being closed again in the destructor
3 years ago
ed
39772b7474
Android: Remove old minimum SDK version checks
3 years ago
ed
8f03215a9e
Accessibility: Add Android support
3 years ago
ed
d6a5156dd5
Objective-C++: Make getIvar() a free function so it can be used without a class instance
3 years ago
reuk
802f33b0e8
Thread: Avoid setting realtime priority on Thread instances by default on POSIX systems
3 years ago
ed
0f76c7d097
POSIX: Close file handle after mapping in MemoryMappedFile::openInternal() to avoid hitting max open file limit
3 years ago
reuk
3d97343c2a
GCC: Fix redundant redeclaration warnings
3 years ago
ed
4e9521be2d
ComSmartPtr: Fixed behaviour of ComBaseClassHelper::QueryInterface() in release builds
4 years ago
reuk
feb9ebb485
ComSmartPtr: Allow compilation on VS2015
4 years ago
ed
efd0373525
macOS: Support infinite timeouts for URL connections
4 years ago
reuk
a70488e38e
MacOS: Fix API deprecations in macOS 12.0 and iOS 15.0
4 years ago
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.
4 years ago
reuk
3399c34d0d
Windows: Fix more warnings emitted by clang with GNU-like command-line
4 years ago
reuk
7ac6911ccc
Windows: Fix clang/gnu compiler warnings
4 years ago
reuk
31a7c62baf
Windows: Fix and suppress some analysis warnings
This fixes warnings that are emitted when building with the `-analyze`
flag enabled.
4 years ago
Tom Poole
bfdda737a2
Projucer: Removed the live build
4 years ago
reuk
900282ccf3
MinGW: Fix warnings and errors emitted when building VST3 plugins
4 years ago
ed
ec990202b1
Accessibility: Added VoiceOver (macOS) and Narrator (Windows) accessibility screen reader support to juce_gui_basics
4 years ago
ed
0fc1ede50f
Used MemoryBlock::isEmpty() in a few places
4 years ago
Tom Poole
79fbde7099
Added preliminary support for FreeBSD
4 years ago
ed
be0c36001d
Linux: Fixed some comparison warnings using Clang 10
4 years ago
Tom Poole
ef5608654d
VST3: Fixed a bug loading plug-ins
4 years ago
Tom Poole
a9ad07a945
Use RAII for CFTypes
4 years ago
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.
4 years ago
reuk
3fe0b07a82
SystemStats: Avoid "pragma intrinsic" when building with the Intel compiler
4 years ago
ed
77d4ac7242
URL: Fixed backwards compatibility of URL::createInputStream() when specifying a POST-like request with parameters and no POST data
4 years ago
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.
4 years ago
ed
fe9493867e
Linux: Quote Bash command string in Process::openDocument() to prevent ampersands being treated as a control operator
4 years ago
reuk
be1e3df4d0
macOS: Be explicit about string encodings when logging assertions
4 years ago
jules
a9b5fe3a39
Tweaks for emscripten support
4 years ago
reuk
837ab64dbd
Android: Fix numeric conversion warnings
4 years ago
ed
46f5b126d5
Tidied up some template statement whitespace
4 years ago
ed
af69be5346
Windows: Tidied up the usage of the JUCE_COMCALL, JUCE_COMCLASS, and JUCE_IUNKNOWNCLASS macros
4 years ago
ed
dc242f76db
Windows: Added multiple inheritance support to ComBaseClassHelper
4 years ago
ed
4c008505c9
Fixed an uninitialised variable in the posix ChildProcess::isRunning() implementation
4 years ago