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

142 commits

Author SHA1 Message Date
jules
f6395d4cda Raised the warnings level in the introjucer, and fixed a few warnings that were thrown up by this. 2015-03-31 11:44:10 +01:00
jules
c66f412224 Optimised performance of String::isEmpty() 2015-03-27 09:24:30 +00:00
jules
18dd0af6c1 Removed assertions about invalid characters in Identifier constructors. 2015-03-26 15:03:44 +00:00
jules
710aec4503 Fixed a couple of broken unit tests 2015-03-23 13:01:43 +00:00
jules
8d8c946528 Tidied up some inconsistent use of size_t and a problem in a demo build. 2015-02-06 08:59:20 +00:00
jules
c5595695fe Optimisation to XML parsing of documents that contain large text sections. 2015-01-10 11:40:09 +00:00
jules
7233c1b8df Made a couple of String methods more robust in the edge-case where they get called with a recursive reference to the target string. 2015-01-06 10:47:04 +00:00
jules
96054060cd Tweak to avoid a compiler warning. 2015-01-06 09:51:52 +00:00
jules
d9e902e80f Workarounds for build problems with mingw in C++11 mode. 2014-12-23 15:34:32 +00:00
jules
8c66a5e767 Added flag JUCE_COMPILER_SUPPORTS_INITIALIZER_LIST, and implemented some constructors for StringArray and Array that use C+++11 initialiser lists. 2014-12-23 15:01:10 +00:00
jules
2fd89b0ac4 A few minor clean-ups. 2014-08-26 10:17:40 +01:00
jules
413954f60c Documentation fix. 2014-07-21 16:49:55 +01:00
jules
2f1ef234ce Tightened up a few places where numeric conversion warnings could happen. 2014-07-10 18:57:24 +01:00
jules
371e91c615 Fixed a case-comparison problem in String::compareNatural() and added some unit tests for it. 2014-07-03 12:24:36 +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
3c8fbc0bfe MSVC UTF-32 build fix. 2014-05-30 09:10:09 +01:00
jules
69ff02b46c Couple of fixes for a UTF-32 build. 2014-05-29 21:02:13 +01:00
jules
412c86a167 Avoided a warning. 2014-05-27 18:21:23 +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
cf4cde192d Added a couple of missing JUCE_API annotations. 2014-05-19 09:41:22 +01:00
jules
e8a1876a95 Added an operator[] to StringRef 2014-03-27 17:08:50 +00:00
jules
7d3782b9e9 Minor documentation typo. 2014-02-05 16:35:26 +00:00
jules
7e1dcaa0ed Improved comment. 2014-01-23 09:52:43 +00:00
jules
28c281c6d3 Added a missing operator<< declaration for String. 2014-01-20 15:40:07 +00:00
jules
492def9abf Made CharPointer_UTF8 more consistent in the way it handles broken sequences. 2014-01-20 12:06:14 +00:00
jules
d582a66917 Introjucer: Added gnu++0x flag for android builds. Support for SVG icons. 2014-01-02 14:33:06 +00:00
jules
ce8d56d3a1 Added copy constructors to LocalisedStrings. 2014-01-01 16:57:25 +00:00
jules
ca42bdaeb4 Documentation update + Xcode 3 compiler fix. 2014-01-01 16:20:25 +00:00
jules
ab053c5503 Added a LocalisedString::setFallback() method. 2013-12-29 11:02:59 +00:00
jules
dc182eef2c Improvement to OSX double->string conversion for better speed + thread-safety. 2013-12-17 20:14:54 +00:00
jules
2edec00b55 Removed a few more uses of String::empty. 2013-12-01 23:28:31 +00:00
jules
2623f4d1e1 Added method String::clear(), and used it to replace a few uses of String::empty. 2013-12-01 11:32:39 +00:00
jules
39cc7d8d82 Fixed some var::equals ordering problems, and added unit tests for this. 2013-11-22 11:02:06 +00:00
jules
a9c2354ed0 Provided public access to the Array<String> that's inside StringArray. 2013-11-10 17:27:54 +00:00
jules
c8f72856d6 Added a template param to a CharacterFunctions method. 2013-11-07 14:39:22 +00:00
jules
a081f0f641 Added/refactored a couple of String methods. 2013-11-07 14:38:01 +00:00
jules
12a8dd3092 Avoided some pedantic GCC warnings. 2013-11-03 19:16:52 +00:00
jules
eb7e42b0ad Added method String::hash() 2013-10-25 13:04:47 +01:00
jules
5f00e94f3e Fixed a string allocation problem. 2013-10-17 17:34:22 +01:00
jules
59b9b0ccaf Couple of minor fixes to CharacterFunctions, and added a find-character method. 2013-10-15 19:44:37 +01:00
jules
a8c754f06c Added some comparison methods to Identifier. 2013-10-14 12:46:44 +01:00
jules
a7df25f860 Added methods var::clone() and DynamicObject::clone() for deep-copying objects. 2013-10-12 15:25:44 +01:00
jules
18a012f7db Optimised Array with some move-operators. 2013-10-04 09:59:24 +01:00
jules
bb98c00d0d Avoided some pedantic compiler warnings in the audio plugin code. 2013-10-01 11:53:17 +01:00
jules
9243e3dbdd Minor tinkering with the String class. 2013-09-19 22:25:16 +01:00
jules
221786dfcf New method Array::addNullTerminatedArray(), and misc minor tightening-up of code. 2013-09-18 19:10:01 +01:00
jules
fc772941d6 Fixed some pedantic warnings. 2013-09-16 18:47:28 +01:00
jules
addd649b27 Disambiguations to keep the MS compiler happy when using UTF32 string mode. 2013-09-13 16:12:05 +01:00
jules
c54ca1037d Fixes for builds using utf-32 string storage. 2013-09-12 16:24:08 +01:00
jules
94f7377009 Typo fix. 2013-09-11 15:34:12 +01:00