1. 7377026 C++: Add missing cstddef include to Node.h by Nikias Bassen · 10 years ago
  2. 063c629 bplist: Prevent crash in plist_from_bin() when parsing unusually structured binary plist by Nikias Bassen · 10 years ago
  3. 5ddbe5f C++: Make sure String::GetValue() and Key::GetValue() don't crash with NULL strings by Nikias Bassen · 10 years ago
  4. b6c43e9 Added const to Array.GetSize(), and to 3 Node methods. by Aaron Burghardt · 10 years ago
  5. ccd6f05 Change Clone() to be const, which required constructors with const references and a const GetValue(). by Aaron Burghardt · 10 years ago
  6. bc147d8 Fixed memory leaks in new_xml_plist() and parse_real_node(). by Aaron Burghardt · 10 years ago
  7. 83650b3 Properly rename header guards according to C++ standard by Nikias Bassen · 10 years ago
  8. 1c0b659 bplist: Silence compiler warning about 'always true' comparison due to type mismatch by Nikias Bassen · 10 years ago
  9. d05dca3 cython: Fix compiler warning by actually using the Uid factory by Martin Szulecki · 10 years ago
  10. d34facc cython: Replace old Pyrex for-from loop with normal one to fix compiler warning by Martin Szulecki · 10 years ago
  11. e05f126 cython: Fix Python library import fail due to removed 'plist_set_type' symbol by Martin Szulecki · 10 years ago
  12. 82e9057 cython: Do not export plist_new_key() which should not be used directly by Martin Szulecki · 10 years ago
  13. 7e5f4da cython: Fix compiler warning about uninitialized struct tm field by Martin Szulecki · 10 years ago
  14. cf73973 test: Fix make clean in relation with out-of-tree build directory by Martin Szulecki · 10 years ago
  15. 48ba2e3 Update AUTHORS from git history by Martin Szulecki · 10 years ago
  16. 63abebf xplist: Fix keys not being output correctly if converted to XML entities by Martin Szulecki · 10 years ago
  17. 06e7233 test: Add keys with XML entities to data plist files by Martin Szulecki · 10 years ago
  18. cc3efde test: Fix clean target to remove all generated files by Martin Szulecki · 10 years ago
  19. f7c8292 test: Add test cases for integer nodes by Nikias Bassen · 10 years ago
  20. 769ee9e test: Add data/7.plist to extra_dist target by Nikias Bassen · 10 years ago
  21. 6c0bf73 Handle signed vs. unsigned integer values correctly by Nikias Bassen · 10 years ago
  22. 8ac53f5 test: Use better test data for timezone tests by Nikias Bassen · 10 years ago
  23. 8456637 xplist: Handle DST-affected timezones correctly by Nikias Bassen · 10 years ago
  24. d5e1de6 xplist: Fix PLIST_DATE handling to respect the Mac epoch by Nikias Bassen · 10 years ago
  25. 1317925 Move deprecation marker also for C++ API for better compiler output by Martin Szulecki · 10 years ago
  26. 2e0242b xplist: Fix PLIST_DATE parsing in xml_to_node() by Nikias Bassen · 10 years ago
  27. 135164a Move deprecation marker after the function declaration for better compiler output by Nikias Bassen · 10 years ago
  28. a9ec8fa Removed plist_set_type() as it should not be used. by Nikias Bassen · 10 years ago
  29. c51d1a7 Redo PLIST_WARN_DEPRECATED macro to work with older llvm/clang by Martin Szulecki · 10 years ago
  30. 993f65b Rename "index" variable as it shadows global declaration on older systems by Martin Szulecki · 10 years ago
  31. 7b59a04 Added Doxygen comments to explicitly describe memory buffer ownership/responsibility. by Aaron Burghardt · 10 years ago
  32. b3cbcc2 xplist: Silence compiler warnings about shadowing global declarations by Nikias Bassen · 10 years ago
  33. 6a38f51 bplist: Fix memory leaking caused by unused nodes in plist_from_bin() by Nikias Bassen · 10 years ago
  34. df053cc test: Fix timezone test cases with set -e by Nikias Bassen · 10 years ago
  35. 88528c2 Simplify plist_dict_merge() after plist_dict_set_item() API change by Nikias Bassen · 10 years ago
  36. e1a4bd0 test: Add new timezone tests by Nikias Bassen · 10 years ago
  37. 56cd0e8 xplist: Fix timezone-bound date/time conversion by Nikias Bassen · 10 years ago
  38. 81cdd79 Drop manual endian.h header check by Chow Loong Jin · 10 years ago
  39. bd73598 Fix endian detection in configure.ac by Chow Loong Jin · 10 years ago
  40. c44a256 build-sys: Fix parallel build by Christophe Fergeau · 10 years ago
  41. f5f2f5e Post-release version bump to 1.12 by Nikias Bassen · 10 years ago
  42. 4f7d325 cython: Make sure to use plist_dict_set_item() instead of deprecated plist_dict_insert_item() by Nikias Bassen · 10 years ago 1.11
  43. 4105242 updated NEWS by Nikias Bassen · 10 years ago
  44. 6b719ec deprecated plist_dict_insert_item in favor of plist_dict_set_item by Nikias Bassen · 10 years ago
  45. f9299fa plist_dict_set_item: insert key/value pair if key not already present by Nikias Bassen · 10 years ago
  46. 6dcc8c4 Replace some LDADD references to use $(top_builddir) for distcheck by Martin Szulecki · 10 years ago
  47. 8867ee9 fix make distcheck by Nikias Bassen · 10 years ago
  48. 497a598 Force all dictionaries keys to be UTF-8 in Python 3 by Andrew Udvare · 10 years ago
  49. 2967207 Add URL for credit by Andrew Udvare · 10 years ago
  50. f3857e2 Hopefully bridge between Python 3 and 2 for strings by Andrew Udvare · 10 years ago
  51. cb1bb14 Fixes for Python 3.x (mainly that print is a function in 3 and can generally be treated like one in version 2.x) by Andrew Udvare · 10 years ago
  52. cd98a77 Ignore .kateconfig files by Andrew Udvare · 10 years ago
  53. 1f7c082 For first time builds, use the built-in bindings directory by Andrew Udvare · 10 years ago
  54. 6d4a268 Ignore .libs in cython, backup files, test-driver by Andrew Udvare · 10 years ago
  55. 5a7f0fb updated README by Nikias Bassen · 10 years ago
  56. ce2a16c bplist: prevent segmentation fault in plist_from_bin() by Nikias Bassen · 10 years ago
  57. a610172 lower libxml2 version requirement by Nikias Bassen · 10 years ago
  58. 16be030 fix installation of pkgconfig files by Nikias Bassen · 10 years ago
  59. fc34778 bplist: make plist_utf8_to_utf16 static since it is only used internally by Nikias Bassen · 10 years ago
  60. fc3bc57 xplist: fix another compiler warning with cast by Nikias Bassen · 10 years ago
  61. 554e891 bytearray: silence compiler warning about pointer arithmetic with cast by Nikias Bassen · 10 years ago
  62. 97be452 base64: silence compiler warning by using correct type by Nikias Bassen · 10 years ago
  63. 76d4a58 xplist: silence compiler warning by Nikias Bassen · 10 years ago
  64. 380080c xplist: fix shadowed variable declaration by Nikias Bassen · 10 years ago
  65. 39b3f63 libcnary: silence two compiler warnings by Nikias Bassen · 10 years ago
  66. a798afc change build system to autotools by Nikias Bassen · 10 years ago
  67. 3b76474 add new plist_dict_merge() function by Nikias Bassen · 10 years ago
  68. 8f644ca Update README with latest information and project URLs by Martin Szulecki · 10 years ago
  69. 86ae825 base64: get rid of strtok_r and use strspn+strcspn instead by Nikias Bassen · 10 years ago
  70. 4a7a087 base64: fix compilation with win32 by Nikias Bassen · 10 years ago
  71. c56c810 fixed mavericks compile problem, return iterator of _map.end() instead of iterator of NULL by Jim Koning · 11 years ago
  72. 95d1d0c UTF-16 surrogate pair fix by shane · 11 years ago
  73. e9995ae base64: use strtok_r instead of strtok to make sure we're thread safe by Nikias Bassen · 11 years ago
  74. e0fe1f5 bplist: use __FLOAT_WORD_ORDER__ instead of __VFP_FP__ for floating point endianness detection by Nikias Bassen · 11 years ago
  75. 8df77c9 Bump version to 1.10 for release by Nikias Bassen · 11 years ago 1.10
  76. a852ae6 updated NEWS by Nikias Bassen · 11 years ago
  77. 1b12d34 cython: added PLIST_UID support by Nikias Bassen · 11 years ago
  78. ef73474 cython: use uint64_t instead of int for Integer get_value and __repr__ by Nikias Bassen · 11 years ago
  79. 1f14105 swig: added PLIST_UID support by Nikias Bassen · 11 years ago
  80. 553c384 C++: added support for PLIST_UID nodes (class Uid) by Nikias Bassen · 11 years ago
  81. 057fa38 cython: return correct Key_factory in plist_t_to_node by Nikias Bassen · 11 years ago
  82. 14a92d9 C++: add Key.h to public headers by Nikias Bassen · 11 years ago
  83. 40ddddc cython: removed unused return statements by Nikias Bassen · 11 years ago
  84. 94fa6e2 cython: get rid of ctypedefs and use libc.stdint instead by Nikias Bassen · 11 years ago
  85. 927c81a cython: fixed missing class definition for PLIST_KEY type by Nikias Bassen · 11 years ago
  86. 1eb804e renamed plutil to plistutil to not mask Apple's plutil on OSX by Nikias Bassen · 11 years ago
  87. b069971 Bump version to 1.9 for release by Nikias Bassen · 11 years ago 1.9
  88. 80b5e50 added PLIST_KEY support to cython bindings by Nikias Bassen · 11 years ago
  89. aea4cf6 added PLIST_KEY support to swig bindings by Nikias Bassen · 11 years ago
  90. 32320a1 added Key.h to plist++ header file by Nikias Bassen · 11 years ago
  91. 188b605 updated NEWS by Nikias Bassen · 11 years ago
  92. c39dc2e xml plists: make sure we don't produce <data/> if it's empty by Nikias Bassen · 11 years ago
  93. 46a5feb C++ bindings: added support for PLIST_KEY nodes. by Nikias Bassen · 11 years ago
  94. 58151b6 Fix crash when converting plists containing comments by Nikias Bassen · 11 years ago
  95. c9382f0 plist_data_compare: for PLIST_DATA, compare length before accessing data by Nicolás Alvarez · 12 years ago
  96. 502d52a xplist: set DST to not available in parse_date() by Nikias Bassen · 12 years ago
  97. 817749d implemented handling of UID keyed encoding type by Nikias Bassen · 12 years ago
  98. fee6a9e include sys/time.h for systems that don't include it automatically by Nikias Bassen · 12 years ago
  99. 335b25f Fix building with parallel build makeopts by Nikias Bassen · 12 years ago
  100. f024951 remove useless win32 include from plist/Date.h by Nikias Bassen · 12 years ago