Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-15 | Merge pull request #51800 from KoBeWi/command_museum | Rémi Verschelde | |
Sort palette commands by last use | |||
2021-09-15 | Merge pull request #41036 from nathanfranke/default-2d-editor | Rémi Verschelde | |
Make default main screen plugin work even if 2D and 3D are disabled in editor features | |||
2021-09-15 | Merge pull request #52622 from rileylyman/tilemap-crash | Gilles Roudière | |
Break TileMap _clear_internals out from _recreate_internals | |||
2021-09-15 | Merge pull request #52123 from lightspot21/fix-placement-new-warning | Rémi Verschelde | |
Silence false-positive warning for malformed placement new on GCC 11.1 | |||
2021-09-15 | Merge pull request #52562 from BastiaanOlij/gd_extensions_register_drivers | Rémi Verschelde | |
Add driver types to GD extension initialisation levels | |||
2021-09-15 | Merge pull request #52291 from Calinou/inputmap-rename-osx-macos | Rémi Verschelde | |
Rename `osx` to `macos` in input map feature tag handling | |||
2021-09-15 | Merge pull request #50737 from Calinou/linuxbsd-reenable-pie | Rémi Verschelde | |
Re-enable building position-independent executables on Linux/*BSD | |||
2021-09-15 | Merge pull request #52685 from lentsius-bark/node3d-scaling-fix | Rémi Verschelde | |
Fix scale sensitivity for 3D objects | |||
2021-09-14 | Break TileMap _clear_internals out from _recreate_internals | Riley Lyman | |
2021-09-14 | Merge pull request #50404 from nekomatata/clean-convex-hull-decomposition | Camille Mohr-Daurat | |
Clean convex hull decomposition code | |||
2021-09-15 | Rename `osx` to `macos` in input map feature tag handling | Hugo Locurcio | |
This follows the general feature tag rename for 4.0. | |||
2021-09-14 | Clean convex hull decomposition code | PouleyKetchoupp | |
Remove unnecessary conversion between triangle data and vertex data whenever possible. | |||
2021-09-15 | Re-enable building position-independent executables on Linux/*BSD | Hugo Locurcio | |
This provides better security at the cost of having misleading binary icons on some file managers. Now that recent Linux distributions no longer allow executing binaries by double-clicking them in a file manager (even if the binary is set to be executable), the usability cost of PIE is lowered. You have to use a terminal or install a `.desktop` file nowadays. | |||
2021-09-15 | Fix issues with scaling Node3Ds | Krystof Klestil | |
2021-09-15 | Fix placement new on zero-sized region warning on GCC 11.1 | Grigoris Pavlakis | |
On latest (11.1 as of this commit) GCC, the following warning is continuously issued during build: warning: placement new constructing an object of type 'SafeNumeric<unsigned int>' and size '4' in a region of type 'uint32_t*' {aka 'unsigned int*'} and size '0' [-Wplacement-new=] This happens because on 98ceb60eb4 the new operator override used was dropped and replaced with standard placement new. GCC sees the subtraction from the pointer and complains as it thinks that the SafeNumeric is placed outside an allocation, not knowing that the address requested is already inside one. After suggestions, the false positive is silenced, with no other changes. | |||
2021-09-14 | Merge pull request #52667 from butkeim/master | Rémi Verschelde | |
Fix 3D Onion skinning missing | |||
2021-09-14 | Merge pull request #52353 from williamd67/documentation-view-scroll-to-end | Rémi Verschelde | |
Documentation view scroll to end | |||
2021-09-14 | Merge pull request #51094 from RandomShaper/error_cast_freed_object | Rémi Verschelde | |
Complain if casting a freed object in a debug session | |||
2021-09-14 | Merge pull request #52613 from V-Sekai/fix_custom_sync_commands | Fabio Alessandrelli | |
Fix custom multiplayer sync commands | |||
2021-09-14 | Merge pull request #52676 from Calinou/vulkan-version-print-same-line | Rémi Verschelde | |
Print the Vulkan API version and device used on the same line | |||
2021-09-14 | Complain if casting a freed object in a debug session | Pedro J. Estébanez | |
The idea is to give the user a chance to realize a mistake that will cause a crash in a release build (or with no debugger attached). | |||
2021-09-14 | Merge pull request #52202 from ↵ | Rémi Verschelde | |
jmb462/fix-wrong-behavior-action-editor-with-non-qwerty-layouts Fix wrong behavior of Action Map Editor with non QWERTY layouts (Fix #52169) | |||
2021-09-14 | Merge pull request #52583 from e8newallm/52360 | Rémi Verschelde | |
Removed updates that caused unnecessary window updates | |||
2021-09-14 | Print the Vulkan API version and device used on the same line | Hugo Locurcio | |
This matches Godot 3.x's OpenGL renderer behavior and is more compact. | |||
2021-09-14 | Merge pull request #52671 from Chaosus/fix_delete_line | Rémi Verschelde | |
Fix error which generates if `Delete Line` used on the last line in `CodeEditor` | |||
2021-09-14 | Merge pull request #52636 from Jummit/highlight_categories | Gilles Roudière | |
Highlight hovered inspector categories | |||
2021-09-14 | Fix wrong behavior of Action Map Editor with non QWERTY layouts | jmb462 | |
2021-09-14 | Merge pull request #52630 from JFonS/ebr_packets | JFonS | |
Upgrade Embree and enable ray packets | |||
2021-09-14 | Merge pull request #52646 from georgespatton/patch-1 | Rémi Verschelde | |
Clarify need to save ConfigFile to apply changes to file | |||
2021-09-14 | Merge pull request #52633 from lewiji/mono-build-solution-shortcut-4.0 | Rémi Verschelde | |
2021-09-14 | Merge pull request #52226 from Faless/debugger/4.x_start_options | Rémi Verschelde | |
2021-09-14 | Prevent error generates if `Delete Line` used on last line in CodeEditor | Yuri Roubinsky | |
2021-09-14 | Merge pull request #52535 from e8newallm/52490-type_conversion | Rémi Verschelde | |
Added explicit type conversion to uint32_t | |||
2021-09-14 | doc: Clarify need to save ConfigFile to apply changes to file | georgespatton | |
See #52645 for context. | |||
2021-09-14 | Fix 3D Onion skinning missing | Kerrad Yanis | |
2021-09-14 | Merge pull request #52266 from AndreaCatania/coll | Rémi Verschelde | |
2021-09-14 | Merge pull request #52348 from Faless/ci/4.x_actions | Rémi Verschelde | |
[CI] Refactor CI actions, use sub-actions, matrices. | |||
2021-09-14 | Add editor keyboard shortcut for Mono Build solution button | Lewis James | |
Apply suggestions from code review Merging @akien-mga's suggestion with the matching change to the CS project Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2021-09-14 | Merge pull request #52662 from Chaosus/fix_bookmarks | Rémi Verschelde | |
Fix editor crash on pressing `Go to Previous Bookmark` menu button | |||
2021-09-14 | Merge pull request #52644 from jmb462/error-message-on-invalid-autoload-name | Rémi Verschelde | |
Display an error message in autoload settings when autoload name is invalid | |||
2021-09-14 | Merge pull request #52657 from timothyqiu/ik-target | Rémi Verschelde | |
Make sure IK target is inside tree before using its transform | |||
2021-09-14 | Merge pull request #52260 from ThreeRhinosInAnElephantCostume/fixfindonfocus | Rémi Verschelde | |
Fix Find Next shortcut not working when search bar is focused | |||
2021-09-14 | Fix editor crash on pressing `Go to Previous Bookmark` menu button | Yuri Roubinsky | |
2021-09-14 | Merge pull request #52213 from Ev1lbl0w/fix_output_message_split | Rémi Verschelde | |
Fix messages with embedded newlines not being properly presented | |||
2021-09-14 | Merge pull request #52259 from ↵ | Rémi Verschelde | |
jmb462/fix-ctrl-V-wrong-behavior-in-inspector-textedit Fix Ctrl+V wrong behavior in inspector textedit (Fix #52208) | |||
2021-09-14 | Display an error message in settings when autoload name is invalid | jmb462 | |
2021-09-14 | Merge pull request #52658 from groud/some_tilemap_fixes | Gilles Roudière | |
Fix transform of TileMap nodes and tilemap selection | |||
2021-09-14 | Merge pull request #52153 from timothyqiu/test-array-pop-at | Rémi Verschelde | |
Add unit tests for `Array.pop_at()` | |||
2021-09-14 | Merge pull request #52222 from ↵ | Rémi Verschelde | |
Gallilus/Fix-VisualScriptPropertySet-value-property-hint | |||
2021-09-14 | [CI] Refactor CI actions, use sub-actions, matrices. | Fabio Alessandrelli | |