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

4394 commits

Author SHA1 Message Date
hogliux
3bb8dbe3ac Fixed a bug where ComboBoxes with no itmes wouldn't show the "no choices" entry 2017-02-23 10:01:21 +00:00
jules
e6ea21d1ae Whitespace fix 2017-02-23 09:56:58 +00:00
ed
05c6901403 Fixed typo in DrawableButton 2017-02-23 09:49:40 +00:00
jules
297675c5cb Workaround for a compile error in MSVC DLL builds 2017-02-23 09:39:28 +00:00
jules
aa2598ffff Added method JavascriptEngine::stop() 2017-02-23 09:38:45 +00:00
jules
91d4ba9891 Added method NormalisableRange::setSkewForCentre() 2017-02-23 09:15:46 +00:00
ed
08707ec85c Fixed bug in ThreeValueVertical Slider where initial mouse down/drag wouldn't get correct thumb index 2017-02-21 14:03:50 +00:00
hogliux
327f61eacf Fixed a dead-lock which could occur if an OpenGLContext was created and immedietely deleted before it had a chance to render 2017-02-20 20:03:18 +00:00
hogliux
d933b4af84 Fixed RTAS compilation on Windows and OS X 2017-02-20 18:54:22 +00:00
tpoole
9a38505dad Added experimental WinRT MIDI support, enabling BLE MIDI on machines with Windows 10 Anniversary Update installed 2017-02-20 17:36:36 +00:00
tpoole
78bbe49616 Added some missing license banners 2017-02-17 15:56:18 +00:00
tpoole
e33abbc6fe Replaced Projucer-generated header guards with #pragma once and updated the examples 2017-02-17 15:34:10 +00:00
tpoole
1e2f6fec5c Restored module header #defines 2017-02-17 10:26:09 +00:00
tpoole
9593557aa7 Made KnownPluginList sorting case sensitive and binning case insensitive 2017-02-16 17:42:02 +00:00
hogliux
6af68f7831 Added missing precision specifier in translateFragmentShaderToV3 2017-02-16 12:40:44 +00:00
tpoole
73ca34d7b6 Added an overload to allow AudioBuffer reference data to contain an offset 2017-02-15 16:13:22 +00:00
ed
61ae28b060 Fixed bug in ColourSelector::HueSelectorComp where the colour gradient was pink at the bottom 2017-02-15 16:01:29 +00:00
hogliux
42305de6da Added method OpenGLContext::executeOnGLThread to help executing gl house-keeping tasks on the gl thread even when the message manager is locked 2017-02-14 20:20:32 +00:00
hogliux
934aa72d6f Fixed an issue where the Projucer would not detect OpenGL ESv3 support correctly on Android 2017-02-14 16:31:46 +00:00
tpoole
0b3e192567 Restricted sample rate changes for composite audio devices to common sample rates only 2017-02-14 15:48:20 +00:00
hogliux
938830e77f Fixed a bug in the AAX wrapper where the code would access uninitialised values in the known stem formats array when compiling with newer AAX SDK versions 2017-02-14 09:39:01 +00:00
tpoole
bd73eec326 Broadcast external OS X sample rate changes to audio device change listeners 2017-02-13 18:48:11 +00:00
hogliux
1326846705 Only add DllMain to dll targets and remove from plugin utilities 2017-02-13 18:07:37 +00:00
Felipe F. Tonello
c2100022cc Added several linux improvements to the event loop, MIDI and X11 (see commit messsage)
MIDI: Several ALSA Seq improvements
===================================

Many things were done in this patch (I couldn't really split in several
patches):
 * Only one ALSA Sequencer client per application
 * ALSA Sequencer client name is the application's name by default
 * Fixed a bug when getDeivces() would return devices created by the
   application itself
 * Only ports created with createNewDevice() are allowed to be subscribed,
   other ports (created by openDevice()) doesn't allow subscription
 * AlsaPort is now handled by AlsaClient, basically having the proper
 representation such as the ALSA Sequencer has.

Files: Fix default directory paths
==================================

Some information on:
* Linux LSB FHS:
  http://www.linuxfoundation.org/collaborate/workgroups/lsb/fhs-30
* https://wiki.archlinux.org/index.php/Xdg_user_directories

Refactor Event loop to remove X11 dependency
============================================

The goal of this refactor was to remove X11 dependencies on juce_events
to enable non-gui applications (example, Embedded Linux apps) to have no
libx11 dependency.

The side-effect of this refactor is easy implementation of other Linux
graphical back-end, cleanup some code, better handling of X displays and
other benefits.

I removed a lot of the code from juce_linux_Windowing to separate files
for clarity. I also renamed all Linux X11 files to *linux_X11* instead of
just *linux*.

X11: Remove unnecessary XGrabButton call
========================================

This call is made unnecessary if used proper window flags when a window
is created.
2017-02-13 17:14:34 +00:00
hogliux
12b9c01ad6 Attempt to fix RTAS builds on Windows 2017-02-13 16:22:18 +00:00
ed
6f9d07abdb Fixed a bug where modal components in a Viewport with setScrollOnDrag enabled hit jassert (numTouches >= 0) when dismissed 2017-02-13 16:02:08 +00:00
ed
5b811922fd Fixed bug in AnimatedPosition where range minimum was set to std::numeric_limits<double>min() instead of -std::numeric_limits<double>max() 2017-02-13 14:30:27 +00:00
hogliux
eba76a8487 Changed the way the unique AAX plug-in id is generated to future proof it for any future channel formats Avid decide to add to AAX 2017-02-13 14:12:39 +00:00
ed
01aedca76d Fixed bug where inertial mouse wheel events had screen position (0, 0) 2017-02-13 12:12:38 +00:00
hogliux
7d28d7dec2 Added a fix to generate the AAX plug-in ID from the channel configuration (and not an arbitrary order in which JUCE probes configurations)
Also added the method AudioProcessor::getAAXPluginIDForMainBusConfig for developers to override the generation of AAX plug-in IDs so that their plug-ins remain backward compatible
2017-02-13 11:57:22 +00:00
jules
efac121466 Increased accuracy of frame rate constants in the plugin wrappers 2017-02-13 08:55:07 +00:00
jules
f184ed1710 Clarified a few comments in the Image class 2017-02-13 08:25:58 +00:00
tpoole
e1f941e6c3 Whitespace cleanup 2017-02-10 12:25:47 +00:00
hogliux
e5f2c7037b Added support for static VST libraries on Android 2017-02-09 18:23:54 +00:00
hogliux
c1f7b6dc16 Fixed a possible nullptr dereference in the Android runtime permission code 2017-02-09 17:57:04 +00:00
hogliux
ebbba641a4 Fixed a bug where the bluetooth LE scanner would continue to scan even if the bluetooth selector window was closed 2017-02-09 17:57:04 +00:00
hogliux
376b83986a Fixed a bug that would cause asserts to be ignored on some android platforms 2017-02-09 17:57:04 +00:00
jules
84da06214d Fix for MovieComponent on older OSX SDKs. Updated video page in big demo app. 2017-02-09 15:06:29 +00:00
tpoole
4666c3dec9 Return AudioProcessorParameterWithID from AudioProcessorValueTreeState methods 2017-02-09 10:25:04 +00:00
hogliux
dd2d64c363 Added missing call to JuceAU's base class' SetBusCount method 2017-02-09 09:06:09 +00:00
hogliux
7e39b58b31 Re-wrote android OpenSL backend adding support for native floating point buffers, unprocessed audio input and lock-free input/output audio syncing 2017-02-08 18:31:55 +00:00
hogliux
6559b3e185 Fixed multiple harmless warnings in Android builds 2017-02-08 18:07:37 +00:00
hogliux
5cdd316934 Fixed a compiler error when building for Android in recently added IPv6 address support 2017-02-08 16:47:19 +00:00
jules
d094fc2f52 Added begin/end iterators to MemoryBlock 2017-02-08 15:28:07 +00:00
tpoole
57ecf44d13 Added SADiE host detection 2017-02-08 08:12:44 +00:00
ed
e7ebd069e3 tidied up String::replaceFirstOccurrenceOf() method 2017-02-07 12:25:08 +00:00
hogliux
3cef6dcbdf Fixed an obscure iOS deadlock when loading custom type-faces 2017-02-07 12:01:25 +00:00
ed
fbda56f168 Fixed bug where ListBox mouse listener wasn't being removed when ListBoxMouseMoveSelector was destroyed 2017-02-07 10:45:29 +00:00
hogliux
d0b628f0a6 Added a workaround to avoid a crash in broken JUCE 4.1 synth plug-ins 2017-02-07 10:11:32 +00:00
ed
e09c2b65a1 Added IPv6 support to the IPAddress class 2017-02-07 08:52:49 +00:00