summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-06-03Merge pull request #49269 from sarchar/fix-dns-locksRémi Verschelde
Fix DNS resolve mutex locks
2021-06-03Fix DNS resolve mutex locksChuck
This fixes #49261, which was happening because of a deadlock in the resolver mutex. There was leftover old mutex code and it's all be converted to new MutexLock class now.
2021-06-03Merge pull request #38224 from Calinou/increase-audiostreamplayer3d-unit-sizeRémi Verschelde
Increase the default AudioStreamPlayer3D unit size to 10
2021-06-03Merge pull request #48889 from Calinou/file-rename-endian-swapRémi Verschelde
Rename File's `endian_swap` to `big_endian`
2021-06-03Merge pull request #49277 from pycbouh/docs-editor-plugins-proofreadRémi Verschelde
Proofread `add_*_plugin`/`remove_*_plugin` descriptions in `EditorPlugin`
2021-06-03Proofread add_*_plugin/remove_*_plugin descriptions in EditorPluginYuri Sizov
2021-06-03Merge pull request #47922 from RoniPerson/patch-3Rémi Verschelde
Added documentation to some `add_*_plugin` methods
2021-06-03Merge pull request #46482 from KoBeWi/size_warning_the_sequelRémi Verschelde
Warn about changing size only when it's relevant
2021-06-03Merge pull request #48350 from RandomShaper/fix_alsamidi_crashRémi Verschelde
Fix crash when using ALSA MIDI with PulseAudio
2021-06-03Merge pull request #49271 from Chaosus/vs_fix_error_label_themeRémi Verschelde
Fix changing theme coloring for error label in VisualShader editor
2021-06-03Fix crash when using ALSA MIDI with PulseAudioPedro J. Estébanez
2021-06-03Fix changing theme coloring for error label in VisualShader editorYuri Roubinsky
2021-06-03Merge pull request #44259 from gongpha/new-gradient-iconRémi Verschelde
New icons for Gradient and GradientTexture resources
2021-06-03Merge pull request #49263 from Calinou/add-occluder3d-editor-iconsRémi Verschelde
Add editor icons for Occluder3D and OccluderInstance3D
2021-06-03Merge pull request #49264 from Calinou/editor-theme-improved-radio-checkboxesRémi Verschelde
Improve radio checkboxes in the default editor theme
2021-06-03Add editor icons for Occluder3D and OccluderInstance3DHugo Locurcio
2021-06-03Improve radio checkboxes in the default editor themeHugo Locurcio
2021-06-02Merge pull request #49148 from reduz/use-bold-fontsRémi Verschelde
Use bold fonts in editor
2021-06-02Use bold fonts in editorreduz
* Labels are now bold * Categories in trees are bold * Main editor buttons are bold * Fixed section folding arrows in inspector
2021-06-02Merge pull request #49253 from ↵Rémi Verschelde
Geometror/fix-displayserverwindows-window-can-draw Fixed window_can_draw of DisplayServerWindows
2021-06-02Fixed window_can_draw of DisplayServerWindowsHendrik Brucker
2021-06-02i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit 0446cf487fab518858af136f81e963df12b5d05e)
2021-06-01Merge pull request #49026 from sarchar/multiple-dns-resolvesRémi Verschelde
2021-06-01Merge pull request #45393 from Paulb23/code_edit_autocompleteRémi Verschelde
2021-06-01Update String/Comment, autocomplete and hints docsPaulb23
2021-06-01Merge pull request #49074 from Faless/headless/dsRémi Verschelde
2021-06-01Move remaining dummy drivers to servers.Fabio Alessandrelli
2021-06-01Move and expose Code Hint in CodeEditPaulb23
2021-06-01Move and expose AutoComplete in CodeEditPaulb23
2021-06-01Add comment and string tracking to CodeEditPaulb23
2021-06-01LinuxBSD now compiles without vulkan/x11.Fabio Alessandrelli
2021-06-01Remove server platformFabio Alessandrelli
2021-06-01Add DisplayServerDummy for headless display.Fabio Alessandrelli
Uses RasterizerDummy internally. This is always compiled in, maybe we should add a switch to enable/disable it via scons?
2021-06-01Sync RasterizerDummy changes.Fabio Alessandrelli
2021-06-01Merge pull request #49241 from floppyhammer/fix-tree-item-draggingRémi Verschelde
Make tree item dragging not affected by touch dragging
2021-06-01Merge pull request #48963 from ↵Rémi Verschelde
HaywardMorihara/export-android-keystore-debug-warnings Exporting -> Android: Keystore Warnings
2021-06-01Merge pull request #49236 from ↵Rémi Verschelde
kleonc/texture_region_editor-edit_region-updating-fix TextureRegionEditor Fix not updating on editing region with autoslice cached
2021-06-01fix-tree-item-draggingfloppyhammer
2021-06-01Merge pull request #49239 from Paulb23/text_edit_selection_behind_minimapRémi Verschelde
Fix TextEdit selection drawing behing minimap
2021-06-01Fix TextEdit selection drawing behing minimapPaulb23
2021-06-01Merge pull request #49228 from MmAaXx500/cc-ver-prRémi Verschelde
Improve compiler version extraction
2021-06-01Merge pull request #49024 from groud/restore_tilemap_show_debugRémi Verschelde
Restore TileMap's debug collision shapes and add navigation.
2021-06-01TextureRegionEditor Fix not updating on editing region with autoslice cachedkleonc
2021-06-01Merge pull request #48770 from ↵Rémi Verschelde
LightningAA/scrollcontainer-ensure-item-visible-4.0 ScrollContainer: Expose `_ensure_focused_visible` to the scripting API and rename it to `ensure_control_visible`
2021-06-01Merge pull request #49067 from JFonS/fix_gcc_warningsRémi Verschelde
Fix some warnings raised by GCC-11.1
2021-06-01Support multiple address resolution in DNS requestsChuck
Add two new functions to the IP class that returns all addresses/aliases associated with a given address. This is a cherry-pick merge from 010a3433df43a94fee95474360ffa6662c7441b9 which was merged in 2.1, and has been updated to build with the latest code. This merge adds two new methods IP.resolve_hostname_addresses and IP.get_resolve_item_addresses that returns a List of all addresses returned from the DNS request.
2021-05-31ScrollContainer: Expose `_ensure_focused_visible` to the APILightning_A
Was renamed to `ensure_control_visible`
2021-05-31Merge pull request #49142 from Chaosus/bvh_fix_possible_crashRémi Verschelde
Fixed possible crash in `DynamicBVH::optimize_incremental`
2021-05-31Improve compiler version extractionMmAaXx500
2021-05-31Merge pull request #48517 from pycbouh/editor-better-profiles-dialogRémi Verschelde
Improve the layout and texts of the Editor Feature Profiles dialog