summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-04-30Merge pull request #38361 from akien-mga/stb_vorbis-1.19Rémi Verschelde
stb_vorbis: Update to upstream version 1.19
2020-04-30Merge pull request #38360 from akien-mga/drop-unused-curl_hostcheckRémi Verschelde
Drop now unused curl_hostcheck.c
2020-04-30Merge pull request #38359 from akien-mga/fastlz-0.5.0Rémi Verschelde
FastLZ: Update to upstream version 0.5.0
2020-04-30Merge pull request #38337 from RandomShaper/time_rollbackRémi Verschelde
Improve shader time roll over
2020-04-30stb_vorbis: Update to upstream version 1.19Rémi Verschelde
1.19 - 2020-02-05 - warnings 1.18 - 2020-02-02 - fix seek bugs; parse header comments; misc warnings etc.
2020-04-30Drop now unused curl_hostcheck.cRémi Verschelde
One less thirdparty library to document \o/
2020-04-30FastLZ: Update to upstream version 0.5.0Ré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-30Improve shader time roll overPedro 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-30Merge pull request #38073 from akien-mga/enet-1.3.15Rémi Verschelde
enet: Update to upstream version 1.3.15
2020-04-30Merge pull request #38330 from Calinou/doc-image-load-formatsRémi Verschelde
Document the formats supported by `Image.load()`
2020-04-30Merge pull request #38325 from Calinou/editor-no-focus-on-align-with-viewRémi Verschelde
Don't focus the selection after using Align Transform With View
2020-04-30Merge pull request #38344 from ExpiredPopsicle/culling5_masterRémi Verschelde
Fixed false positives in the culling system (master branch version).
2020-04-29Fixed 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-29Fixed 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-30Merge pull request #38328 from Nannaquin/masterIgnacio Roldán Etcheverry
Fix growMargin() not returning modified Rect2/Rect2i in Mono
2020-04-29Document the formats supported by `Image.load()`Hugo Locurcio
This partially addresses #32166.
2020-04-29Merge pull request #38288 from RandomShaper/imvu/fix_not_freed_gdsfuncstateRémi Verschelde
Fix leaked objects when game ends with yields in progress
2020-04-29Fix growMargin() not returning modified Rect2/Rect2iNannaquin
2020-04-29Merge pull request #38203 from woollysammoth/multiple-ik-bugRémi Verschelde
Fixes SkeletonIK resetting other IK poses
2020-04-29Merge pull request #38279 from BigRed-118/assert_mark_as_safe_regression_bugRémi Verschelde
Fix for marking assert lines as safe bug
2020-04-29Merge pull request #38307 from Calinou/shell-open-res-user-warningRémi Verschelde
Warn when trying to open `res://` or `user://` with `OS.shell_open()`
2020-04-29Merge pull request #37846 from CaptainProton42/text-edit-undo-stack-sizeRémi Verschelde
Add "undo_max_stack_size" property to TextEdit
2020-04-29Merge pull request #20371 from aaronfranke/vector-lerpRémi Verschelde
[Core] [Mono] [GDNative] Rename "linear_interpolate" methods to "lerp"
2020-04-29Don't focus the selection after using Align Transform With ViewHugo Locurcio
It made minor adjustments difficult as the camera moved every time Align Transform With View was used. This closes #36738.
2020-04-29Merge pull request #38302 from qarmin/format_setRémi Verschelde
RasterizerStorageRD: Don't override format value
2020-04-29Merge pull request #33578 from code-xD/masterRémi Verschelde
Made the search results more specific.
2020-04-29Fix leaked objects when game ends with yields in progressPedro J. Estébanez
2020-04-29Merge pull request #36498 from Avantir-Chaosfire/patch-1Rémi Verschelde
doc: Improve Node2D to_local/to_global description
2020-04-29Limit undo stack sizeJohn 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-29Merge pull request #37523 from 1abinitio1/masterRémi Verschelde
Add option for editor freelook camera sensitivity
2020-04-29Make 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 lerpAaron Franke
2020-04-29[Mono] Rename LinearInterpolate to LerpAaron Franke
2020-04-29Merge pull request #38034 from punto-/punto-/vibration_info_protectedRémi Verschelde
makes VibrationInfo protected
2020-04-29doc: Improve Node2D to_local/to_global descriptionAvantir-Chaosfire
2020-04-29Merge pull request #37795 from Chaosus/shader_fix_const_order2Rémi Verschelde
Fix shader constant sorting
2020-04-29Merge pull request #36960 from pycbouh/docs-improve-shortcutsRémi Verschelde
Improve shortcut formatting in docs
2020-04-29Merge 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-29Add option for editor freelook camera sensitivity1abinitio1
2020-04-29Merge pull request #37580 from aaronfranke/xformRémi Verschelde
Print errors when passing an invalid type to xform
2020-04-29Merge 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-29Merge pull request #37776 from Sauermann/transform-scale-originRémi Verschelde
Clarify Transform scaled Method description
2020-04-29Merge pull request #38301 from qarmin/copy_paste_bvRémi Verschelde
Fix copy paste array index bug
2020-04-29Merge pull request #38287 from ↵Rémi Verschelde
JiRuifanCR/animatedtexture-oneshot-pause-set-frame Add set_frame, pause, and oneshot to AnimatedTexture
2020-04-29Input: make VibrationInfo protected to allow implementors to use itpunto-
2020-04-29Merge pull request #38074 from KoBeWi/tfreeRémi Verschelde
Mention how to remove TreeItem from a Tree
2020-04-29Merge pull request #38235 from BigRed-118/help_tabs_shuffle_fixRémi Verschelde
Fixed shuffling editor help tabs
2020-04-29Merge pull request #37802 from ThakeeNathees/window-position-bug-osx-x11Rémi Verschelde
display server window position bug fix
2020-04-29Merge pull request #38314 from KoBeWi/dead_incrementRémi Verschelde
Remove unneccessary increment in TextEdit
2020-04-29Remove unneccessary increment in TextEditTomasz Chabora