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

513 commits

Author SHA1 Message Date
jules
7d24b39f18 Cranked up the Clang warning level in the projucer, and fixed a few minor warnings 2018-01-16 17:15:06 +00:00
jules
48a5fbd333 Another batch of ScopedPointer cleanups 2018-01-10 14:49:57 +00:00
jules
e7a5e520c6 Updated Button::onClick and added ComboBox::onChange 2018-01-03 12:07:15 +00:00
jules
ce8b2d865a Used Button::onClick to simplify a bunch of library classes and demo code 2018-01-03 11:06:04 +00:00
jules
fa177328f4 Added a class EventHandler, for adding lambda callbacks to components 2018-01-03 09:25:49 +00:00
ed
fa2a531365 Fixed a typo in juce_Initialisation.h 2017-12-14 15:46:42 +00:00
ed
f11c43d038 Fixed a bug in Windows plugins where the display bounds were not being updated when the scale factor was changed 2017-12-13 11:37:21 +00:00
jules
bc90a41386 Fixed a few singletons which had forgotten to call clearSingletonInstance() in their destructors 2017-12-13 09:23:26 +00:00
jules
58a99ff139 Dragged the singleton macros into the 21st century.. Cleaned up their implementation and gave them new upper-case names to match juce official style. The old names are still defined to avoid breaking old code, but please update before they get deprecated! 2017-12-12 16:24:40 +00:00
Tom Poole
8cecf0baf9 Assorted threading and undefined behaviour fixes 2017-12-11 16:37:17 +00:00
jules
92f16c1d39 Fixed some Timer threading issues 2017-12-07 14:59:45 +00:00
jules
f4cf0c0ef4 Clarified some shutdown behaviour in ConnectedChildProcess 2017-12-07 10:08:10 +00:00
jules
f3cde9763a Quick tidy-up of some messaging classes 2017-12-04 11:30:15 +00:00
jules
f85d706131 Some minor formatting and comment fixes 2017-11-28 17:46:15 +00:00
jules
a586966c65 Added lambda callback methods to ListenerList. Its old method-invocation callbacks were refactored to use variadic templates instead of the old awful macros they used in the past, but please move your code to use the new lambda functions, as the one stuff will eventually be deprecated! 2017-11-28 16:18:40 +00:00
Tom Poole
fe7f34f0fa Improved the idling of socket InterprocessConnections 2017-11-27 17:26:33 +00:00
Lukasz Kozakiewicz
b8b304e4cd PushNotifications: add OSX implementation. 2017-11-22 12:59:53 +01:00
Lukasz Kozakiewicz
5d30fcd9b5 Android: move a bunch of generic Android and Java classes to JNI helpers, add Android/Java prefixes to disambiguate. 2017-11-08 18:29:12 +01:00
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) 2017-11-01 17:41:06 +00:00
ed
dbb2f620b4 Bump version number to 5.2.0 2017-10-25 12:07:32 +01:00
hogliux
b9b34393d1 Improved scheduling when multiple threads are fighting for the MessageManagerLock 2017-10-19 12:55:37 +01:00
jules
bdc5a800a6 Bit of cleanup in Timer 2017-10-17 17:23:17 +01:00
hogliux
05e343cdd4 Android: Fixed an issue where the JNI could be flooded with JNI GlobalRefs when many messages are in flight 2017-10-13 11:01:39 +01:00
jules
970eda679e Added 'final' keyword to a lot of classes from which you really shouldn't be inheriting! 2017-10-09 12:38:06 +01:00
jules
1aaa598a5f Added JUCE_DECLARE_WEAK_REFERENCEABLE macro to make it easier to creat weak-referenceable classes 2017-09-27 12:57:55 +01:00
tpoole
0ae8aa812c Bump version number to 5.1.2 2017-09-18 14:59:57 +01:00
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 2017-09-08 08:59:55 +01:00
tpoole
ff6d01bc25 Added a function to the InterprocessConnectionServer class to get the bound port number 2017-08-30 09:55:56 +01:00
jules
1801193b5d Improved comments in AsyncUpdater 2017-08-07 09:43:41 +01:00
hogliux
1b7d30f0f4 Android: Moved more Java code into C++ 2017-08-04 18:49:14 +01:00
hogliux
c02ef79fd6 Bump version number to 5.1.1 2017-08-02 18:35:29 +01:00
hogliux
c1ad53c14e Bump version number to 5.1.0 2017-07-27 12:39:23 +01:00
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. 2017-06-20 16:40:03 +01:00
hogliux
22c187826d Android: Fixed a compile error when building standalone plug-ins on Android 2017-06-07 16:10:21 +01:00
hogliux
bc3ef88603 Bump version number to 5.0.2 2017-05-30 16:32:47 +01:00
hogliux
5c19886a43 Re-named JUCE_USE_CUSTOM_AU3_STANDALONE_APP macro and fixed linker errors on macOS/iOS platforms when macro is used 2017-05-08 12:15:37 +01:00
hogliux
8413614744 Bump version number to 5.0.1 2017-05-04 15:26:54 +01:00
tpoole
f4046909ab Added an OS X 10.5 compatible std::function replacement 2017-05-03 15:36:25 +01:00
jules
6b5be8d9ef Tweaked the OSX broadcast notification flags to avoid problems with anotherInstanceStarted() 2017-05-03 11:07:05 +01:00
tpoole
c8740688ba Added assertions to flag when __FILE__ returns a relative path and fixed the LiveConstants demo 2017-05-02 18:31:29 +01:00
jules
baddc6389e Workarounds for some new "recommended" Xcode warning flags 2017-05-02 17:12:20 +01:00
hogliux
a256e6e9e1 Fixed a linker error when disabling the embedded web browser on linux 2017-05-02 15:40:23 +01:00
hogliux
9d81c5066a Bump version number to 5.0.0 2017-04-27 14:43:05 +01:00
hogliux
b5afccc37c Updated file headers and the README with the JUCE 5 license 2017-04-27 14:43:04 +01:00
hogliux
1169800b8a Fixed an issue where active x component would not receive all key events 2017-04-26 21:01:26 +01:00
hogliux
7a7619d64e Fixed resizing issues and memory leaks in linux web browser component 2017-04-26 19:18:39 +01:00
tpoole
23ba2e49cf Fixed VS2013 assignment operator compiler warnings 2017-04-20 12:24:49 +01:00
hogliux
8daf6ae41f Fixed a minor documentation typo in a ChangeBroadcaster assertion comment 2017-04-10 11:11:04 +01:00
hogliux
c8f8f81302 Removed activateIgnoringOtherApps call in macOS shutdown code to avoid JUCE stealing keyboard focus from other apps 2017-04-07 12:13:00 +01:00
jules
7479be8542 Shuffled some pragmas around to stop MSVC from giving an unwanted warning 2017-04-05 10:20:29 +01:00