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

1585 commits

Author SHA1 Message Date
jules
d88a49d9ae Introjucer: avoided creating iOS assets for a static lib project. 2014-10-08 20:24:32 +01:00
jules
fc6d485b29 Introjucer: enabled C++11 support by default in android projects 2014-10-08 11:26:18 +01:00
jules
a92dcf0996 Introjucer: increased the number of characters allowed for the plugin channel config. 2014-10-02 08:54:17 +01:00
jules
b61af93f1a Couple of tweaks to the introjucer new project template. 2014-10-01 11:08:54 +01:00
jules
c0e2afb075 Avoided a warning in the demo plugin. 2014-10-01 09:43:08 +01:00
jules
811258e72b Introjucer: made the iOS build spit out some .xcassets resources, to force it to launch correctly on iOS8 2014-09-30 14:21:07 +01:00
jules
85e7ccd8be Updated some dusty code in the introjucer templates for a new plugin project. 2014-09-29 16:30:48 +01:00
jules
7671e6a350 Fix for the program count in the introjucer-generated template plugin. 2014-09-29 14:46:57 +01:00
jules
77afce6297 Added a couple of missing overrides 2014-09-26 09:32:41 +01:00
jules
08a49cb6d4 Removed some unnecessary consts from the parameters for SynthesiserSound::appliesToNote and appliesToChannel 2014-09-25 15:45:49 +01:00
jules
527d1459df Added a velocity argument to the synthesiser noteOff methods. 2014-09-18 16:50:13 +01:00
jules
abe43b27d3 minor clean-ups. 2014-09-17 10:17:28 +01:00
jules
0db3ccf3e6 Fixed a few typos in the demo 2014-09-13 10:54:22 -07:00
jules
ee9531dd53 Introjucer: added a JUCE_DONT_DECLARE_PROJECTINFO guard flag around the auto-generated ProjectInfo namespace, in case you need to avoid declaring it for some reason. 2014-08-28 16:53:58 +01:00
jules
970300867f Introjucer: Added .S to the supported asm file extensions. 2014-08-22 13:34:23 +01:00
jules
6a89a440b5 Introjucer: Reorganised some file extensions and added .asm and .s to the list of recognised types. 2014-08-21 14:34:44 +01:00
jules
a323d4d797 Clarified the example code that's generated in the plugin template process method. 2014-08-19 15:37:00 +01:00
jules
86fc9d7e16 Introjucer: Updates to the android exporter, adding a toolchain version setting. 2014-08-17 13:06:24 +01:00
jules
aba0ff9240 Added method AudioProcessorEditor::setControlHighlight() for support of this AAX functionality. 2014-08-14 18:03:13 +01:00
jules
66d413c32b Minor clean-ups 2014-08-14 12:04:43 +01:00
jules
d16e5f4e80 Added a list of IP addresses to the juce demo system info page. 2014-08-12 08:38:03 +01:00
jules
c6dcbe5739 Made the juce demo clean up in the right order when quitting, to avoid problems with the GL demo. 2014-08-11 22:09:43 +01:00
jules
f3447b3ece Introjucer: codeblocks export fix. 2014-08-06 11:56:57 +01:00
jules
53226c0660 Introjucer: fixed a problem with the open-project menu if multiple export targets have the same name 2014-08-04 10:33:48 +01:00
jules
e527acd721 Introjucer: tweaked some syntax to avoid problems with old GCC versions. 2014-08-04 09:09:06 +01:00
jules
6ec478bb8d Introjucer gui comp layout generation - added missing parentheses. 2014-07-23 10:20:34 +01:00
jules
1e23cda2ff Cleaned up a couple of minor analyser warnings. 2014-07-18 12:56:10 +01:00
jules
8baa07ac89 Updated introjucer component editor to use callout boxes for colour editors 2014-07-15 12:09:59 +01:00
jules
21f13fb909 Resaved some project files. 2014-07-13 19:13:36 +01:00
jules
2f1ef234ce Tightened up a few places where numeric conversion warnings could happen. 2014-07-10 18:57:24 +01:00
jules
c8bf8cd41e Moved some C++ escaping functions from the Introjucer into CppTokeniserFunctions. 2014-07-04 17:53:31 +01:00
jules
56983c8080 Tweak to the GL demo to avoid problems on android where openGLContextClosing doesn't get called. 2014-07-03 11:50:02 +01:00
jules
ab774b814e Added a method Time::getCompilationDate() 2014-06-30 09:48:26 +01:00
jules
0bf57ddf0c Added a method RectangleList::ensureStorageAllocated 2014-06-29 18:39:45 +01:00
jules
8a2af98497 Added an assertion to warn if a plugin reports no programs, because this can cause problems in some Sony hosts. 2014-06-17 08:54:41 +01:00
jules
3b88555140 Replaced the old, badly-named and badly-implemented String::compareLexicographically() method with String::compareNatural(), which uses a smarter algorithm. Also added a method StringArray::sortNatural() which uses this. 2014-06-15 10:37:31 +01:00
jules
6c61dbb68e Refactored the internal mouse-handling code to use floating point coords. This shouldn't affect much user code, but a few methods in MouseInputSource have now changed to use Point<float> rather than Point<int>. 2014-06-14 13:06:53 +01:00
jules
6c16af73f5 Introjucer: removed an unimportant assertion 2014-06-13 14:27:41 +01:00
jules
e9549f6d00 Introjucer: clicking already-selected items in the treeview now opens their document. 2014-06-09 17:46:34 +01:00
jules
9342cdcc5b Introjucer: fix for MSVC builds creating duplicate files in some situations 2014-06-03 13:00:57 +01:00
jules
b65dfbfc7c Refactored a couple of old methods relating to TextButton sizing: Removed TextButton::getFont() (use the LookAndFeel method instead), and replaced the LookAndFeel::changeTextButtonWidthToFitText method with one called getTextButtonWidthToFitText() 2014-06-01 15:42:39 +01:00
jules
82f6189f91 Introjucer: Avoided unnecessary VST3 copy phase step. 2014-05-29 21:16:26 +01:00
jules
69ff02b46c Couple of fixes for a UTF-32 build. 2014-05-29 21:02:13 +01:00
jules
4317f60173 Refactored the StringPool and Identifier classes to store the identifiers as Strings, so that they can be shared with other classes like XmlElement without creating temporary or copied String objects. Also added garbage collection for the pooled strings, and changed XmlElement to pool all of the strings it uses, to reduce memory footprint in large XML trees with many identical names. Also refactored NamedValueSet to use an array instead of a linked list. 2014-05-27 17:02:34 +01:00
jules
90d317a74a Workaround for missing java method in some android SDKs 2014-05-23 21:51:37 +01:00
jules
c46927d580 Minor clean-ups 2014-05-23 21:50:43 +01:00
jules
f5f6600770 Changed the demo plugin OSX build to be 32/64-bit. 2014-05-05 20:49:11 +01:00
jules
91d9c96338 Minor clean-ups 2014-04-29 14:14:21 +01:00
jules
a06e23e606 Minor fix to demo app. 2014-04-25 11:18:03 +01:00
jules
95699451b5 Added method ModalComponentManager::cancelAllModalComponents() 2014-04-24 14:20:17 +01:00