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

13210 commits

Author SHA1 Message Date
Tom Poole
965d0ca4be JUCE version 7.0.2 2022-08-15 19:29:17 +01:00
Tom Poole
88b6a400f8 Resave all projects 2022-08-15 17:37:04 +01:00
Tom Poole
7296b8e3f7 Bump version number to 7.0.2 2022-08-15 17:26:35 +01:00
Tom Poole
c2180845bc Resave all projects 2022-08-15 17:26:22 +01:00
attila
997ed696c2 ARA Client: Fix GCC warnings 2022-08-15 12:07:40 +02:00
attila
9d73008dc2 ARA: Fix ARA debug configuration
The ARA SDK's debug functionality is included in the audio_processors
module, hence the configuration had to be moved there from
juce_plugin_client.
2022-08-15 12:07:40 +02:00
attila
2d30969b4e Projucer: Prefer using launch storyboard on iOS even when a custom xcassets folder is set 2022-08-15 12:07:40 +02:00
attila
ba8d5e3e1c CMake: Prefer using launch storyboard on iOS even when a custom xcassets folder is set 2022-08-15 12:07:40 +02:00
attila
acc6addb86 DragAndDropContainer: Manage keyboard focus for the drag image when the target needs it hidden
The previous implementation would trigger assertions in
grabKeyboardFocus() when the DragImageComponent was hidden due to the
target returning false from shouldDrawDragImageWhenOver().

Hiding the image would also mean that its keyboard focus was lost. Now
focus is restored when the image becomes visible again.
2022-08-15 12:07:40 +02:00
chroma
ea84e14be0 VST Host: Avoid sending unnecessary window size messages to non-DPI-aware plugins
Fixes an issue on Windows that caused superfluous HWND messages on DPI aware plugins that resulted in dismissing focused components.
2022-08-11 18:13:27 +01:00
reuk
603c98c9d1
Android: Fix crash on startup for devices with API level < 23 2022-08-11 11:49:13 +01:00
Tom Poole
61fd8827e1 macOS/iOS: Fix a scaled multiple-rects drawing issue 2022-08-05 13:27:32 +01:00
reuk
fc376eab3b
PushNotificationsDemo: Allow alert windows to be dismissed on iOS 2022-08-04 22:51:18 +01:00
reuk
256a0b8169
PushNotifications: Remove unnecessary base class 2022-08-04 22:51:18 +01:00
reuk
0d8a94ae04
PushNotifications: Silence deprecation warnings
The warnings are only silenced in code that is conditionally used on
older platforms. When the newer (non-deprecated) API is available, it
will be used.
2022-08-04 22:51:18 +01:00
reuk
1346b142c3
PushNotifications: Fix missing-prototypes warnings 2022-08-04 22:51:18 +01:00
reuk
d31f1f1483
PushNotifications: Use @available checks 2022-08-04 22:51:18 +01:00
reuk
97971cd4b4
WebBrowserComponent: Tidy up macOS implementation 2022-08-04 22:51:17 +01:00
reuk
41ef5b7fd5
macOS: Remove macOS 10.14 preprocessor checks
The current minimum-supported Xcode (10.1) includes the macOS 10.14.1
SDK, so APIs from macOS 10.14 will always be available.
2022-08-04 22:51:17 +01:00
reuk
7545fbcf3e
macOS: Remove macOS 10.13 preprocessor checks
The current minimum-supported Xcode (10.1) includes the macOS 10.14.1
SDK, so APIs from macOS 10.13 will always be available.
2022-08-04 22:51:17 +01:00
reuk
9712775e5b
macOS: Remove macOS 10.12 preprocessor checks
The current minimum-supported Xcode (10.1) includes the macOS 10.14.1
SDK, so APIs from macOS 10.12 will always be available.
2022-08-04 22:51:17 +01:00
reuk
76e95d01ed
iOS: Remove iOS 12 preprocessor checks
The current minimum-supported Xcode (10.1) includes the iOS 12.1 SDK, so
APIs from iOS 12 will always be available.
2022-08-04 22:51:17 +01:00
reuk
a22b23e335
iOS: Remove iOS 11 preprocessor checks
The current minimum-supported Xcode (10.1) includes the iOS 12.1 SDK, so
APIs from iOS 10 will always be available.
2022-08-04 22:51:17 +01:00
reuk
f821015080
iOS: Remove iOS 10 preprocessor checks
The current minimum-supported Xcode (10.1) includes the iOS 12.1 SDK, so
APIs from iOS 10 will always be available.
2022-08-04 22:51:17 +01:00
reuk
3d82933904
PushNotifications: Tidy up addMethod calls 2022-08-04 22:51:17 +01:00
reuk
683543d11c
PushNotifications: Add UserNotifications as a framework dependency on macOS and iOS 2022-08-04 22:51:16 +01:00
reuk
33dfe77c22
Build: Stop generating icon sizes which are only used on iOS 6 and lower 2022-08-04 22:51:16 +01:00
reuk
f46b94b6ff
AudioPlaybackDemo: Fix file loading on Android 2022-08-04 22:51:16 +01:00
reuk
0238561156
AndroidDocument: Make input stream more robust
Previously, input streams created by AndroidDocument instances did not
implement setPosition, so they were not useful for reading some file
formats, such as WAV.

Due to limitations of the Java InputStream interface, seeking backwards
in a stream requires creating a whole new stream and seeking from the
beginning, so it could be quite slow.
2022-08-04 22:51:16 +01:00
reuk
46c259b90e
Android: Fix crashes on startup for devices with older API levels 2022-08-04 22:51:16 +01:00
reuk
d60955c5eb
Android: Add AndroidDocumentInputSource, allowing for interop between the AudioThumbnail and AndroidDocument types 2022-08-04 22:51:16 +01:00
attila
82a31c9ccc Linux: Enable ARA compilation 2022-08-03 13:06:55 +00:00
attila
53619b927c Eliminate all usages of JUCE_STANDALONE_APPLICATION in the modules 2022-08-03 13:06:55 +00:00
attila
cc5b9a3306 Linux: Fix retrieving SpecialLocationType::currentApplicationFile 2022-08-03 13:06:55 +00:00
attila
cc8ce6525a CMake: Link against libatomic on Linux if is_lock_free is missing
The ARA_SDK contains unguarded is_lock_free calls. This change
allows us to enable ARA compilation on Linux.
2022-08-03 13:06:55 +00:00
attila
286f9bf3f0 SystemStats: Correctly report Windows 11 2022-08-02 14:58:31 +00:00
attila
c05ec5f9d0 MenuBarComponent: Fix incorrect deactivation of the menu bar
Prior to this commit it was possible to get the menu bar deactivated
by moving the mouse to an adjacent menu item and then back again. If
the movement was quick enough the corresponding PopupMenu would be
dismissed and created again before the dismissal's async command
handler would run. The command handler would see that the dismissed
menu's index and the currently activated index are equal and
deactivate the menu bar.
2022-08-02 14:58:31 +00:00
attila
6aa926750e MacOS: Restore window style flags after leaving full screen
Previously having a JUCE title bar prevented the style flags from
being restored, and this caused the native window border resizers to
remain active after entering and then leaving full screen.
2022-08-02 14:58:31 +00:00
Tom Poole
417bd3b342 ValueTree: Add early exit when copying a ValueTree to itself 2022-08-02 10:14:29 +01:00
Tom Poole
b51e835baf Mac Catalyst: Fix compilation issues 2022-08-02 10:00:12 +01:00
Tom Poole
6388aa318e DSP: make multiplyWithWindowingTable const 2022-08-02 09:16:22 +01:00
reuk
dac8ce6e9f
InAppPurchases: Add generated bytecode for Android implementation 2022-07-29 18:54:50 +01:00
reuk
934403b7ef
InAppPurchases: Fix crash when consuming purchases on Android 2022-07-29 18:54:50 +01:00
reuk
5cf1a964fc
iOS: Add proper UITextInput implementation
This provides an improved user experience, allowing cursor movement
directly from the keyboard.
2022-07-29 18:54:50 +01:00
reuk
09c107698b
DemoRunner: Avoid hiding UI behind virtual keyboard 2022-07-29 18:54:50 +01:00
reuk
8cab4cf5bb
Displays: Add keyboardInsets member to Display, to allow querying onscreen keyboard size 2022-07-29 18:54:50 +01:00
reuk
869760cb2a
ObjC: Add scoped notification observer 2022-07-29 18:54:50 +01:00
reuk
921d86e586
Accessibility: Improve table navigation, row/column index/header reporting 2022-07-29 18:54:50 +01:00
reuk
dd92f66387
Accessibility: Correctly report number of disclosed rows in TreeView on macOS 2022-07-29 18:54:10 +01:00
reuk
081412eb13
Mac Accessibility: Tidying 2022-07-29 18:54:09 +01:00