8000 Tags · tekcircuits/ArduinoJson · GitHub
[go: up one dir, main page]

Skip to content

Tags: tekcircuits/ArduinoJson

Tags

v5.13.1

Toggle v5.13.1's commit message
ArduinoJson 5.13.1

* Fixed `JsonVariant::operator|(int)` that returned the default value if the variant contained a double (issue bblanchon#675)
* Allowed non-quoted key to contain underscores (issue bblanchon#665)

v5.13.0

Toggle v5.13.0's commit message
ArduinoJson 5.13.0

* Changed the rules of string duplication (issue bblanchon#658)
* `RawJson()` accepts any kind of string and obeys to the same rules for duplication
* Changed the return type of `strdup()` to `const char*` to prevent double duplication
* Marked `strdup()` as deprecated

v5.12.0

Toggle v5.12.0's commit message
ArduinoJson 5.12.0

* Added `JsonVariant::operator|` to return a default value
* Added a clear error message when compiled as C instead of C++ (issue bblanchon#629)
* Added detection of MPLAB XC compiler (issue bblanchon#629)
* Added detection of Keil ARM Compiler (issue bblanchon#629)
* Added an example that shows how to save and load a configuration file
* Reworked all other examples

v5.11.2

Toggle v5.11.2's commit message
ArduinoJson 5.11.2

* Fixed `DynamicJsonBuffer::clear()` not resetting allocation size (issue bblanchon#561)
* Fixed incorrect rounding for float values (issue bblanchon#588)

v5.11.1

Toggle v5.11.1's commit message
ArduinoJson 5.11.1

* Removed dependency on `PGM_P` as Particle 0.6.2 doesn't define it (issue bblanchon#546)
* Fixed warning "dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing]"
* Fixed warning "floating constant exceeds range of 'float' [-Woverflow]" (issue bblanchon#544)
* Fixed warning "this statement may fall through" [-Wimplicit-fallthrough=] (issue bblanchon#539)
* Removed `ARDUINOJSON_DOUBLE_IS_64BITS` as it became useless.
* Fixed too many decimals places in float serialization (issue bblanchon#543)

v5.11.0

Toggle v5.11.0's commit message
ArduinoJson 5.11.0

* Made `JsonBuffer` non-copyable (PR bblanchon#524 by @luisrayas3)
* Added `StaticJsonBuffer::clear()`
* Added `DynamicJsonBuffer::clear()`

v5.10.1

Toggle v5.10.1's commit message
ArduinoJson 5.10.1

* Fixed IntelliSense errors in Visual Micro (issue bblanchon#483)
* Fixed compilation in IAR Embedded Workbench (issue bblanchon#515)
* Fixed reading "true" as a float (issue bblanchon#516)
* Added `ARDUINOJSON_DOUBLE_IS_64BITS`
* Added `ARDUINOJSON_EMBEDDED_MODE`

v5.10.0

Toggle v5.10.0's commit message
ArduinoJson 5.10.0

* Removed configurable number of decimal places (issues bblanchon#288, bblanchon#427 and bblanchon#506)
* Changed exponentation thresholds to `1e7` and `1e-5` (issues bblanchon#288, bblanchon#427 and bblanchon#506)
* `JsonVariant::is<double>()` now returns `true` for integers
* Fixed error `IsBaseOf is not a member of ArduinoJson::TypeTraits` (issue bblanchon#495)
* Fixed error `forming reference to reference` (issue bblanchon#495)

v5.9.0

Toggle v5.9.0's commit message
ArduinoJson 5.9.0

* Added `JsonArray::remove(iterator)` (issue bblanchon#479)
* Added `JsonObject::remove(iterator)`
* Renamed `JsonArray::removeAt(size_t)` into `remove(size_t)`
* Renamed folder `include/` to `src/`
* Fixed warnings `floating constant exceeds range of float`and `floating constant truncated to zero` (issue bblanchon#483)
* Removed `Print` class and converted `printTo()` to a template method (issue bblanchon#276)
* Removed example `IndentedPrintExample.ino`
* Now compatible with Particle 0.6.1, thanks to Jacob Nite (issue bblanchon#294 and PR bblanchon#461 by @foodbag)

v5.8.4

Toggle v5.8.4's commit message
ArduinoJson 5.8.4

* Added custom implementation of `strtod()` (issue bblanchon#453)
* Added custom implementation of `strtol()` (issue bblanchon#465)
* `char` is now treated as an integral type (issue bblanchon#337, bblanchon#370)
0