jules
|
d88a49d9ae
|
Introjucer: avoided creating iOS assets for a static lib project.
|
11 years ago |
jules
|
fc6d485b29
|
Introjucer: enabled C++11 support by default in android projects
|
11 years ago |
jules
|
a92dcf0996
|
Introjucer: increased the number of characters allowed for the plugin channel config.
|
11 years ago |
jules
|
b61af93f1a
|
Couple of tweaks to the introjucer new project template.
|
11 years ago |
jules
|
c0e2afb075
|
Avoided a warning in the demo plugin.
|
11 years ago |
jules
|
811258e72b
|
Introjucer: made the iOS build spit out some .xcassets resources, to force it to launch correctly on iOS8
|
11 years ago |
jules
|
85e7ccd8be
|
Updated some dusty code in the introjucer templates for a new plugin project.
|
11 years ago |
jules
|
7671e6a350
|
Fix for the program count in the introjucer-generated template plugin.
|
11 years ago |
jules
|
77afce6297
|
Added a couple of missing overrides
|
11 years ago |
jules
|
08a49cb6d4
|
Removed some unnecessary consts from the parameters for SynthesiserSound::appliesToNote and appliesToChannel
|
11 years ago |
jules
|
527d1459df
|
Added a velocity argument to the synthesiser noteOff methods.
|
11 years ago |
jules
|
abe43b27d3
|
minor clean-ups.
|
11 years ago |
jules
|
0db3ccf3e6
|
Fixed a few typos in the demo
|
11 years ago |
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.
|
11 years ago |
jules
|
970300867f
|
Introjucer: Added .S to the supported asm file extensions.
|
11 years ago |
jules
|
6a89a440b5
|
Introjucer: Reorganised some file extensions and added .asm and .s to the list of recognised types.
|
11 years ago |
jules
|
a323d4d797
|
Clarified the example code that's generated in the plugin template process method.
|
11 years ago |
jules
|
86fc9d7e16
|
Introjucer: Updates to the android exporter, adding a toolchain version setting.
|
11 years ago |
jules
|
aba0ff9240
|
Added method AudioProcessorEditor::setControlHighlight() for support of this AAX functionality.
|
11 years ago |
jules
|
66d413c32b
|
Minor clean-ups
|
11 years ago |
jules
|
d16e5f4e80
|
Added a list of IP addresses to the juce demo system info page.
|
11 years ago |
jules
|
c6dcbe5739
|
Made the juce demo clean up in the right order when quitting, to avoid problems with the GL demo.
|
11 years ago |
jules
|
f3447b3ece
|
Introjucer: codeblocks export fix.
|
11 years ago |
jules
|
53226c0660
|
Introjucer: fixed a problem with the open-project menu if multiple export targets have the same name
|
11 years ago |
jules
|
e527acd721
|
Introjucer: tweaked some syntax to avoid problems with old GCC versions.
|
11 years ago |
jules
|
6ec478bb8d
|
Introjucer gui comp layout generation - added missing parentheses.
|
11 years ago |
jules
|
1e23cda2ff
|
Cleaned up a couple of minor analyser warnings.
|
11 years ago |
jules
|
8baa07ac89
|
Updated introjucer component editor to use callout boxes for colour editors
|
11 years ago |
jules
|
21f13fb909
|
Resaved some project files.
|
11 years ago |
jules
|
2f1ef234ce
|
Tightened up a few places where numeric conversion warnings could happen.
|
11 years ago |
jules
|
c8bf8cd41e
|
Moved some C++ escaping functions from the Introjucer into CppTokeniserFunctions.
|
11 years ago |
jules
|
56983c8080
|
Tweak to the GL demo to avoid problems on android where openGLContextClosing doesn't get called.
|
11 years ago |
jules
|
ab774b814e
|
Added a method Time::getCompilationDate()
|
11 years ago |
jules
|
0bf57ddf0c
|
Added a method RectangleList::ensureStorageAllocated
|
11 years ago |
jules
|
8a2af98497
|
Added an assertion to warn if a plugin reports no programs, because this can cause problems in some Sony hosts.
|
11 years ago |
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.
|
11 years ago |
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>.
|
11 years ago |
jules
|
6c16af73f5
|
Introjucer: removed an unimportant assertion
|
11 years ago |
jules
|
e9549f6d00
|
Introjucer: clicking already-selected items in the treeview now opens their document.
|
11 years ago |
jules
|
9342cdcc5b
|
Introjucer: fix for MSVC builds creating duplicate files in some situations
|
11 years ago |
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()
|
11 years ago |
jules
|
82f6189f91
|
Introjucer: Avoided unnecessary VST3 copy phase step.
|
11 years ago |
jules
|
69ff02b46c
|
Couple of fixes for a UTF-32 build.
|
11 years ago |
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.
|
11 years ago |
jules
|
90d317a74a
|
Workaround for missing java method in some android SDKs
|
11 years ago |
jules
|
c46927d580
|
Minor clean-ups
|
11 years ago |
jules
|
f5f6600770
|
Changed the demo plugin OSX build to be 32/64-bit.
|
11 years ago |
jules
|
91d9c96338
|
Minor clean-ups
|
12 years ago |
jules
|
a06e23e606
|
Minor fix to demo app.
|
12 years ago |
jules
|
95699451b5
|
Added method ModalComponentManager::cancelAllModalComponents()
|
12 years ago |