185eccf6f5
Added custom implementation of strtol()
(issue #465 )
...
`char` is now treated as an integral type (issue #337 , #370 )
2017-03-25 21:55:13 +01:00
c4567bac18
Added custom implementation of strtod()
(issue #453 )
2017-03-19 15:23:06 +01:00
c30241775a
Fixed JsonVariant::operator[const FlashStringHelper*]
(issue #441 )
2017-02-11 15:09:08 +01:00
31827d03f9
Added operators ==
and !=
for two JsonVariant
s (issue #436 )
2017-02-11 15:06:17 +01:00
db9a76f7c6
Fixed an access violation in DynamicJsonBuffer
when memory allocation fails (issue #433 )
2017-01-31 10:06:40 +01:00
5fefeae404
Added deprecated
attribute on asArray()
, asObject()
and asString()
(issue #420 )
2017-01-22 17:24:17 +01:00
d4f725d1fa
Fixed error with string of type unsigned char*
(issue #428 )
2017-01-22 15:42:47 +01:00
a096098c1f
Fixed error when the key of a JsonObject
is a char[]
and reduced code size when using const references (issue #423 )
2017-01-22 11:10:45 +01:00
cc8c0472ca
Fixed ignored Stream
timeout and made sure we don't read more that necessary (issue #422 )
2017-01-22 10:31:05 +01:00
17a17c8957
Fixed parsing of comments (issue #421 )
2017-01-17 21:48:13 +01:00
567157b005
Fixed error "Stream does not name a type" (issue #412 )
2017-01-15 21:01:58 +01:00
ec6cbc5135
Fixed error when both ARDUINOJSON_ENABLE_STD_STREAM
and ARDUINOJSON_ENABLE_ARDUINO_STREAM
are set to 1
2017-01-15 15:18:59 +01:00
8499f0b960
Fixed errors with Variable Length Arrays (issue #416 )
2017-01-15 15:11:26 +01:00
11432253a1
Fixed error when assigning a volatile int
to a JsonVariant
(issue #415 )
2017-01-11 10:17:27 +01:00
671329a3e9
Updated copyright year from 2016 to 2017
2017-01-06 21:07:34 +01:00
55669e306e
Added support for Stream
(issue #300 )
2017-01-03 22:03:50 +01:00
3f96e070ce
Reduced memory consumption by not duplicating spaces and comments
2017-01-01 21:30:20 +01:00
8032a4b564
Extracted StringReader
and StringWriter
from JsonParser
...
Split `Internals/` folder into `Data/`, `Deserialization/`, `Serialization/`
2017-01-01 21:30:20 +01:00
cecbcd1929
Added operator ==
to compare JsonVariant
and strings (issue #402 )
2016-12-23 14:45:32 +01:00
432476c98a
Added an printTo(char[N])
and prettyPrintTo(char[N])
(issue #292 )
2016-12-10 15:59:48 +01:00
1f3e227a8b
Added ability to set a nested value like this: root["A"]["B"] = "C"
(issue #352 )
2016-12-10 15:22:57 +01:00
66c28020c5
Renamed *.ipp
to *Impl.hpp
because they were ignored by Arduino IDE (issue #396 )
2016-12-03 22:19:11 +01:00
2f7232859e
Fixed PROGMEM causing an exception on ESP8266 (issue #383 )
2016-11-23 21:53:29 +01:00
72d78432c9
Made PROGMEM available on more platforms (issue #381 )
2016-11-16 22:24:58 +01:00
f28157cab7
Fixed compilation error when index is not an int
(issue #381 )
2016-11-13 20:19:36 +01:00
1ce16ce449
Added support for PROGMEM (issue #76 )
2016-11-13 20:16:12 +01:00
aa2ef79e55
Templatized all functions using String
or std::string
...
* Removed `ArduinoJson::String`
* Removed `JsonVariant::defaultValue<T>()`
* Removed non-template `JsonObject::get()` and `JsonArray.get()`
* Fixed support for `StringSumHelper` (issue #184 )
* Replaced `ARDUINOJSON_USE_ARDUINO_STRING` by `ARDUINOJSON_ENABLE_STD_STRING` and `ARDUINOJSON_ENABLE_ARDUINO_STRING` (issue #378 )
* Added example `StringExample.ino` to show where `String` can be used
2016-11-06 17:52:18 +01:00
e6f55b1f6f
Increased default nesting limit to 50 when compiled for a computer (issue #349 )
2016-09-21 22:11:38 +02:00
deb57b960b
Fixed parser that incorrectly rejected floats containing a +
(issue #349 )
2016-09-19 10:08:14 +02:00
8a9b918bf4
Fixed undefined behavior in Prettyfier
and Print
(issue #354 )
2016-09-17 13:51:54 +02:00
2f6f3d0629
Fixed return value of JsonObject::set()
(issue #350 )
2016-09-16 10:10:31 +02:00
a60b35f41c
Extracted class JsonSerializer
2016-09-11 13:43:21 +02:00
ffb9b6d1ba
Fixed JsonVariant::success()
which didn't propagate JsonArray::success()
nor JsonObject::success()
(issue #342 ).
2016-08-29 20:54:39 +02:00
409ca7ee4e
Fixed -Wparentheses
warning introduced in v5.6.5 (PR #335 by @nuket)
2016-08-17 20:37:44 +02:00
96f486001d
as<char*>()
now returns true
when input is null
(issue #330 )
2016-08-15 12:24:08 +02:00
c64340a9bb
Fixed error in float serialization (issue #324 )
2016-07-20 13:15:17 +02:00
7ebff5949f
Fixed call of overloaded isinf(double&) is ambiguous
(issue #284 )
2016-07-19 08:57:19 +02:00
c87a0e97ab
Added as<JsonArray>()
as a synonym for as<JsonArray&>()
... (issue #291 )
2016-07-17 17:22:58 +02:00
2dbd94951c
Improved speed of float serialization (about twice faster)
2016-07-10 16:12:49 +02:00
729ab56878
Fixed build when another lib does #undef isnan
(issue #284 )
2016-06-30 20:22:47 +02:00
10fcca20f8
Added missing #pragma once
(issue #310 )
2016-06-23 21:27:24 +02:00
8c7edbd9c3
ArduinoJson is now a header-only library (issue #199 )
2016-06-22 21:41:19 +02:00
c7d6d33e6c
Fixed compilation error with Intel Galileo (issue #299 )
2016-06-06 22:10:28 +02:00
9b3e3a3d9c
Renamed JsonVariant::invalid<T>()
to JsonVariant::defaultValue<T>()
2016-05-18 09:17:45 +02:00
a3a2ca4796
Added JsonVariant::success()
(issue #279 )
2016-05-18 09:15:49 +02:00
c5d19a4dbd
Changed ::String
to ArduinoJson::String
(issue #275 )
2016-05-06 08:44:31 +02:00
a8032f81d9
Added JsonVariant JsonBuffer::parse()
(issue #265 )
2016-04-30 09:47:53 +02:00
a138791964
Added custom implementation of ftoa
(issues #266 , #267 , #269 and #270 )
2016-04-28 18:54:14 +02:00
f9f002c8f7
Fix unsigned long
printed as signed long
(issue #170 )
2016-04-28 08:42:59 +02:00
a6724bd03f
Added RawJson()
to insert pregenerated JSON portions (issue #259 )
2016-04-16 16:15:01 +02:00