Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-30 | Merge pull request #38361 from akien-mga/stb_vorbis-1.19 | Rémi Verschelde | |
stb_vorbis: Update to upstream version 1.19 | |||
2020-04-30 | Merge pull request #38360 from akien-mga/drop-unused-curl_hostcheck | Rémi Verschelde | |
Drop now unused curl_hostcheck.c | |||
2020-04-30 | Merge pull request #38359 from akien-mga/fastlz-0.5.0 | Rémi Verschelde | |
FastLZ: Update to upstream version 0.5.0 | |||
2020-04-30 | Merge pull request #38337 from RandomShaper/time_rollback | Rémi Verschelde | |
Improve shader time roll over | |||
2020-04-30 | stb_vorbis: Update to upstream version 1.19 | Rémi Verschelde | |
1.19 - 2020-02-05 - warnings 1.18 - 2020-02-02 - fix seek bugs; parse header comments; misc warnings etc. | |||
2020-04-30 | Drop now unused curl_hostcheck.c | Rémi Verschelde | |
One less thirdparty library to document \o/ | |||
2020-04-30 | FastLZ: Update to upstream version 0.5.0 | Rémi Verschelde | |
Upstream development restarted after 13 years. Changes: 2020-02-02: Version 0.5.0 Minor speed improvement on the decompressor. Prevent memory violation when decompressing corrupted input. 2020-01-10: Version 0.4.0 Only code & infrastructure clean-up, no new functionality. | |||
2020-04-30 | Improve shader time roll over | Pedro J. Estébanez | |
- Resurrect it for GL ES 2 - Add it to the Vulkan rasterizer - Expose the setting from the `RenderingServer`, since it does not belong in any specific rasterizer | |||
2020-04-30 | Merge pull request #38073 from akien-mga/enet-1.3.15 | Rémi Verschelde | |
enet: Update to upstream version 1.3.15 | |||
2020-04-30 | Merge pull request #38330 from Calinou/doc-image-load-formats | Rémi Verschelde | |
Document the formats supported by `Image.load()` | |||
2020-04-30 | Merge pull request #38325 from Calinou/editor-no-focus-on-align-with-view | Rémi Verschelde | |
Don't focus the selection after using Align Transform With View | |||
2020-04-30 | Merge pull request #38344 from ExpiredPopsicle/culling5_master | Rémi Verschelde | |
Fixed false positives in the culling system (master branch version). | |||
2020-04-29 | Fixed false positives in the culling system. | Kiri Jolly | |
This fixes numerous false positives coming out of the culling system. AABB checks are now a full separating-axis check against the frustum, with the points of the frustum being compared to the planes of the box just as the points of the box were being compared to the planes of the frustum. This fixes large objects behind the camera not being culled correctly. Some systems that used frustums that were (sometimes mistakenly?) unbounded on one or more side have been modified to be fully enclosed. | |||
2020-04-29 | Fixed unbounded dual-paraboloid shadow map culling. | Kiri Jolly | |
Dual paraboloid shadowmaps were ending up with infinitely large volumes of area behind the hemisphere un-culled. This change just adds a back plane to the convex shape used for the culling volume. | |||
2020-04-30 | Merge pull request #38328 from Nannaquin/master | Ignacio Roldán Etcheverry | |
Fix growMargin() not returning modified Rect2/Rect2i in Mono | |||
2020-04-29 | Document the formats supported by `Image.load()` | Hugo Locurcio | |
This partially addresses #32166. | |||
2020-04-29 | Merge pull request #38288 from RandomShaper/imvu/fix_not_freed_gdsfuncstate | Rémi Verschelde | |
Fix leaked objects when game ends with yields in progress | |||
2020-04-29 | Fix growMargin() not returning modified Rect2/Rect2i | Nannaquin | |
2020-04-29 | Merge pull request #38203 from woollysammoth/multiple-ik-bug | Rémi Verschelde | |
Fixes SkeletonIK resetting other IK poses | |||
2020-04-29 | Merge pull request #38279 from BigRed-118/assert_mark_as_safe_regression_bug | Rémi Verschelde | |
Fix for marking assert lines as safe bug | |||
2020-04-29 | Merge pull request #38307 from Calinou/shell-open-res-user-warning | Rémi Verschelde | |
Warn when trying to open `res://` or `user://` with `OS.shell_open()` | |||
2020-04-29 | Merge pull request #37846 from CaptainProton42/text-edit-undo-stack-size | Rémi Verschelde | |
Add "undo_max_stack_size" property to TextEdit | |||
2020-04-29 | Merge pull request #20371 from aaronfranke/vector-lerp | Rémi Verschelde | |
[Core] [Mono] [GDNative] Rename "linear_interpolate" methods to "lerp" | |||
2020-04-29 | Don't focus the selection after using Align Transform With View | Hugo Locurcio | |
It made minor adjustments difficult as the camera moved every time Align Transform With View was used. This closes #36738. | |||
2020-04-29 | Merge pull request #38302 from qarmin/format_set | Rémi Verschelde | |
RasterizerStorageRD: Don't override format value | |||
2020-04-29 | Merge pull request #33578 from code-xD/master | Rémi Verschelde | |
Made the search results more specific. | |||
2020-04-29 | Fix leaked objects when game ends with yields in progress | Pedro J. Estébanez | |
2020-04-29 | Merge pull request #36498 from Avantir-Chaosfire/patch-1 | Rémi Verschelde | |
doc: Improve Node2D to_local/to_global description | |||
2020-04-29 | Limit undo stack size | John Wigg | |
The stack size of the undo history of a TextEdit was not limited leading to potential memory leaks when doing lots of operations on a TextEdit. This commit adds the option gui/common/text_edit_undo_stack_max_size to the project settings. The first element of the undo stack is popped if the stack's size exceeds this value ensuring limited memory usage. The default stack size setting is 1024. Fixes #37838. | |||
2020-04-29 | Merge pull request #37523 from 1abinitio1/master | Rémi Verschelde | |
Add option for editor freelook camera sensitivity | |||
2020-04-29 | Make Quick Open substring match more specific. | Shivansh Anand | |
When finding a substring, the rating is biased towards substrings at the end of the path. Fixes #33504. | |||
2020-04-29 | [Core] Rename linear_interpolate to lerp | Aaron Franke | |
2020-04-29 | [Mono] Rename LinearInterpolate to Lerp | Aaron Franke | |
2020-04-29 | Merge pull request #38034 from punto-/punto-/vibration_info_protected | Rémi Verschelde | |
makes VibrationInfo protected | |||
2020-04-29 | doc: Improve Node2D to_local/to_global description | Avantir-Chaosfire | |
2020-04-29 | Merge pull request #37795 from Chaosus/shader_fix_const_order2 | Rémi Verschelde | |
Fix shader constant sorting | |||
2020-04-29 | Merge pull request #36960 from pycbouh/docs-improve-shortcuts | Rémi Verschelde | |
Improve shortcut formatting in docs | |||
2020-04-29 | Merge pull request #37705 from ↵ | Rémi Verschelde | |
dreamsComeTrue/editor-animation-player-improvements Allow to rename animation just after it was duplicated in Editor | |||
2020-04-29 | Add option for editor freelook camera sensitivity | 1abinitio1 | |
2020-04-29 | Merge pull request #37580 from aaronfranke/xform | Rémi Verschelde | |
Print errors when passing an invalid type to xform | |||
2020-04-29 | Merge pull request #37965 from ↵ | Rémi Verschelde | |
EricEzaM/drag-multiple-resources-onto-array-export Drag multiple resources onto exported array variable at once | |||
2020-04-29 | Merge pull request #37776 from Sauermann/transform-scale-origin | Rémi Verschelde | |
Clarify Transform scaled Method description | |||
2020-04-29 | Merge pull request #38301 from qarmin/copy_paste_bv | Rémi Verschelde | |
Fix copy paste array index bug | |||
2020-04-29 | Merge pull request #38287 from ↵ | Rémi Verschelde | |
JiRuifanCR/animatedtexture-oneshot-pause-set-frame Add set_frame, pause, and oneshot to AnimatedTexture | |||
2020-04-29 | Input: make VibrationInfo protected to allow implementors to use it | punto- | |
2020-04-29 | Merge pull request #38074 from KoBeWi/tfree | Rémi Verschelde | |
Mention how to remove TreeItem from a Tree | |||
2020-04-29 | Merge pull request #38235 from BigRed-118/help_tabs_shuffle_fix | Rémi Verschelde | |
Fixed shuffling editor help tabs | |||
2020-04-29 | Merge pull request #37802 from ThakeeNathees/window-position-bug-osx-x11 | Rémi Verschelde | |
display server window position bug fix | |||
2020-04-29 | Merge pull request #38314 from KoBeWi/dead_increment | Rémi Verschelde | |
Remove unneccessary increment in TextEdit | |||
2020-04-29 | Remove unneccessary increment in TextEdit | Tomasz Chabora | |