Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-06-04 | Unify plistutil usage output with other tools and add project URLs | Martin Szulecki | 1 | -5/+10 | |
2020-06-04 | Add config.h include to plistutil.c | Martin Szulecki | 1 | -0/+3 | |
2020-06-04 | Replace tabs with correct space indentation in plistutil.c | Martin Szulecki | 1 | -10/+10 | |
2020-06-03 | c++: Switch to c++ headers | Rosen Penev | 12 | -13/+13 | |
[clang-tidy]Found with hicpp-deprecated-headers Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2020-06-03 | c++: Remove redundant initialization | Rosen Penev | 2 | -2/+2 | |
[clang-tidy] Found with readability-redundant-member-init Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2020-06-03 | c++: Add closing namespace comment | Rosen Penev | 12 | -12/+12 | |
[clang-tidy] Found with google-readability-namespace-comments Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2020-06-03 | c++: Fix inconsistent declarations | Rosen Penev | 3 | -4/+4 | |
Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2020-06-03 | Remove pointless return in void functions | Rosen Penev | 3 | -14/+0 | |
[clang-tidy] Found with readability-redundant-control-flow Signed-off-by: Rosen Penev <rosenp@gmail.com> | |||||
2020-05-26 | Updated NEWS for release | Nikias Bassen | 1 | -0/+14 | |
2020-05-26 | Bump version and soversion for release | Nikias Bassen | 1 | -2/+2 | |
2020-05-26 | Make plist_bool_val_is_true() return 0 instead of -1 if node is NULL or not ↵ | Nikias Bassen | 1 | -1/+1 | |
a PLIST_BOOLEAN | |||||
2020-05-25 | Return NULL from plist_copy() if passed a NULL pointer | Xiao Deng | 1 | -1/+1 | |
This will prevent an assert if a NULL pointer is passed, and can make writing some code easier and cleaner without the need for a NULL check. For example, plist_copy(plist_dict_get_item(dict, "abc")) would give us a copy of the dict's node if the dict has a value for the given key, or NULL without any further checks. | |||||
2020-05-24 | plistutil: Improve usage text alignment | Nikias Bassen | 1 | -4/+4 | |
2020-05-24 | plistutil: Added ability to specify output format | Jaywalker | 1 | -8/+59 | |
2020-05-24 | plistutil: Added ability for files to be read from stdin | Jaywalker | 1 | -25/+71 | |
2020-05-21 | Fix symbol mismatch between public header and interface (plist_bool_val_is_true) | Nikias Bassen | 1 | -1/+1 | |
2020-05-14 | time64: Silence compiler warnings about shadowed variable declarations | Nikias Bassen | 1 | -29/+29 | |
2020-05-14 | bplist: Prevent 32bit compiler warning | Nikias Bassen | 1 | -1/+3 | |
2020-05-14 | Fix configure check for -lm to actually check if -lm is required | Nikias Bassen | 1 | -2/+8 | |
AC_TRY_COMPILE doesn't try to link so we better use AC_TRY_LINK | |||||
2020-05-14 | Links with -lm if fmin doesn't seem to be a builtin | Nikias Bassen | 1 | -0/+12 | |
2020-05-11 | bplist: Remove unnecessary allocation and unused variables | Nikias Bassen | 1 | -10/+5 | |
2020-05-11 | Suppress compiler warning about memmem on Linux | Nikias Bassen | 1 | -0/+1 | |
2020-05-11 | Add plist_*_val_compare, plist_*_val_contains, etc. for the respective node ↵ | Nikias Bassen | 3 | -1/+415 | |
types ... except container node types like PLIST_ARRAY or PLIST_DICT. | |||||
2020-04-21 | time64/ctime64_r: localtime64_r can fail | Derrick Lyndon Pallas | 1 | -1/+3 | |
In ctime64_r, the call to localtime64_r can fail. If we don't check for this and then call asctime64_r, the results are garbage. Signed-off-by: Derrick Lyndon Pallas <derrick@pallas.us> | |||||
2020-04-14 | cython: Fix get_value for Data nodes | Nikias Bassen | 1 | -5/+1 | |
2020-04-13 | [github-actions] Install cython via pip | Nikias Bassen | 1 | -2/+3 | |
2020-04-13 | cython: Fix handling of Date nodes (needs MACH_EPOCH) | Nikias Bassen | 1 | -0/+4 | |
2019-12-18 | test: Use diff --strip-trailing-cr to fix tests on windows | Nikias Bassen | 3 | -9/+6 | |
2019-12-18 | [github-actions] Run last step in windows build check even if previous one ↵ | Nikias Bassen | 1 | -0/+1 | |
failed | |||||
2019-12-18 | test: Write outputfile to test log for signedunsigned2 test | Nikias Bassen | 1 | -0/+3 | |
2019-12-18 | [github actions] Print test log of failed tests when testing windows build | Nikias Bassen | 1 | -0/+12 | |
2019-12-09 | bplist: Silence compiler warning | Nikias Bassen | 1 | -2/+2 | |
2019-12-09 | [github actions] trying to fix windows build... | Nikias Bassen | 1 | -3/+3 | |
2019-12-09 | [github action] Hopefully fix windows build | Nikias Bassen | 1 | -1/+1 | |
2019-12-09 | [github actions] Trying to add windows to build workflow | Nikias Bassen | 1 | -15/+29 | |
2019-12-09 | [github actions] Update build workflow to not run brew as root for macOS | Nikias Bassen | 1 | -1/+1 | |
2019-12-09 | [github actions] Update build workflow | Nikias Bassen | 1 | -0/+15 | |
2019-12-09 | bplist: Add cast to/from uint32_t when reading/storing indices for recursion ↵ | Nikias Bassen | 1 | -4/+4 | |
check | |||||
2019-12-09 | [github actions] Fix workflow | Nikias Bassen | 1 | -1/+4 | |
2019-12-09 | bplist: use ptr_array instead of PLIST_ARRAY to store node indices for ↵ | XD | 1 | -10/+10 | |
recursing check This improves performance by at least 30% for large files, and also reduces the memory footprint. | |||||
2019-12-09 | ptrarray: Add function returning the size (number of elements) of the array | XD | 2 | -1/+7 | |
2019-12-05 | Add build workflow | Nikias Bassen | 1 | -0/+18 | |
2019-11-07 | Bump version to 2.1.0 for release2.1.0 | Nikias Bassen | 1 | -1/+1 | |
2019-11-07 | Bump soversion due to functions added to interface | Nikias Bassen | 1 | -1/+1 | |
2019-11-07 | Updated NEWS for release | Nikias Bassen | 1 | -0/+23 | |
2019-11-07 | xplist: Bail out when '.' is found while checking for ',' in double to ↵ | Nikias Bassen | 1 | -0/+2 | |
string conversion | |||||
2019-11-07 | Add plist_get_data_ptr() and plist_get_string_ptr() to the interface | Nikias Bassen | 2 | -0/+51 | |
2019-11-07 | Add plist_to_bin_free() and plist_to_xml_free() functions that free memory ↵ | Nikias Bassen | 3 | -0/+24 | |
allocated by plist_to_bin()/plist_to_xml() | |||||
2019-11-07 | xplist: Increase precision when converting PLIST_REAL nodes to XML | Nikias Bassen | 1 | -37/+16 | |
2019-10-23 | Updated .gitignore | Nikias Bassen | 1 | -0/+2 | |