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

1993 commits

Author SHA1 Message Date
ed
67925d384f Updated main README with CMake support info and changed docs extension from .txt to .md 2020-06-29 08:30:00 +01:00
ed
4855f52e4d Added missing documentation tags 2020-06-27 17:26:44 +01:00
ed
1e9cd97664 Added startTime and endTime to UnitTest TestResult struct 2020-06-17 15:54:28 +01:00
ed
7f4b6e3288 Added missing String::operator+=() implementation for long ints 2020-06-08 12:48:32 +01:00
ed
b5214a341e Normalised lambda whitespace 2020-06-05 09:37:56 +01:00
ed
d510b73cdf Normalised all whitespace before args in std::function 2020-06-05 09:37:49 +01:00
ed
4b6be143cf Fixed some doxygen warnings 2020-05-18 14:43:50 +01:00
reuk
fca3429e6e
DSP: Update convolution 2020-05-15 18:06:03 +01:00
reuk
0e9fb915fa
CMake: Add Wpedantic as a recommended warning flag 2020-05-14 14:36:09 +01:00
reuk
092bc44413
MinGW: Fix windows/gcc warnings 2020-05-11 11:28:28 +01:00
reuk
f49b3733ec
Warnings: Silence some GCC warnings 2020-05-05 12:28:47 +01:00
ed
7553b8dc1b Added HSL support to Colour and use Colour::fromHSL() when parsing SVG HSL colours 2020-04-27 14:26:41 +01:00
reuk
b7e4099cd5 Cleanup: Fix some warnings 2020-04-27 10:22:06 +01:00
reuk
4cf66d6522 Cleanup: Remove redundant inlines 2020-04-27 10:22:06 +01:00
reuk
e13901d912 ClangCl: Silence code which warns when building on Windows with Clang 2020-04-27 10:22:06 +01:00
ed
77aff4658b Fixed an edge case in Random::nextFloat() for dividends approaching std::numeric_limits<uint32>::max() 2020-04-27 10:14:32 +01:00
Ivan Cohen
c138bf91b4 DSP: Revamp DSP module 2020-04-24 14:37:09 +01:00
Tom Poole
6cb75d9d2c Replaced all references to ROLI with Raw Material Software and regenerated all bytecode 2020-04-23 17:30:40 +01:00
Tom Poole
894e7d2bd2 Updated all license headers 2020-04-23 17:30:39 +01:00
ed
c2e3dcd8bf Updated the documentation of some methods which now return std::unique_ptr instead of raw pointers to remove references to deleting the returned object 2020-04-23 17:08:29 +01:00
ed
ffb7b0730d Increased the max number of warnings for the GCC/Clang/MSVC warning-squashing macros 2020-04-16 12:18:48 +01:00
reuk
e7e1de78fa Files: Add RangedDirectoryIterator 2020-04-13 13:16:06 +01:00
reuk
5f348c3040 Warnings: Add warning-wrangling header 2020-04-13 13:16:05 +01:00
reuk
175644e8c1 String: Provide range-for comaptibility 2020-04-13 13:16:05 +01:00
reuk
ece5644a20 CMake: Add support for building JUCE projects with CMake 2020-04-13 12:10:11 +01:00
reuk
1fdba480cc JUCE 6: Update version numbers 2020-04-11 15:03:19 +01:00
ed
5bb2e8ca6f Made PropertySet::setValue() methods take a StringRef instead of a const String& so that Identifiers can be implicitly cast 2020-04-02 16:12:04 +01:00
Lukasz Kozakiewicz
50310edc57 Android: Call __android_log_print() in chunks to ensure that the full log is printed 2020-03-27 18:10:59 +00:00
reuk
6a18c9e153 iOS: Fix type declaration in juce_File.h 2020-03-27 09:45:07 +00:00
Tom Poole
21f054b164 Documentation fix 2020-03-25 15:48:59 +00:00
reuk
dddeb1ad68 Build: Fix Xcode 11.4 compatibility issues 2020-03-25 13:10:32 +00:00
ed
5d9ab42195 Linux: Revert c47c790 and instead defer modifications to the fdReadCallbacks vector when inside a read callback until after the callback has been executed 2020-03-23 14:38:09 +00:00
ed
4a5dda489f Fixed some warnings with -Wconversion enabled 2020-03-17 09:02:57 +00:00
Tom Poole
5e9826ecf8 Added some missing license headers 2020-03-16 14:11:06 +00:00
ed
69d5f16be0 Added some more FileInputStream unit tests 2020-03-16 11:01:49 +00:00
ed
330df2b3e6 Fixed a regression opening file handles introduced in e65ac0b 2020-03-16 11:01:40 +00:00
reuk
a9492679da URL: Make downloadToFile return unique_ptr 2020-03-13 11:25:40 +00:00
reuk
5af01b9b16 Demos: Convey proper ownership semantics 2020-03-12 18:30:45 +00:00
Tom Poole
28e03f0815 Replaced all instances of JUCE_CONSTEXPR with constexpr 2020-03-11 17:21:30 +00:00
ed
49ac038662 Fixed some more warnings 2020-03-10 11:10:24 +00:00
ed
59a058fdc6 Fixed some warnings flagged up when enabling -Wswitch-enum, -Wswitch-default, -Wredundant-decls, and -Wimplicit-fallthrough 2020-03-09 17:39:28 +00:00
ed
f9961e9938 Fixed a bug in the previous commit 2020-03-09 14:43:59 +00:00
ed
5cf2802a00 macOS: Fixed a data race in URLConnectionState 2020-03-09 09:45:31 +00:00
ed
32f077a86a Use Logger::writeToLog() in PerformanceCounter::printStatistics() 2020-03-06 17:39:27 +00:00
ed
c47c790f79 Linux: Use list instead of vector for file descriptor callback storage in internal message queue to fix issues when recursively adding or removing callbacks 2020-03-06 16:52:13 +00:00
ed
e65ac0b2cd Fixed some warnings when calling open() with file mode bits specified but no O_CREAT flag 2020-03-03 17:54:24 +00:00
ed
618f3645b2 Android: Fixed some issues in the native content sharing code 2020-03-03 17:24:39 +00:00
ed
f2440ec8e2 Initialise dataSize in MemoryInputStream constructor that takes a MemoryBlock rvalue reference 2020-02-27 15:09:13 +00:00
reuk
4b7043b0cd OptionalScopedPointer: Added proper move semantics and convenience constructors 2020-02-25 17:36:36 +00:00
ed
08d0a12f03 Bump version number to 5.4.7 2020-02-10 14:16:54 +00:00