summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-10-08PopupMenu: Reorder add_* methods in more natural orderRémi Verschelde
Also adds `add_icon_radio_check_shortcut` matching `add_icon_radio_check_item`, binds them for scripting languages, and binds `add_multistate_item`.
2019-10-08Merge pull request #32616 from Faless/net/fix_close_execRémi Verschelde
Disable socket descriptor sharing with subprocs.
2019-10-08Merge pull request #32632 from groud/increase_grid_size_limitRémi Verschelde
Increase grid size limit
2019-10-08Merge pull request #32454 from jeronimo-schreyer/disable_unix_socketRémi Verschelde
Optional Unix Socket disable for devices that do not support it
2019-10-08Merge pull request #32606 from cbolgiano/bugfix/32294Rémi Verschelde
Fixes Default Angular Damp in Project Settings Disallows Fractional Input #32294
2019-10-08Merge pull request #32607 from Calinou/doc-gdnative-singleton-prefixRémi Verschelde
Document the GDNative singleton method prefix being changeable
2019-10-0732294: Changed the default_angular_damp value to a float.devbox
32294: Added hints for both 2d/3d linear/angular. 32294: Added hints for both 2d/3d linear/angular.
2019-10-07Increase grid size limitGilles Roudière
2019-10-07Merge pull request #32623 from madmiraal/remove-circular-includesRémi Verschelde
Remove circular dependency between Vector3 and Basis.
2019-10-07Merge pull request #32626 from Paulb23/issue_27631_caret_draw_eolRémi Verschelde
Fixed drawing the caret at eol when at eol is not visible
2019-10-07Fixed drawing the caret at eol when at eol is not visiblePaulb23
2019-10-07Remove circular dependency between Vector3 and Basis.Marcel Admiraal
2019-10-07Document the GDNative singleton method prefix being changeableHugo Locurcio
This also tweaks error messages to remove hardcoded references to the default `godot_` prefix.
2019-10-07Disable socket descriptor sharing with subprocs.Fabio Alessandrelli
On Unix systems, sockets are like file descriptors, and file descriptors are usually shared among child processes. This means, that if we spawn a subprocess (or we fork) like we do in the editor, open file descriptors will leak to the new process. This causes issue with sockets as they might remain open and bound (listening) when the original process closes.
2019-10-07Merge pull request #32613 from clayjohn/GLES2-canvas-bg-modeRémi Verschelde
Add canvas background mode to GLES2
2019-10-07Merge pull request #32351 from nekomatata/texture-rect-size-updateRémi Verschelde
Update TextureRect when its Texture is modified directly
2019-10-07Merge pull request #32523 from hbina/hbina_fix_method_orderingRémi Verschelde
Applied the same kind of ordering to methods description
2019-10-07Merge pull request #32567 from Calinou/increase-about-dialog-sizeRémi Verschelde
Increase the size of the About dialog
2019-10-07Merge pull request #32594 from Calinou/project-editor-settings-search-shortcutRémi Verschelde
Focus the search box when pressing Ctrl+F in Project/Editor Settings
2019-10-06add canvas background mode to GLES2clayjohn
2019-10-07Merge pull request #32608 from cbscribe/kcc_doc_updatesRémi Verschelde
[DOC] Fill in various missing method/member descriptions.
2019-10-07Merge pull request #32589 from OsamaElHariri/add_angle_to_rulerRémi Verschelde
Add angle to ruler tool
2019-10-07Merge pull request #32605 from dankan1890/get_custom_colorRémi Verschelde
Added missing bind_method to TreeItem::get_custom_color().
2019-10-07Merge pull request #32603 from clayjohn/GLES2-post-processing-bugsRémi Verschelde
Fix current issues with post-processing
2019-10-06[DOC] Fill in various missing method/member descriptions.Chris Bradfield
2019-10-06Added missing bind_method to TreeItem::get_custom_color().dankan1890
Fix #32595
2019-10-06Merge pull request #32602 from cbscribe/kcc_doc_rigidRémi Verschelde
[DOC] Add missing physics_material_override descriptions
2019-10-06fix current issues with post-processingclayjohn
2019-10-06[DOC] Add missing physics_material_override descriptionsChris Bradfield
2019-10-06Merge pull request #32599 from cbscribe/kcc_doc_clippedcameraRémi Verschelde
[DOC] Document ClippedCamera properties/methods.
2019-10-06Merge pull request #32569 from qarmin/fix_control_crashRémi Verschelde
Fix crash in Control functions
2019-10-06Merge pull request #32580 from sheepandshepherd/gdnativelibrary-docRémi Verschelde
Document GDNativeLibrary
2019-10-06Merge pull request #32586 from jmorton06/masterRémi Verschelde
Set tooltip to an empty string after removing texture/material
2019-10-06[DOC] Document ClippedCamera properties/methods.Chris Bradfield
2019-10-06Merge pull request #32598 from Chaosus/fix_shader_crashYuri Roubinsky
Prevents shader crash if name of variable overrides function name
2019-10-06Prevent shader crash if name of variable overrides function nameYuri Roubinsky
2019-10-06Set tooltip to an empty string when clearingJoe Morton
Format Remove string conversion
2019-10-06Focus the search box when pressing Ctrl+F in Project/Editor SettingsHugo Locurcio
2019-10-06Document GDNativeLibrarysheepandshepherd
2019-10-06Merge pull request #32592 from Chaosus/fix_const_shader_crashYuri Roubinsky
Prevent shader crash if function call been used for constant initialization
2019-10-06Prevent shader crash if function call been used on constantYuri Roubinsky
2019-10-06Add angle to ruler toolOsama El Hariri
2019-10-06Merge pull request #32590 from Chaosus/fix_shader_regressionYuri Roubinsky
Fix few redefinition name errors for variable/param/function in shaders
2019-10-06Fix few redefinition name errors for variable/param/function in shadersYuri Roubinsky
2019-10-05Fix crash in Control functionsqarmin
2019-10-05Update TextureRect and Sprite when their Texture is modified directly.PouleyKetchoupp
Modified Sprite to use "changed" signal instead of _changed_callback to make it work when tool is disabled (change receptors are editor only). Fixes #32349
2019-10-05Increase the size of the About dialogHugo Locurcio
This makes third-party license texts display without any soft wrapping. The About dialog still fits in the editor when using the smallest window size permitted (1024x600).
2019-10-05Merge pull request #32566 from Calinou/document-non-resource-folder-filterRémi Verschelde
Document the ability to include/exclude non-resource export folders
2019-10-05Merge pull request #32565 from noname1477/patch-2Rémi Verschelde
Fixed some typos in iteration error messages
2019-10-05Document the ability to include/exclude non-resource export foldersHugo Locurcio
This closes #3646.