Tom Poole
|
52a4939b62
|
Updated some documentation
|
2019-06-12 15:01:11 +01:00 |
|
Tom Poole
|
16dd26649a
|
Fixed some GCC compiler warnings and removed deprecated functions
|
2019-06-04 16:48:44 +01:00 |
|
jules
|
c6d1828a32
|
A few more internal updates for better smart pointer use
|
2019-05-19 11:44:22 +01:00 |
|
jules
|
0fb8c8e82a
|
Added handy new function parseXMLIfTagMatches(), and refactored a lot of old code that was parsing XML in a more clunky way
|
2019-05-19 08:16:27 +01:00 |
|
jules
|
2e2cfb5f6c
|
Made a lot of the functions that used to return a raw XmlElement* instead return a std::unique_ptr<XmlElement> to make it safer and more concise to capture them. Also added new methods to XmlElement for generating text, and deprecated the old ones
|
2019-05-09 10:51:19 +01:00 |
|
ed
|
497a1b3fb7
|
Added juce_UnitTestCategories.h to replace raw strings used for test categories
|
2019-04-03 15:10:40 +01:00 |
|
ed
|
f3af250ff7
|
Tidied up unit test code layout
|
2019-04-02 11:54:29 +01:00 |
|
Tom Poole
|
0d019acd1c
|
Added a trailing decimal when serialising integer valued doubles
|
2019-03-21 17:50:11 +00:00 |
|
Tom Poole
|
bbe49f6b36
|
Serialise doubles into more human friendly XML and JSON
|
2019-02-27 17:59:24 +00:00 |
|
Tom Poole
|
865eabd434
|
Fixed a bug writing doubles to XML and JSON
|
2019-02-11 11:11:44 +00:00 |
|
ed
|
62958a79ea
|
Whitespace
|
2019-02-08 09:42:17 +00:00 |
|
ed
|
a096b4f707
|
Added an assertion to XmlElement::removeChildElement() to check that childToRemove is actually a child of the XmlElement
|
2019-02-08 09:24:02 +00:00 |
|
ed
|
3ba771507d
|
Avoid unnecessary zeros when writing double values to XML or JSON
|
2018-12-17 16:32:57 +00:00 |
|
Tom Poole
|
721d732b40
|
Reverted the numberOfDecimalPlaces behaviour of the String constructor
|
2018-12-07 13:52:54 +00:00 |
|
ed
|
eaf0f990d4
|
Replaced all uses of static_cast<Type&&> with std::move
|
2018-11-28 17:29:20 +00:00 |
|
jules
|
768139a298
|
Added some free functions to help make XML parsing less verbose: parseXML()
|
2018-10-15 16:08:25 +01:00 |
|
Tom Poole
|
493591a7ef
|
Cleaned up some doc comments
|
2018-08-29 10:56:56 +01:00 |
|
Tom Poole
|
ab863a6dc2
|
Replaced all usage of ScopedPointer with std::unique_ptr
|
2018-04-19 20:27:47 +01:00 |
|
hogliux
|
736a07e4ce
|
Added a setTagName method to XmlElement
|
2018-04-04 10:46:18 +01:00 |
|
ed
|
cdbc28c18b
|
Add documentation tags
|
2018-03-15 12:10:32 +00:00 |
|
jules
|
8d09eaadb6
|
Removed some defunct code from the C++1 feature detection macros, and simplified code which no longer needs to test for feature availability
|
2018-01-11 09:08:51 +00:00 |
|
jules
|
1a60fa9765
|
More ScopedPointer/unique_ptr compatibility work
|
2018-01-10 17:35:08 +00:00 |
|
jules
|
85f74ca7d3
|
Clarified comments around the JUCE_ALLOW_STATIC_NULL_VARIABLES items to make clear that they're deprecated
|
2017-12-31 10:49:33 +00:00 |
|
jules
|
babea0885b
|
Added a method ValueTree::appendChild(). Also tidied up a lot of the ValueTree comments, which were a bit scrappy.
|
2017-11-11 14:17:48 +00:00 |
|
jules
|
f0ef700e46
|
Modernised a bunch of code mainly relating to character/string iteration
|
2017-10-19 16:52:20 +01:00 |
|
jules
|
95053c0665
|
Quick spruce-up in the XML parser
|
2017-10-18 15:33:34 +01:00 |
|
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 |
|
tpoole
|
7d2f59909e
|
Minor documentation fixes
|
2017-10-06 12:33:55 +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
|
9ae25d13c2
|
Documentation: Some typo fixes
|
2017-06-08 16:51:07 +01:00 |
|
hogliux
|
b5afccc37c
|
Updated file headers and the README with the JUCE 5 license
|
2017-04-27 14:43:04 +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
|
b8d1183f78
|
Fixed a typo in a comment
|
2017-03-17 11:44:32 +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 |
|
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 |
|
jules
|
9fa0d49be7
|
Added an option JUCE_ALLOW_STATIC_NULL_VARIABLES that can be used to turn off dangerous statics like String::empty, var::null, etc.
|
2016-09-16 12:03:02 +01:00 |
|
hogliux
|
26b6f01ce3
|
Replace all "zeros" with "nullptr" in code documentation when referring to a pointer value
|
2016-08-03 09:43:07 +01:00 |
|
hogliux
|
cc6f0a1de6
|
Replace CR and CRLF endings with unix (LF) style endings in xml document as required by the W3 xml specification
|
2016-06-15 16:15:48 +01:00 |
|
Timur Doumler
|
70949aa0c6
|
Added several new features: support for AudioUnit v3, new simplified JUCE module format, deleted the Introjucer and replaced it by the Projucer, various improvements for exporting of iOS and Android projects.
|
2016-04-06 18:31:24 +01:00 |
|
jules
|
ae712c72d8
|
Cleaned up a few String::empty uses
|
2015-12-21 12:01:28 +00:00 |
|
jules
|
02492b36b9
|
Lots of small whitespace tweaks.
|
2015-12-13 19:32:05 +00:00 |
|
jules
|
705e7f6110
|
Added method XmlElement::isValidXmlName() and implemented standard-compliant checking for XML name validity
|
2015-10-27 16:50:31 +00:00 |
|
hogliux
|
c7b8e77031
|
Update copyright notice
|
2015-07-22 15:59:34 +01:00 |
|
jules
|
8f51420c8d
|
Minor documentation fix.
|
2015-03-12 09:42:26 +00:00 |
|
jules
|
b2c9029026
|
Minor improvement to XML parsing.
|
2015-01-10 13:23:51 +00:00 |
|
jules
|
c5595695fe
|
Optimisation to XML parsing of documents that contain large text sections.
|
2015-01-10 11:40:09 +00:00 |
|
jules
|
aa59b95a98
|
Improved a comment
|
2014-11-11 09:55:51 +00:00 |
|
jules
|
e60aa581d6
|
Added some missing semi-colons.
|
2014-10-14 11:48:16 +01:00 |
|
jules
|
d42a606b99
|
Tried to improve the explanation for XmlElement::findParentElementOf.
|
2014-08-20 20:59:31 +01:00 |
|