91 Commits

Author SHA1 Message Date
d3bc571a38 Release Version 1.5.6 2017-06-28 17:25:14 +02:00
90a46eaccd cJSON.h: Move cJSON_ParseWithOpts after cJSON_Parse 2017-06-27 23:10:19 +02:00
a2a2411b12 Release version 1.5.5 2017-06-14 18:07:25 +02:00
9189b3322a Release v1.5.4 2017-06-04 21:31:45 +02:00
00d5e225a6 Release version 1.5.3 2017-05-22 22:59:32 +02:00
ddf268b074 cJSON.h: Document cJSON_ArrayForEach for objects 2017-05-10 13:17:38 +02:00
de5df3e56f Release version 1.5.2 2017-05-10 02:25:25 +02:00
6c9f76c100 Release version 1.5.1 2017-05-06 08:42:59 +02:00
1217ca9e9f Release version 1.5.0 2017-05-02 02:34:55 +02:00
2d6a2e0133 Merge branch 'develop' prepare v1.5.0 2017-05-02 02:30:26 +02:00
dede4e3246 Add cJSON_ReplaceItemInObjectCaseSensitive 2017-05-02 01:18:55 +02:00
8b953d1202 Add cJSON_ReplaceItemViaPointer 2017-05-02 01:18:55 +02:00
2d07bbc9b2 Add cJSON_DeleteItemFromObjectCaseSensitive 2017-05-02 00:36:10 +02:00
8816a568ab Add cJSON_DetachItemFromObjectCaseSensitive 2017-05-02 00:34:17 +02:00
33193ea557 Internal function get_array_item 2017-05-02 00:27:33 +02:00
c24c3e0285 Add cJSON_DetachItemViaPointer 2017-05-01 23:58:04 +02:00
e0d3a8a265 Limit nesting depth to 1000 and make it configurable. 2017-04-27 01:57:45 +02:00
a400888c1f Document cJSON_free API 2017-04-25 23:58:44 -07:00
05f75e360b Release Version 1.4.7 2017-04-18 21:35:21 +02:00
51d3df6c9f cJSON_GetObjectItemCaseSensitive: Fix inconsistent prototype
Thanks @PawelWMS
2017-04-18 17:37:43 +02:00
02a05eea4e cJSON: Add cJSON_malloc and cJSON_free 2017-04-12 20:50:03 +02:00
6ac896d8d2 cJSON_Compare: New function to compare json 2017-04-08 17:57:36 +02:00
c786cd9714 Adding back "const". 2017-04-08 17:56:29 +02:00
281df6997c Update copyright 2017-04-08 17:56:27 +02:00
99db5db9a4 Release version 1.4.6 2017-04-08 17:54:55 +02:00
411c50f671 Don't redefine CJSON_EXPORT_SYMBOLS 2017-04-08 16:39:35 +02:00
ec2db50b6f dllexport symbols by default and add CJSON_IMPORT_SYMBOLS
This should fix copy pasting of the C and header files with the MSVC
compiler.
2017-04-08 15:54:14 +02:00
65541b900c Update space requirements of cJSON_PrintPreallocated 2017-04-08 03:42:44 +02:00
3c1bfe125c Clarify deprecation of valueint 2017-04-02 23:24:53 +02:00
5916f70640 cJSON.h: Deprecate valueint 2017-04-01 22:56:04 +02:00
3a20692c18 Release version 1.4.5 2017-03-28 17:39:39 +02:00
b0dfcde04c Release Version 1.4.4 2017-03-23 22:13:25 +01:00
4bfb880093 cJSON.h: Note about buffer size for cJSON_PrintPreallocated 2017-03-22 16:39:10 +01:00
b7ce06224b Release version 1.4.3 2017-03-19 11:05:33 +01:00
a1b37d0abe Release Version 1.4.2 2017-03-16 01:28:23 +01:00
e3d5798896 Release version 1.4.1 2017-03-15 20:11:19 +01:00
02cd3eec37 Update version number to 1.4.0 2017-03-03 23:21:53 +01:00
2d3520e0b9 Use own cJSON_bool boolean type in the header 2017-03-01 22:50:12 +01:00
412f4f7d62 Use CJSON_PUBLIC for typecheck functions 2017-03-01 22:47:45 +01:00
024f690289 Merge pull request #116 from mjerris/fschanges
add CJSON_DECLARE macros to support gcc visibility and windows dllexport
2017-02-27 21:51:55 +01:00
039b1cc653 add CJSON_PUBLIC macro to public functions to support visibility and dllimport/dllexport 2017-02-27 13:47:06 -06:00
c26d53f0d7 Helper function to check the type of an item
This is necessary, because you can get it wrong if you do it manually.
(when you forget the & 0xFF in the comparison)
2017-02-26 14:30:50 +01:00
605422c60a cJSON: New function cJSON_GetObjectItemCaseSensitive 2017-02-21 11:17:08 +01:00
b47d0e34ca cJSON_ArrayForEach: Fix handling of NULL pointers 2017-02-21 09:17:34 +01:00
87691a86e5 cJSON_SetNumberValue: Fix compiler warning with -Waddress 2017-02-20 11:11:01 +01:00
4fce9cce86 Release version 1.3.0 2017-02-17 01:42:02 +01:00
cf48ea8175 New Type: cJSON_Invalid
This assigns the macro cJSON_Invalid to 0.
2017-02-15 21:19:38 +01:00
87f77274de cJSON_SetNumberValue: Fix undefined double to int conversion
This might cause slight changes in behavior, but it shouldn't break
anything that is not already broken (for example the original macro
could either return a double, or an integer or whatever depending on if
object is NULL or not.)
2017-02-07 21:23:36 +01:00
981f59b163 Release Version 1.2.1 2017-01-30 19:36:36 +01:00
c49ffbfba8 cJSON_Version: returns a version string
This is useful to programmatically find out the version of cJSON that
has been used (useful in case of scripting language bindings for
example).
2017-01-12 20:37:29 +01:00