1. cacb6a4 fix stdexcept by christopherdunn · 10 years ago master
  2. ec2aba4 Added structured error reporting to Reader. by aaronjacobs · 10 years ago
  3. c275931 Added features that allow the reader to accept common non-standard JSON. by aaronjacobs · 10 years ago
  4. c67c6c4 Added missing includes for std::istream. by aaronjacobs · 10 years ago
  5. b74e45c - disabled warning 4786 for VS6 caused by STL (identifier was truncated to '255' characters in the debug information) by blep · 11 years ago
  6. d858c27 - New CMake based build system. Based in part on contribution from by blep · 11 years ago
  7. 5a60f3b - Patch #3393345: BOOST_FOREACH compatibility. Made Json::iterator more standard compliant, added missing iterator_category and value_type typedefs (contribued by Robert A. Iannucci). by blep · 11 years ago
  8. 7bfde9d Made it possible to drop null placeholders from array output. by aaronjacobs · 12 years ago
  9. b0dd48e Added an exit() to JSON_FAIL_MESSAGE to fix "no return" errors. by aaronjacobs · 12 years ago
  10. b00a00f Got rid of several unnecessary includes of <iostream>. by aaronjacobs · 12 years ago
  11. e0f5afd Made JSON_USE_EXCEPTION's value in config.h a default that can be overridden. by aaronjacobs · 13 years ago
  12. 994b59e Added line breaks to make error messages easier to read. by aaronjacobs · 13 years ago
  13. 3deff27 Gave a more consistent behavior to the Value::isFoo methods. See by aaronjacobs · 13 years ago
  14. 24eb029 Fixed a missing include error. by aaronjacobs · 13 years ago
  15. 8d8df59 Fixed a bunch of compilation errors when JSON_HAS_INT64 is set. by aaronjacobs · 13 years ago
  16. 82f28d6 Centralized assertion macros and made them obey JSON_USE_EXCEPTION. by aaronjacobs · 13 years ago
  17. a620bb4 Fixed typo: amalga*ma*te. Replaced macro JSON_IS_AMALGATED with JSON_IS_AMALGAMATION by blep · 13 years ago
  18. 518ede5 Value::compare() is now const and has an actual implementation with unit tests. by blep · 13 years ago
  19. 5f50471 Untabified some sources by blep · 13 years ago
  20. 9f11078 Release test-0.6.0 by blep · 13 years ago
  21. 77c41cf Added support for amalgated source and header generation (a la sqlite). Refer to README.txt section "Generating amalgated source and header" for detail. by blep · 13 years ago
  22. eb6637a Added known bug reference for experimental internal map. by blep · 13 years ago
  23. 320b9a3 Renamed Reader::getFormatedErrorMessages() to getFormattedErrorMessages. Bug #3023708 (Formatted has 2 't'). The old member function is deprecated but still present for backward compatibility. by blep · 13 years ago
  24. d9e699f Major rework of 64 integer support: 64 bits integer are only returned when explicitly request via Json::Value::asInt64(), unlike previous implementation where Json::Value::asInt() returned a 64 bits integer. by blep · 13 years ago
  25. efe4358 Added float Json::Value::asFloat() to obtain a floating point value as a float (avoid lost of precision warning caused by used of asDouble() to initialize a float). by blep · 13 years ago
  26. 57c83e2 - Array index can be passed as int to operator[], allowing use of literal: by blep · 13 years ago
  27. b69cb34 JsonCpp is now licensed under MIT license, or public domain if desired and recognized in your jurisdiction. by blep · 14 years ago
  28. 82d2025 - Moved definition of Json::Int and Json::UInt to config.h which compiler detection logic to define them to 64 bits integer if JSON_NO_INT64 is not defined. by blep · 14 years ago
  29. 626d738 Removed experimental ValueAllocator, it caused static initialization/destruction order issues (bug #2934500). The DefaultValueAllocator has been inlined in code. by blep · 14 years ago
  30. 338ab72 Removed experimental notification on iterators, and added experimental status for allocator (to be removed) by blep · 14 years ago
  31. 1d97149 - added Int/UInt typedef in Json namespace. Modified Value::Int and Value::UInt to be typedef on those. Modified code to use Json::Int instead of Value::Int. by blep · 14 years ago
  32. b12a7a0 Integrated part of Patch #2839016, fixing default iterator initialization when using internal map. by blep · 14 years ago
  33. 6603764 Fixed iteration bug over null values. by blep · 14 years ago
  34. cc03973 - added mini unit testing framework by blep · 14 years ago
  35. d097fa9 - added Features class that describes allowed extension for Reader, to allow for strict configuration by blep · 14 years ago
  36. e4047e2 Implementing support for reading and writing Unicode escape sequences. by malays · 14 years ago
  37. 593c865 I always have compiler problems when using operator[](unsigned) when I pass int instead, so I added a note to the comments. by christopherdunn · 17 years ago
  38. 3aeba0b Added StyledStreamWriter, which has no reason to derive from Writer, since its write() method does cannot return a string and must take a stream. by christopherdunn · 17 years ago
  39. bd76bb6 Added prop svn:eol-style native. Stripped carriage-returns on unix. Hopefully, this will work for Windows too now. by christopherdunn · 17 years ago
  40. 9c9ab3b Fixed compilation warnings. Added -Wall to linux-gcc compilation. JSON_ASSERT_MESSAGE now throws exception (but JSON_ASSERT does not). by christopherdunn · 17 years ago
  41. 87b9607 Added virtual destructor to StyledWriter to avoid -Wall warning from g++ by christopherdunn · 17 years ago
  42. ce1d5e2 Fixed 2.95.3 header probs by christopherdunn · 17 years ago
  43. f402552 Added istream/ostream funcs/operators by christopherdunn · 17 years ago
  44. ed3b7df Added empty() operator-bang and isNull() by christopherdunn · 17 years ago
  45. d12da0c Added removeMember() and altered a few comments. by christopherdunn · 17 years ago
  46. 0a262cd Added/clarified comments. Move extra verbiage out of brief sections. by christopherdunn · 17 years ago
  47. c48354a setComment() will assert if comment does not start with / (or if it were NULL, which would have seg-faulted before). by christopherdunn · 17 years ago
  48. a504898 Added comments, pre- and post-condition for resize(), clear(), Value(ValueType). by christopherdunn · 17 years ago
  49. 8bc97fc - Made FastWriter output more compact. - fixed bug in runjsontests.py script. by blep · 17 years ago
  50. 718a69f - reorganized repository to match standard layout by blep · 17 years ago