summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-12-11Merge pull request #14534 from AndreaCatania/patch-2Rémi Verschelde
Fixed bad bindings
2017-12-11Merge pull request #14543 from volzhs/checkbox-checkbutton-centerRémi Verschelde
Fix align=center info is not saved with CheckBox & CheckButton
2017-12-11Merge pull request #14541 from volzhs/fix-checkbuttonRémi Verschelde
Fix CheckButton & CheckBox minimum size
2017-12-11Fix align=center info is not saved with CheckBox & CheckButtonvolzhs
2017-12-11Merge pull request #14533 from Krakean/addrootifnone_fixRémi Verschelde
Fix to #14503
2017-12-11Fix CheckBox minimum sizevolzhs
2017-12-11Fix CheckButton minimum sizevolzhs
2017-12-11Fixed bad bindingsAndreaCatania
2017-12-11Fixed #14503Dmitry Koteroff
2017-12-11Merge pull request #14511 from akien-mga/drop_tilemap_center_xyRémi Verschelde
TileMap: Drop unused center_x/center_y booleans
2017-12-11Merge pull request #14514 from akien-mga/unix_has_dataRémi Verschelde
Drop unused OS_Unix::has_data and related logic
2017-12-11Merge pull request #14516 from AndreaCatania/patch-2Rémi Verschelde
Implemented physics linear and angular lock
2017-12-11Merge pull request #14520 from Smjert/fix/11247/skyboxRémi Verschelde
Fix skybox generation imprecision with Clang
2017-12-11Merge pull request #14518 from poke1024/fix-player-wposRémi Verschelde
Fix player window centering on macOS retina screens
2017-12-10Merge pull request #14529 from Smjert/fix/scene-tree-editor-crashRémi Verschelde
Fix SceneTreeEditor crashing when calling _deselect_items
2017-12-10Fix SceneTreeEditor crashing when calling _deselect_itemsStefano Bonicatti
The crash can be triggered for instance by trying to reparent a node and clicking on the background of the Reparent Node window.
2017-12-10Merge pull request #14521 from mhilbrunner/docs-httpRémi Verschelde
[DOCS] HTTPClient & HTTPRequest
2017-12-10Merge pull request #14527 from mhilbrunner/patch-5Rémi Verschelde
[DOCS] IP.xml typo fix
2017-12-10[DOCS] IP.xml typo fixMax Hilbrunner
2017-12-10[DOCS] HTTPClient & HTTPRequestmhilbrunner
2017-12-10Merge pull request #14524 from mhilbrunner/patch-3Chris Bradfield
[DOCS] IP
2017-12-10Merge pull request #14525 from mhilbrunner/patch-4Rémi Verschelde
[DOCS] IP_Unix [ci skip]
2017-12-10[DOCS] IPMax Hilbrunner
2017-12-10[DOCS] IP_UnixMax Hilbrunner
2017-12-10Merge pull request #14512 from Silvea12/masterRémi Verschelde
Updated controller mappings for windows/mac/linux
2017-12-10Merge pull request #14505 from akien-mga/bind_vmethod_returnRémi Verschelde
Fix wrong return value in some virtual method bindings
2017-12-10Merge pull request #14497 from akien-mga/iphone-cleanupRémi Verschelde
iOS: Drop obsolete code from never-public modules
2017-12-10Fix skybox generation imprecision with ClangStefano Bonicatti
The bug generated a "blue circle" at the bottom end of the y axis, and probably one too at the other end. This is caused by a normalization of a vector which results in its y component to be sometimes > 1.0 or < -1.0 in Clang. This value is then used with acos(), which returns NaN. Fixes #11247
2017-12-10iOS: Drop obsolete code from never-public modulesRémi Verschelde
2017-12-10Fix player window centering on macOS retina screensBernhard Liebl
2017-12-10Implemented physics linear and angular lockAndreaCatania
2017-12-10Drop unused OS_Unix::has_data and related logicRémi Verschelde
Closes #5536.
2017-12-10Updated controller mappings for windows/mac/linuxAndrew Silver
2017-12-10TileMap: Drop unused center_x/center_y booleansRémi Verschelde
Two years later they are still unused and we do not know their intend use case, so tschüss. Closes #2513.
2017-12-10Merge pull request #14509 from poke1024/fix_selection_copy_crashRémi Verschelde
Fix crash in RichTextLabel::selection_copy()
2017-12-10Fix crash in RichTextLabel::selection_copy()Bernhard Liebl
2017-12-10Fix wrong return value in some virtual method bindingsRémi Verschelde
2017-12-10Merge pull request #14501 from Paulb23/close_wrong_scene_issue_13844Rémi Verschelde
Fixed close current scene closing the wrong scene, issue 13844
2017-12-10Fixed close current scene closing the wrong scene, issue 13844Paulb23
2017-12-10Merge pull request #11510 from AndreaCatania/skelRémi Verschelde
Added skeleton x-ray
2017-12-10Merge pull request #14467 from willnationsdev/docs3Rémi Verschelde
[DOCS] ConcavePolygonShape2D, CubeMap
2017-12-10Fixed a typo in the Node docsAndrew Silver
Fixed a typo in `remove_and_skip` [ci skip]
2017-12-10Merge pull request #14498 from AndreaCatania/patch-1Rémi Verschelde
Ray cast return correct shape id. Fixes #14473
2017-12-10Ray cast return shape id. Fixes #14473AndreaCatania
2017-12-10Merge pull request #13351 from poke1024/fix12451_2Rémi Verschelde
Make click on arrow properly open and close property editor modals
2017-12-10Merge pull request #14486 from djrm/pr_visualsRémi Verschelde
Added splash screen with sponsors
2017-12-10Merge pull request #14494 from RandomShaper/fix-mouse-x11Rémi Verschelde
Fix no mouse if touch device present in X11
2017-12-10Merge pull request #14485 from RandomShaper/fix-android-exportRémi Verschelde
Fix crash on Android export
2017-12-10fix certain popup close clicks with popup buttonsBernhard Liebl
2017-12-10Fix no mouse if touch device present in X11Pedro J. Estébanez
Plus several improvements in this area. Sadly, grabbing has been disabled until a better solution is found. Fixes #14427.