jules
2dc9316420
Misc ScopedPointer changes to start using reset() and get() rather than assignments and casts (part of an ongoing drift towards more std::unique_ptr compatibility)
7 years ago
ed
dbb2f620b4
Bump version number to 5.2.0
7 years ago
hogliux
b9b34393d1
Improved scheduling when multiple threads are fighting for the MessageManagerLock
7 years ago
jules
bdc5a800a6
Bit of cleanup in Timer
7 years ago
hogliux
05e343cdd4
Android: Fixed an issue where the JNI could be flooded with JNI GlobalRefs when many messages are in flight
7 years ago
jules
970eda679e
Added 'final' keyword to a lot of classes from which you really shouldn't be inheriting!
7 years ago
jules
1aaa598a5f
Added JUCE_DECLARE_WEAK_REFERENCEABLE macro to make it easier to creat weak-referenceable classes
7 years ago
tpoole
0ae8aa812c
Bump version number to 5.1.2
7 years ago
jules
eda613c6db
Moved all "namespace juce" declarations from module headers to the individual .h and .cpp source files. This makes life a lot easier for Intellisense and other IDE autocompletion tools
7 years ago
tpoole
ff6d01bc25
Added a function to the InterprocessConnectionServer class to get the bound port number
7 years ago
jules
1801193b5d
Improved comments in AsyncUpdater
8 years ago
hogliux
1b7d30f0f4
Android: Moved more Java code into C++
8 years ago
hogliux
c02ef79fd6
Bump version number to 5.1.1
8 years ago
hogliux
eb33f537da
Bump version number to 5.1.1
8 years ago
hogliux
c1ad53c14e
Bump version number to 5.1.0
8 years ago
ed
201a85acd7
Android: Added a virtual backButtonPressed() method to JUCEApplicationBase which can be overridden to be informed when the back button is pressed on a device.
8 years ago
hogliux
22c187826d
Android: Fixed a compile error when building standalone plug-ins on Android
8 years ago
hogliux
bc3ef88603
Bump version number to 5.0.2
8 years ago
hogliux
5c19886a43
Re-named JUCE_USE_CUSTOM_AU3_STANDALONE_APP macro and fixed linker errors on macOS/iOS platforms when macro is used
8 years ago
hogliux
8413614744
Bump version number to 5.0.1
8 years ago
tpoole
f4046909ab
Added an OS X 10.5 compatible std::function replacement
8 years ago
jules
6b5be8d9ef
Tweaked the OSX broadcast notification flags to avoid problems with anotherInstanceStarted()
8 years ago
tpoole
c8740688ba
Added assertions to flag when __FILE__ returns a relative path and fixed the LiveConstants demo
8 years ago
jules
baddc6389e
Workarounds for some new "recommended" Xcode warning flags
8 years ago
hogliux
a256e6e9e1
Fixed a linker error when disabling the embedded web browser on linux
8 years ago
hogliux
9d81c5066a
Bump version number to 5.0.0
8 years ago
hogliux
b5afccc37c
Updated file headers and the README with the JUCE 5 license
8 years ago
hogliux
1169800b8a
Fixed an issue where active x component would not receive all key events
8 years ago
hogliux
7a7619d64e
Fixed resizing issues and memory leaks in linux web browser component
8 years ago
tpoole
23ba2e49cf
Fixed VS2013 assignment operator compiler warnings
8 years ago
hogliux
8daf6ae41f
Fixed a minor documentation typo in a ChangeBroadcaster assertion comment
8 years ago
hogliux
c8f8f81302
Removed activateIgnoringOtherApps call in macOS shutdown code to avoid JUCE stealing keyboard focus from other apps
8 years ago
jules
7479be8542
Shuffled some pragmas around to stop MSVC from giving an unwanted warning
8 years ago
jules
a616f336b2
Avoided an MS compiler warning in DeletedAtShutdown
8 years ago
jules
60e9231fb1
Removed need for std::function in order to use MessageManager::callAsync(). Used it to modernise a few bits of old code.
8 years ago
jules
8ed41ed14b
Fixed some whitespace style and cleaned up some code using C++11
8 years ago
tpoole
5920bcd20b
Fixed WinRT MIDI static initialisation error
8 years ago
tpoole
112b88f289
Made the WinRT MIDI service run on app startup
8 years ago
jules
39284e1d0f
Added static method Timer::callAfterDelay() to invoke a one-shot lambda function
8 years ago
hogliux
2bec815bb3
Added an option to execute JUCEApplication's suspend() method on an iOS background task to give you extra time to save your app's state
8 years ago
tpoole
9a38505dad
Added experimental WinRT MIDI support, enabling BLE MIDI on machines with Windows 10 Anniversary Update installed
8 years ago
tpoole
78bbe49616
Added some missing license banners
8 years ago
tpoole
e33abbc6fe
Replaced Projucer-generated header guards with #pragma once and updated the examples
8 years ago
tpoole
1e2f6fec5c
Restored module header #defines
8 years ago
hogliux
42305de6da
Added method OpenGLContext::executeOnGLThread to help executing gl house-keeping tasks on the gl thread even when the message manager is locked
8 years ago
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.
8 years ago
hogliux
6559b3e185
Fixed multiple harmless warnings in Android builds
8 years ago
hogliux
2da1bc5f41
Replace include guards with "#pragma once"
8 years ago
hogliux
e0aff606a8
Bump version number to 4.3.1
8 years ago
tpoole
2e84129479
Updated the juce_audio_basics, juce_audio_devices, juce_blocks_basics, juce_core and juce_events modules to a new ISC license
8 years ago