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

Skip to content

Tags: remspoor/ArduinoJson

Tags

v5.5.0

Toggle v5.5.0's commit message
ArduinoJson 5.5.0

* Added `JsonVariant::success()` (i
8000
ssue bblanchon#279)
* Renamed `JsonVariant::invalid<T>()` to `JsonVariant::defaultValue<T>()`

v5.4.0

Toggle v5.4.0's commit message
ArduinoJson 5.4.0

* Changed `::String` to `ArduinoJson::String` (issue bblanchon#275)
* Changed `::Print` to `ArduinoJson::Print` too

v5.3.0

Toggle v5.3.0's commit message
ArduinoJson 5.3.0

* Added custom implementation of `ftoa` (issues bblanchon#266, bblanchon#267, bblanchon#269 and bblanchon#270)
* Added `JsonVariant JsonBuffer::parse()` (issue bblanchon#265)
* Fixed `unsigned long` printed as `signed long` (issue bblanchon#170)

v5.2.0

Toggle v5.2.0's commit message
ArduinoJson 5.2.0

* Added `JsonVariant::as<char*>()` as a synonym for `JsonVariant::as<const char*>()` (issue bblanchon#257)
* Added example `JsonHttpClient` (issue bblanchon#256)
* Added `JsonArray::copyTo()` and `JsonArray::copyFrom()` (issue bblanchon#254)
* Added `RawJson()` to insert pregenerated JSON portions (issue bblanchon#259)

v5.1.1

Toggle v5.1.1's commit message
ArduinoJson 5.1.1

Removed `String` duplication when one replaces a value in a `JsonObject` (PR bblanchon#232 by @ulion)

v5.1.0

Toggle v5.1.0 9BBC 9;s commit message
ArduinoJson 5.1.0

* Added support of `long long` (issue bblanchon#171)
* Moved all build settings to `ArduinoJson/Configuration.hpp`

v5.1.0-beta.2

Toggle v5.1.0-beta.2's commit message
ArduinoJson 5.1.0 beta 2

Fixed build on Visual Studio 2010 and 2012, MinGW32 and GCC 5

v5.1.0-beta.1

Toggle v5.1.0-beta.1's commit message
ArduinoJson 5.1.0 beta 1

* Added support of `long long` (issue bblanchon#171)
* Moved all build settings to `ArduinoJson/Configuration.hpp`

v5.0.8

Toggle v5.0.8's commit message
ArduinoJson v5.0.8

* Made the library compatible with [PlatformIO](http://platformio.org/) (issue bblanchon#181)
* Fixed `JsonVariant::is<bool>()` that was incorrectly returning false (issue bblanchon#214)

v5.0.7

Toggle v5.0.7's commit message
ArduinoJson 5.0.7

* Made library easier to use from a CMake project: simply `add_subdirectory(ArduinoJson/src)`
* Changed `String` to be a `typedef` of `std::string` (issues bblanchon#142 and bblanchon#161)

**BREAKING CHANGES**:
- `JsonVariant(true).as<String>()` now returns `"true"` instead of `"1"`
- `JsonVariant(false).as<String>()` now returns `"false"` instead of `"0"`
0