summaryrefslogtreecommitdiffstats
path: root/modules/jsonrpc/jsonrpc.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Improve jsonrpc error reportingOliver Frank2020-05-151-1/+1
| | | | (cherry picked from commit dac8b7b6f4fec0136a3dc95afae0aa8aa8ce9fd9)
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-1/+2
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-1/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Style: clang-format: Disable AllowShortIfStatementsOnASingleLineRémi Verschelde2020-05-101-1/+2
| | | | | | | Part of #33027, also discussed in #29848. Enforcing the use of brackets even on single line statements would be preferred, but `clang-format` doesn't have this functionality yet.
* Replace NULL with nullptrlupoDharkael2020-04-021-1/+1
|
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Add missing semicolons to `BIND_ENUM_CONSTANT` macro usesHugo Locurcio2019-10-021-5/+5
|
* Make JSONRPC constants uppercase for consistency with other classesHugo Locurcio2019-09-011-9/+9
|
* Add JSONRPC-2.0 implementation as a modulegeequlim2019-08-111-0/+171