Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-14 | Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocks | Rémi Verschelde | |
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. | |||
2020-05-14 | Style: Fix missing/invalid copyright headers | Rémi Verschelde | |
2020-05-14 | Merge pull request #38611 from ThakeeNathees/shadow-var-warning-bug-fix | Rémi Verschelde | |
shadowed var warning in nested block bug fix | |||
2020-05-14 | Merge pull request #38718 from neikeq/fix-bindings-after-lightmapper | Ignacio Roldán Etcheverry | |
Fix C# bindings after lightmapper changes | |||
2020-05-14 | Merge pull request #38736 from akien-mga/modernize-all-the-things | Rémi Verschelde | |
C++: Apply some `modernize-*` checks from clang-tidy (nullptr, bool literals, void args) | |||
2020-05-14 | Remove redundant void argument lists | Rémi Verschelde | |
Using clang-tidy's `modernize-redundant-void-arg`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-redundant-void-arg.html | |||
2020-05-14 | Enforce use of bool literals instead of integers | Rémi Verschelde | |
Using clang-tidy's `modernize-use-bool-literals`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-bool-literals.html | |||
2020-05-14 | Modernize remaining uses of 0/NULL instead of nullptr (C++11) | Rémi Verschelde | |
Using clang-tidy's `modernize-use-nullptr`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html | |||
2020-05-14 | Merge pull request #38697 from akien-mga/member-init-c++11 | Rémi Verschelde | |
Port member default initialization from constructor to declaration (C++11) | |||
2020-05-14 | Port member initialization from constructor to declaration (C++11) | Rémi Verschelde | |
Using `clang-tidy`'s `modernize-use-default-member-init` check and manual review of the changes, and some extra manual changes that `clang-tidy` failed to do. Also went manually through all of `core` to find occurrences that `clang-tidy` couldn't handle, especially all initializations done in a constructor without using initializer lists. | |||
2020-05-13 | Fix C# bindings after lightmapper changes | Ignacio Etcheverry | |
2020-05-13 | Merge pull request #38609 from ↵ | Rémi Verschelde | |
ThakeeNathees/range-crash-with-non-numeric-const-fix range() with non-numeric const argument crash fix | |||
2020-05-13 | Merge pull request #38708 from ThakeeNathees/init-assign-type-parser-bug-fix | Rémi Verschelde | |
regression: var declaration type info parser bug fix | |||
2020-05-13 | Merge pull request #38707 from ThakeeNathees/static-const-access-bug-fix | Rémi Verschelde | |
regression: static func can't access const fix | |||
2020-05-13 | Merge pull request #38637 from Calinou/editor-rename-revert-scene-bind | Rémi Verschelde | |
Rename the editor action "Revert Scene" to "Reload Saved Scene" | |||
2020-05-13 | Merge pull request #38151 from madmiraal/fix-8368 | Rémi Verschelde | |
Support SDL2 half axes and inverted axes mappings. | |||
2020-05-13 | Implement half axis and inverted axis mapping. | Marcel Admiraal | |
2020-05-13 | Update game controller enums. | Marcel Admiraal | |
2020-05-13 | Parse SDL game controller half axis and inverted axis entries. | Marcel Admiraal | |
2020-05-13 | regression: static func can't access const fix | Thakee Nathees | |
2020-05-13 | regression: var declaration type info parser bug fix | Thakee Nathees | |
2020-05-13 | Merge pull request #38693 from madmiraal/update-world-direct_space_state-doc | Max Hilbrunner | |
Make it clear that PhysicsDirectSpaceState is only available from within _physics_process(). | |||
2020-05-12 | Merge pull request #37099 from Faless/js/debugger_4.0 | Rémi Verschelde | |
WebSocket profiler for HTML5 platform [4.0] | |||
2020-05-12 | Merge pull request #38655 from ↵ | Rémi Verschelde | |
ice-blaze/minimap-shifted-selection-by-one-line#38532 Fix minimap selection offset | |||
2020-05-12 | Add WebSocket debugger, use it for Javascript. | Fabio Alessandrelli | |
2020-05-12 | Support multiple debug protocols. | Fabio Alessandrelli | |
2020-05-12 | Add support for multiple RemoteDebuggerPeer(s). | Fabio Alessandrelli | |
It is now possible to register protocol handlers (default tcp://) to support additional debugging communication layers (e.g. websocket). | |||
2020-05-12 | Rename the editor action "Revert Scene" to "Reload Saved Scene" | Hugo Locurcio | |
This option can be used to workaround various issues with stuff not reloading properly when changes are made. The option was renamed to clarify the fact that it actually reloads the scene saved on the filesystem. | |||
2020-05-12 | Make it clear that PhysicsDirectSpaceState is only available from | Marcel Admiraal | |
within _physics_process(). | |||
2020-05-12 | Merge pull request #32848 from ↵ | Rémi Verschelde | |
RevoluPowered/feature/compilation-database-support Compilation database support - clang, gcc, mingw | |||
2020-05-12 | Added compilation database support for clang and gcc | RevoluPowered | |
This tool is originally from mongodb. - Updated CPPSUFFIXES to use scons suffixes - objective-c files will also be loaded into the compilation database where the compiler / tooling is available to compile the files. Known limitations: - This will not work with msvc as your compiler. | |||
2020-05-12 | Remove WebSocket defaults from project settings. | Fabio Alessandrelli | |
Can be manually set, let's not pollute them further. Should also be done for WebRTC. | |||
2020-05-12 | Merge pull request #38691 from madmiraal/fix-eq-uninitialised-warning | Rémi Verschelde | |
Silence EQ::Band::c1, c2 and c3 may be used uninitialized warnings. | |||
2020-05-12 | Merge pull request #38689 from Calinou/rename-ssl-certificate-setting | Rémi Verschelde | |
Rename SSL certificate bundle setting to clarify the "overriding" aspect | |||
2020-05-12 | Merge pull request #38690 from qarmin/fix_leak_2 | Rémi Verschelde | |
Fixes memory leak with lightmap part 2 | |||
2020-05-12 | Silence EQ::Band::c1, c2 and c3 may be used uninitialized warnings. | Marcel Admiraal | |
2020-05-12 | Merge pull request #38688 from Calinou/gitattributes-tza-binary | Rémi Verschelde | |
Mark `*.tza` files as binary in `.gitattributes` for old Git versions | |||
2020-05-12 | Rename SSL certificate bundle setting to clarify the "overriding" aspect | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/2531. | |||
2020-05-12 | Fixes memory leak with lightmap part 2 | qarmin | |
2020-05-12 | doc: Sync classref with current source | Rémi Verschelde | |
Adds API changes from the new GPU lightmapper. | |||
2020-05-12 | Merge pull request #38687 from Calinou/tweak-editor-icons-readme | Rémi Verschelde | |
Update the editor icons README to remove outdated information | |||
2020-05-12 | Merge pull request #38661 from Ashesh3/patch-1 | Rémi Verschelde | |
Better file naming for AppVeyor artifacts | |||
2020-05-12 | Mark `*.tza` files as binary in `.gitattributes` for old Git versions | Hugo Locurcio | |
This prevents `thirdparty/oidn/weights/rtlightmap_hdr.tza` from always being considered as modified when using an old Git version (such as the one on Ubuntu 16.04). | |||
2020-05-12 | Update the editor icons README to remove outdated information | Hugo Locurcio | |
This closes #38684. | |||
2020-05-11 | Merge pull request #38635 from Calinou/tilemap-rename-ysort-index | Rémi Verschelde | |
Rename various TileMap methods/properties for clarity and consistency | |||
2020-05-11 | Merge pull request #38677 from Calinou/tweak-post-import-script-message | Rémi Verschelde | |
Tweak the error message displayed when a post-import script fails | |||
2020-05-11 | Merge pull request #38676 from qarmin/fix_leak_lightmaps | Rémi Verschelde | |
Fix memory leak with light maps | |||
2020-05-11 | Tweak the error message displayd when a post-import script fails | Hugo Locurcio | |
See #38662. | |||
2020-05-11 | Fix memory leak with light maps | qarmin | |
2020-05-11 | Merge pull request #38672 from madmiraal/fix-physicsw-warning | Rémi Verschelde | |
Fix 'physicsw' may be used uninitialized warning in csg_shape.cpp |