summaryrefslogtreecommitdiffstats
path: root/src/Bindings/LuaJson.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Removed all Printf-family functions from StringUtils.Mattes D2023-05-161-4/+7
| | | | | Replaced them with fmt::format calls, including changes to the format strings. Also changed the format strings to use FMT_STRING, so that the format is checked compile-time against the arguments. Also fixed code-style violations already present in the code.
* Update submodules (#4727)peterbell102020-05-091-3/+4
| | | | | | | | | | | | | Closes #4708 This updates jsoncpp, mbedtls, TCLAP and SQLiteCpp to their latest stable release. A few additional changes were needed: * jsoncpp deprecated Reader, FastWriter and StyledWriter which I've replaced with some helper functions in JsonUtils.cpp * SQLiteCpp changed how it builds with external sqlite libraries, now expecting them to be installed. The simplest path was to remove sqlite from cuberite's submodule and just use SQLiteCpp's internal version.
* Using Super.Mattes D2020-04-161-1/+2
|
* LuaJson: Report serialization errors instead of crashing.Mattes D2016-10-271-3/+82
|
* cLuaState: Added direct support for pushing a nil constant.Mattes D2016-08-221-3/+2
|
* Fixed Lua Json serializing a bool.Mattes D2016-07-101-0/+10
| | | | Fixes #3257.
* Added a Json parser and serializer to Lua API.Mattes D2015-12-241-0/+315