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

50 commits

Author SHA1 Message Date
jules
02492b36b9 Lots of small whitespace tweaks. 2015-12-13 19:32:05 +00:00
jules
ebc47d9618 Avoided possible arithmetic overflow in MemoryInputStream::read() for very large streams. 2015-10-06 16:53:30 +01:00
jules
88ca15e6f2 Added override specifiers to unit test classes 2015-08-10 16:21:16 +01:00
hogliux
c7b8e77031 Update copyright notice 2015-07-22 15:59:34 +01:00
jules
06c1a15496 Added some missing 'override' decorators 2015-05-15 12:54:44 +01:00
jules
c5595695fe Optimisation to XML parsing of documents that contain large text sections. 2015-01-10 11:40:09 +00:00
jules
2cc283fddd More efficient preallocation when reading large files into memory. 2014-09-29 09:41:43 +01:00
jules
fe61c37d93 Updated the return types of OutputStream::writeFromInputStream and InputStream::readIntoMemoryBlock 2014-08-11 09:44:14 +01:00
jules
2f1ef234ce Tightened up a few places where numeric conversion warnings could happen. 2014-07-10 18:57:24 +01:00
jules
28e4473a6b Fixed some typos. 2014-02-26 19:47:55 +00:00
jules
3e1c6b6a65 Optimisation to OutputStream::writeString 2014-02-09 17:36:38 +00:00
jules
61d1e1b7ba Avoiding a few MSVC warnings 2013-10-22 19:29:04 +01:00
jules
5f00e94f3e Fixed a string allocation problem. 2013-10-17 17:34:22 +01:00
jules
5051b2ffcc Optimised some number streaming functions. 2013-09-22 12:25:52 +01:00
jules
435089e89b Updated the UnitTest class to provide a shared, reproducible random seed for each run, to allow failures to be re-created. Also converted a few Strings to StringRefs. 2013-09-11 10:29:48 +01:00
jules
2fccfccbc0 Misc performance tweaks. 2013-09-06 11:25:49 +01:00
jules
2786eadaf9 Removed a few pedantic warnings. 2013-08-26 14:58:23 +01:00
jules
65c155e372 Added a class ContainerDeletePolicy, to allow custom delete operations on objects held by ScopedPointers or OwnedArrays. Also cleaned away a lot of superfluous includes in juce_core files. 2013-08-23 12:08:31 +01:00
jules
9f97ff341b Added a MemoryOutputStream constructor to write into a fixed block of memory. 2013-07-22 11:29:15 +01:00
jules
5a1112ab94 Updated the format of the header include guard macros. 2013-07-17 16:26:35 +01:00
jules
67740c1441 Added return values for various OutputStream::writeXYZ methods. 2013-07-16 13:18:17 +01:00
jules
4fc8fbaef1 Added some more override decorators. 2013-07-10 10:22:33 +01:00
jules
03c2801f3f Copyright header update in all module files. juce_core modules are now ISC licensed. All other modules are GPLv2/3/AGPLv3 2013-06-13 13:17:12 +01:00
jules
e951ab4a4d Added ImageCache::clear() method. 2013-04-10 21:09:13 +01:00
jules
84724e8947 Minor addition to MemoryOutputStream. 2013-04-09 12:09:23 +01:00
jules
2c5bfb952f Minor clean-ups. 2013-03-15 17:48:53 +00:00
jules
cc26ae1fc1 Added ResizableBorderComponent::getCurrentZone(). Misc tidying-up. 2013-03-13 10:46:57 +00:00
jules
d0135d9efc Worked around a GCC compiler bug. Also tidied up a bunch of GCC warnings. 2013-03-08 14:07:51 +00:00
jules
bfd9350bed Changed some types from int to size_t where appropriate. Fixed a CoreMidi build problem in 64-bit mode. 2013-02-24 15:49:06 +00:00
jules
a1c357fa1f Some VS DLL export fixes. 2013-02-12 17:02:01 +00:00
jules
f9e31ab7a9 Documentation pedanticism. 2013-01-14 16:51:02 +00:00
jules
e543949bda Minor clean-ups. 2013-01-05 20:07:22 +00:00
jules
0ceeb573d8 Minor changes to avoid pedantic compiler warnings. 2012-12-04 21:39:15 +00:00
jules
fae88c8b88 Minor documentation updates. Added MidiMessageSequence::sort() method. 2012-10-17 17:03:05 +01:00
jules
6b1654e1d2 Fixed some more warnings. 2012-09-24 15:45:25 +01:00
jules
591e89cd87 Replaced the badly-named method Array::removeValue() with two new methods: removeFirstMatchingValue() and removeAllInstancesOf(). If you call the old method anywhere, you can just replace any calls with removeFirstMatchingValue(), which does the same job, but whose name makes it clear that not all instances of the value will be removed. 2012-07-07 21:09:10 +01:00
jules
2d441a63ee Added an int64 operator<< to OutputStream. 2012-07-06 10:16:52 +01:00
jules
0194486115 Added a method MemoryBlock::replaceWith(). Changed FileInputStream to avoid cacheing the length of the file. 2012-06-22 20:20:06 +01:00
jules
b1cc8cce00 Couple of additions to MemoryInputStream. 2012-06-18 08:49:41 +01:00
jules
830332d3ec Added a progress value for ZipFile::Builder. 2012-04-12 13:35:02 +01:00
jules
70133a94eb Introjucer: added a setting for JucePlugin_AUMainType. Added a method InputStream::getNumBytesRemaining() 2012-04-05 18:30:49 +01:00
jules
56bbab1537 (automated whitespace clean-up) 2012-03-20 16:00:06 +00:00
jules
70a5f0233c Fixes to some MemoryOutputStream streaming operators. 2012-02-15 20:48:14 +00:00
jules
295d125142 Stopped using the old BEGIN_JUCE_NAMESPACE macros, and just used hard-coded namespaces where necessary instead. The macro definitions are still there, so this shouldn't affect anyone's code. 2012-02-11 14:09:23 +00:00
jules
38703ee4c3 Cleaned up a few 64-bit VC++ warnings. 2011-12-24 10:06:45 +00:00
jules
27d7185f34 OSX10.4 menu fix. Graphics::drawSingleLineText justification. 2011-10-20 22:22:40 +01:00
Julian Storer
9a9f570781 Tweaks to streams and gzip compressor. 2011-09-14 15:34:05 +01:00
Julian Storer
dce7cd9cd1 Added a unit-test, and removed constness from a couple more return types. 2011-09-13 15:09:21 +01:00
Julian Storer
2cae7a76f5 Linux http fix. Plugin header fix. win32 IME fix. 2011-09-08 15:14:41 +01:00
Julian Storer
b70e0a28d2 First check-in of the "jucequake": a major re-organisation of the library to break it up into modules. For more details about this, see the website forum.. 2011-08-12 10:04:52 +01:00