Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-12-13 | xplist: fix shadowed variable declaration | 1 | -3/+3 | ||
2013-12-13 | libcnary: silence two compiler warnings | 1 | -2/+2 | ||
2013-12-13 | change build system to autotools | 47 | -752/+915 | ||
2013-12-13 | add new plist_dict_merge() function | 2 | -0/+37 | ||
2013-11-13 | Update README with latest information and project URLs | 1 | -21/+39 | ||
2013-11-12 | base64: get rid of strtok_r and use strspn+strcspn instead | 1 | -13/+14 | ||
strtok_r is not available on win32 and the designated strtok_s function is reported to not work on windows xp. Hence we use an easier an non-destructive implementation with strspn and strcspn to strip out the whitespace. | |||||
2013-11-12 | base64: fix compilation with win32 | 1 | -0/+4 | ||
this is a temporary fix, we'll replace strtok_r with a custom implementation soon. | |||||
2013-10-29 | fixed mavericks compile problem, return iterator of _map.end() instead of ↵ | 1 | -1/+1 | ||
iterator of NULL | |||||
2013-10-17 | UTF-16 surrogate pair fix | 1 | -4/+37 | ||
Handle UTF-16 surrogate pair conversion to/from UTF-8 | |||||
2013-10-09 | base64: use strtok_r instead of strtok to make sure we're thread safe | 1 | -2/+3 | ||
2013-05-30 | bplist: use __FLOAT_WORD_ORDER__ instead of __VFP_FP__ for floating point ↵ | 1 | -1/+4 | ||
endianness detection | |||||
2013-03-19 | Bump version to 1.10 for release1.10 | 2 | -2/+2 | ||
2013-03-19 | updated NEWS | 1 | -0/+13 | ||
2013-03-19 | cython: added PLIST_UID support | 2 | -0/+55 | ||
2013-03-19 | cython: use uint64_t instead of int for Integer get_value and __repr__ | 2 | -4/+6 | ||
2013-03-19 | swig: added PLIST_UID support | 1 | -0/+7 | ||
2013-03-19 | C++: added support for PLIST_UID nodes (class Uid) | 6 | -0/+131 | ||
2013-03-19 | cython: return correct Key_factory in plist_t_to_node | 1 | -1/+1 | ||
2013-03-19 | C++: add Key.h to public headers | 1 | -0/+1 | ||
2013-03-19 | cython: removed unused return statements | 1 | -3/+0 | ||
2013-03-19 | cython: get rid of ctypedefs and use libc.stdint instead | 1 | -11/+1 | ||
2013-03-19 | cython: fixed missing class definition for PLIST_KEY type | 2 | -1/+76 | ||
2013-03-18 | renamed plutil to plistutil to not mask Apple's plutil on OSX | 6 | -16/+16 | ||
2013-03-18 | Bump version to 1.9 for release1.9 | 2 | -2/+2 | ||
2013-03-18 | added PLIST_KEY support to cython bindings | 2 | -0/+6 | ||
2013-03-18 | added PLIST_KEY support to swig bindings | 1 | -0/+4 | ||
2013-03-18 | added Key.h to plist++ header file | 1 | -0/+1 | ||
2013-03-18 | updated NEWS | 1 | -0/+13 | ||
2013-03-07 | xml plists: make sure we don't produce <data/> if it's empty | 1 | -0/+9 | ||
2012-11-13 | C++ bindings: added support for PLIST_KEY nodes. | 4 | -1/+133 | ||
2012-11-08 | Fix crash when converting plists containing comments | 1 | -0/+4 | ||
Thanks to free2000fly for pointing this out. The issue was that XML plists with comments converted to binary plists would result in invalid binary nodes, thus converting back these binary plists resulted in a crash. | |||||
2012-09-16 | plist_data_compare: for PLIST_DATA, compare length before accessing data | 1 | -0/+2 | ||
2012-09-16 | xplist: set DST to not available in parse_date() | 1 | -0/+1 | ||
2012-09-16 | implemented handling of UID keyed encoding type | 4 | -2/+168 | ||
2012-08-15 | include sys/time.h for systems that don't include it automatically | 1 | -0/+1 | ||
2012-07-09 | Fix building with parallel build makeopts | 1 | -0/+2 | ||
2012-05-08 | remove useless win32 include from plist/Date.h | 1 | -4/+0 | ||
2012-04-24 | fix plist_dict_set_item() and plist_array_set_item() | 1 | -9/+17 | ||
2012-04-24 | libcnary: return removed/detached index in node_list_remove/node_detach | 2 | -4/+7 | ||
2012-03-22 | cython: Fix broken String plist handling in Python | 1 | -5/+5 | ||
2012-02-12 | set PLIST_BYTE_ORDER if required and compiler provides it | 1 | -0/+9 | ||
2012-02-11 | bplist: fix invalid memory access in copy_plist_data | 1 | -4/+4 | ||
2012-01-12 | fix compiler warnings | 4 | -13/+4 | ||
2012-01-12 | libcnary: fix missing return value and missing variable initialization | 1 | -2/+2 | ||
2012-01-11 | Bump version to 1.8 for release1.8 | 2 | -2/+2 | ||
2012-01-11 | Update NEWS for release | 1 | -0/+8 | ||
2012-01-11 | node_list: Fix memory corruption | 1 | -1/+7 | ||
The corruption occured if you removed the last node from the list and later add a new node to the list. | |||||
2011-09-26 | Allow swig typemap to recognize any std::vector<char> as a python string. | 1 | -4/+4 | ||
2011-09-26 | cython: use bint instead of bool, fix deprecated stuff | 2 | -28/+27 | ||
2011-09-26 | More qualifiers. | 2 | -19/+23 | ||