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

135 commits

Author SHA1 Message Date
jules
369d59f656 Added a template to allow the HeapBlock class to be given signed ints or other types that are not size_t for its size parameters 2017-10-11 12:10:58 +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
434b0e7c9b Got rid of a long-defunct alias "BitArray". If your code still uses this name, you can just replace or alias it to BigInteger, which is what the class was renamed to. 2017-09-28 11:30:44 +01:00
jules
b44cb8b710 Minor breaking change: removed the legacy swapVariables function. Just use std::swap instead and it'll do a better job! 2017-09-27 12:31:36 +01:00
jules
27a6903cac Changed the way isPositiveAndBelow is written to avoid needing to cast the second parameter to an int 2017-09-27 12:24:02 +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
9600016294 Fixed some undefined (or implementation defined) behavior 2017-08-24 18:16:03 +01:00
hogliux
ec2f7219c5 Fixed a MSVC 2013 compiler error in juce_MathsFunctions.h 2017-07-28 12:26:01 +01:00
hogliux
244a944857 Added the JUCE DSP module 2017-07-27 12:39:07 +01:00
ed
6bfcd820b4 Unit tests: Added an optional argument to the UnitTest constructor to specify a category and methods to get and run unit tests in a specified category. Updated the built-in JUCE unit tests and Demo project to use categories. 2017-07-20 17:24:05 +01:00
tpoole
984654318d Removed the JUCE_COMPILER_SUPPORTS_LAMBDAS macro 2017-06-22 09:33:30 +01:00
jules
e7923af185 Got rid of the old PARAMETER_TYPE macro - this isn't needed as the same thing can be done directly with the TypeHelpers::ParameterType helper class 2017-05-10 09:37:37 +01:00
tpoole
f4046909ab Added an OS X 10.5 compatible std::function replacement 2017-05-03 15:36:25 +01:00
hogliux
b5afccc37c Updated file headers and the README with the JUCE 5 license 2017-04-27 14:43:04 +01:00
tpoole
8b0354ff69 Added precompiler sections to make NormalisableRange compatible with OS X 10.5 2017-04-07 08:20:46 +01:00
tpoole
710d27d74f Fixed the copy constructor and assignment operator of NormalisableRange 2017-04-06 22:02:04 +01:00
tpoole
8a680bc4f6 Added a lambda function parameterisation of NormalisableRange 2017-04-04 17:03:26 +01:00
jules
8ed41ed14b Fixed some whitespace style and cleaned up some code using C++11 2017-03-27 13:06:42 +01:00
jules
91d4ba9891 Added method NormalisableRange::setSkewForCentre() 2017-02-23 09:15:46 +00:00
hogliux
2da1bc5f41 Replace include guards with "#pragma once" 2017-02-01 17:18:07 +00:00
hogliux
9f3fb1c0a6 Added a compiler error if your compiler is too old and removed numerous code checks for old compilers which are now deprecated 2017-02-01 17:18:06 +00:00
jules
e040353898 Cleaned up a few old bits of VC2005 support code 2017-01-30 07:50:56 +00:00
jules
fcd5a47d8c Added a bit-twiddling helper method: findHighestSetBit() 2017-01-11 08:50:16 +00:00
tpoole
2e84129479 Updated the juce_audio_basics, juce_audio_devices, juce_blocks_basics, juce_core and juce_events modules to a new ISC license 2016-12-14 10:07:26 +00:00
hogliux
13c501da0c Removed unnecessary memory allocation when assigning a big integer with the same memory requirements 2016-10-09 19:14:09 +01:00
ed
6c39897369 Added 'inclusive' and 'exclusive' to documentation for Random::nextFloat() and Random::nextDouble() 2016-10-06 09:30:15 +01:00
hogliux
f37787df4c Fixed incorrect comparison in right shift operator of BigInteger 2016-09-09 14:49:10 +01:00
hogliux
821dea8008 Fixed implicit conversion warnings in BigInteger 2016-08-31 17:43:48 +01:00
ed
16e6c6fd84 Slider and NormalisableRange changed to use standard library math functions 2016-08-31 09:00:50 +01:00
ed
19d654d43a Added symmetric skew option to NormalisableRange class. Added option to use symmetric skew in SliderPropertyComponent class. Fixed skew factor bug in AudioProcessorValueTreeState::SliderAttachment class 2016-08-30 12:30:32 +01:00
jules
7be711ec07 Added some functions writeLittleEndianBitsInBuffer() and readLittleEndianBitsInBuffer() for packing bit-fields in memory buffers 2016-08-28 17:44:39 +01:00
jules
a9d843414a Resaved all projects 2016-08-26 09:49:20 +01:00
jules
c0c912ab4c Modified BigInteger so that small (128-bit) values don't require heap allocation 2016-08-26 09:42:28 +01:00
jules
332dcac07d Added a method Range::expanded() 2016-07-07 11:10:35 +01:00
Timur Doumler
e993eb7225 Whitespace. 2016-06-02 15:23:43 +01:00
jules
b841406324 Fixed a compiler warning 2016-05-31 12:26:52 +01:00
jules
74554a206c Improved performance of some BigInteger methods by adding Montgomery Multiplication and extended Euclidan algorithms 2016-05-31 11:47:04 +01:00
jules
1675f826be Fixed a mistake in BigInteger::inverseModulo() 2016-04-21 10:43:51 +01:00
jules
9678eef688 Stripped out some defunct VS2003 code 2016-04-20 15:27:26 +01:00
jules
905533c68e Minor formatting tidyups 2016-04-19 09:47:22 +01:00
jules
fb864a5cb1 Corrected some spelling mistakes in comments 2016-04-11 11:13:44 +01:00
jules
b5907fa90d Normalised some divider comments 2016-02-20 09:45:43 +00:00
jules
60e072f3c4 Added a new class: StatisticsAccumulator 2016-02-12 17:28:54 +00:00
jules
876b4ae1d3 Cleared up some overlap between the JUCE_CLANG and JUCE_GCC flags 2016-02-12 17:03:21 +00:00
jules
d48167a0b7 Added some length-squared methods to Line and Point 2016-02-01 11:22:04 +00:00
jules
576c60fd15 un-templated a couple of functions to prevent them being accidentally called with integral type arguments 2016-01-18 16:53:11 +00:00
jules
4583fa3fbf Used the ignoreUnused() function to tidy up some old code 2015-12-23 16:27:50 +00:00
jules
02492b36b9 Lots of small whitespace tweaks. 2015-12-13 19:32:05 +00:00
jules
a14f6abbe0 Corrected a typo in the documentation 2015-12-10 09:08:42 +00:00
jules
b1a8470514 Added a collection of audio plugin parameter utility classes in juce_audio_processors/utilities 2015-11-02 14:49:47 +00:00