aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2020-05-07jansson 2.13.1v2.13.12.13Petri Lehtinen6-7/+20
2020-05-07Merge pull request #535 from xry111/clang-format-check-dist-fixPetri Lehtinen1-1/+1
add `scripts` directory to EXTRA_DIST
2020-05-07Merge pull request #534 from xry111/shared_lib_interface_fixPetri Lehtinen2-2/+2
add jansson_* to shared library exports
2020-05-06add `scripts` directory to EXTRA_DISTXℹ Ruoyao1-1/+1
2020-05-06add jansson_* to shared library exportsXℹ Ruoyao2-2/+2
2020-05-05jansson 2.13v2.13Petri Lehtinen7-10/+10
2020-01-21Merge pull request #521 from NanXiao/patch-1Petri Lehtinen1-1/+1
Update apiref.rst
2020-01-21Update apiref.rstNan Xiao1-1/+1
2019-10-24Merge pull request #510 from AllenX2018/improve-build-docPetri Lehtinen1-0/+21
add MinGW build guideline and tips to disable building docs
2019-10-24Fix the length of a section headingPetri Lehtinen1-1/+1
2019-10-24Merge pull request #509 from AllenX2018/update-CHANGESPetri Lehtinen1-0/+45
add changes since v2.12
2019-10-24Small modifications to CHANGESPetri Lehtinen1-14/+4
2019-10-22add changes since v2.12allen1-0/+55
2019-10-21Merge pull request #508 from akheron/clang-formatPetri Lehtinen47-2832/+2441
Format code with clang-format
2019-10-21add MinGW build guideline, add new version of Visual StudioAllenX20181-0/+21
2019-10-21Set autoconf bug-report param to point to github issuesPetri Lehtinen1-1/+1
2019-10-21Fix clang-format version checkingPetri Lehtinen2-12/+12
2019-10-21Run clang-format with make checkPetri Lehtinen5-5/+11
2019-10-21Tweak clang-format configuration a bitPetri Lehtinen30-606/+577
Set ColumnLimit to 90, remove AllowShortCaseLabelsOnASingleLine.
2019-10-21Support running a specific clang-format version in CIPetri Lehtinen2-2/+7
2019-10-21Run clang-format in CI, fail the build if everything's not formattedPetri Lehtinen1-0/+6
2019-10-21Add scripts for running clang-formatPetri Lehtinen2-0/+21
2019-10-21Run clang-format on *.c, *.hPetri Lehtinen39-2921/+2516
2019-10-21Add clang-format configurationPetri Lehtinen1-0/+5
2019-10-21Merge pull request #498 from AllenX2018/fix-issue441Petri Lehtinen1-7/+0
fix issue #441: remove strtod definition in strconv.c
2019-10-21remove undef __NO_ISOCEXT for strtod compatiblitywillson-chen1-3/+0
2019-10-18Merge pull request #499 from AllenX2018/fix-issue281Petri Lehtinen3-0/+105
Add json_object_update_new, json_object_update_existing_new and json_object_update_missing_new
2019-10-17Merge branch 'master' into fix-issue281Petri Lehtinen17-50/+239
2019-10-17Merge pull request #505 from AllenX2018/recursive_object_updatePetri Lehtinen5-3/+148
Recursive object update
2019-10-17Merge pull request #500 from AllenX2018/fix-issue426Petri Lehtinen1-0/+4
fix issue #426: fix pipe function in MinGW
2019-10-17Merge pull request #501 from AllenX2018/fix-issue481Petri Lehtinen4-24/+24
fix issue #481
2019-10-17Merge pull request #502 from AllenX2018/fix-issue453Petri Lehtinen1-5/+19
fix issue #453:update FindSphinx.cmake to better align with find sphinx package.
2019-10-17Merge pull request #503 from AllenX2018/loadfd-docPetri Lehtinen1-1/+5
add note for non-blocking file descriptor used for json_loadfd
2019-10-17Merge pull request #506 from AllenX2018/add-json_equal-test-casePetri Lehtinen1-4/+14
fix typo & add negative test case for test_equal_complex
2019-10-15fix typo & add negative test case for test_equal_complexallen1-4/+14
2019-10-14update the test case of json_object_update_recursiveallen1-3/+1
2019-10-12add loop check for json_object_update_recursive functionallen2-8/+75
2019-10-12modify some wordsallen1-5/+5
2019-10-11Add json_object_update_recursive()Henrique Cabral5-0/+80
Support merging values nested within objects. For instance, merging: { "foo": 1, "bar": { "baz": 2 } } with { "bar": { "baz": 3 } } results in { "foo": 1, "bar": { "baz": 3 } } instead of overwriting the value for the bar key.
2019-10-10add note for non-blocking file descriptor used for json_loadfdallen1-1/+5
2019-10-10fix issue #453AllenX20181-5/+19
2019-10-09fix issue #481allen4-24/+24
2019-10-08fix issue #281allen3-0/+105
2019-10-08fix issue #441AllenX20181-4/+0
It already has "strtod" function in stdlib.h and because __USE_MINGW_ANSI_STDIO is desperated
2019-10-08fix issue #426AllenX20181-0/+4
2019-09-27Merge pull request #496 from grdowns/vcpkg-instructionsPetri Lehtinen1-0/+12
Add vcpkg installation instructions
2019-09-26Add vcpkg installation instructionsgrdowns1-0/+12
2019-09-23Merge pull request #494 from luzpaz/typosPetri Lehtinen6-13/+13
Fix various typos
2019-09-23Merge pull request #490 from AllenX2018/masterPetri Lehtinen5-20/+115
add loop check in json deep copy #457
2019-09-20Fix various typosluz.paz6-13/+13
Found via `codespell -q 2` (v1.17.0.dev0)