summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-03-21Merge pull request #59367 from Calinou/script-editor-decrease-line-spacingRémi Verschelde
Decrease the default line spacing in the script editor
2022-03-21Merge pull request #59366 from Calinou/editor-pseudolocalization-move-settingRémi Verschelde
Move the pseudolocalization editor setting to a debug section
2022-03-21Merge pull request #59351 from taisph/feature/fix-getaddrinfo-failedRémi Verschelde
Fix getaddrinfo failed with undefined proxy config
2022-03-21Decrease the default line spacing in the script editorHugo Locurcio
This brings the level of line spacing closer to what it was like in Godot 3.x, which improves usability on small displays. This also decreases the default line spacing for fixed-width texts in the About dialog (license text).
2022-03-21Move the pseudolocalization editor setting to a debug sectionHugo Locurcio
This moves the setting in question to the bottom of the Editor Settings, which makes it less likely to be accidentally enabled.
2022-03-21Merge pull request #59142 from Calinou/doc-multiplayerpeerextensionMax Hilbrunner
Document the MultiplayerPeerExtension class
2022-03-20Merge pull request #59357 from ↵Rémi Verschelde
KoBeWi/your_toolbar_is_so_long_it_pushes_the_inspector Reduce the size of Controls editor toolbar
2022-03-20Fix getaddrinfo failed with undefined proxy configTais P. Hansen
HTTPClientTCP expects proxy host to be empty or port to be -1 to ignore the proxy. When getting the proxy config from the settings file, the values will default to U"null" and 0, respectively, making HTTPClientTCP to attempt to use the values as a proxy, which causes getaddrinfo to fail looking up a "null" hostname. Setting the default config values seems like a good approach to prevent this issue. Fixes #59037
2022-03-20Reduce the size of Controls editor toolbarkobewi
2022-03-20Merge pull request #59350 from timothyqiu/extract-moreRémi Verschelde
More editor `extract.py` improvements and fixes
2022-03-20More editor `extract.py` improvements and fixesHaoyu Qiu
2022-03-20Merge pull request #59345 from BastiaanOlij/call_correct_texture_freeRémi Verschelde
Call the correct texture free method on texture storage cleanup
2022-03-20Merge pull request #59346 from rburing/raycast_from_inside_globalRémi Verschelde
Raycasts hitting from inside: return collision point in global coordinates
2022-03-20Merge pull request #59341 from fazil47/clear-import-inspectorRémi Verschelde
Advanced import settings inspector is cleared when opened
2022-03-20Merge pull request #59343 from madmiraal/fix-57943Rémi Verschelde
Ensure minimum modifiers are pressed when matching actions
2022-03-20Raycasts hitting from inside: return collision point in global coordinatesRicardo Buring
2022-03-20Call the correct texture free method on texture storage cleanupBastiaan Olij
2022-03-20Ensure minimum modifiers are pressed when matching actionsMarcel Admiraal
2022-03-20Import settings inspector is cleared when openedFazil Babu
2022-03-19Merge pull request #59322 from YeldhamDev/groups_arent_boolsRémi Verschelde
2022-03-19Merge pull request #59305 from nevarek/fragment-shader-inv-projectionRémi Verschelde
2022-03-19Fix `tabs_rearrange_group` property being exposed as a `bool` instead of a `int`Michael Alexsander
2022-03-19Merge pull request #59315 from KoBeWi/less_options_in_OptionButton_or_somethingRémi Verschelde
2022-03-19Hide text and icon properties in OptionButtonkobewi
2022-03-19Merge pull request #59290 from rburing/get_process_info_docsRémi Verschelde
PhysicsServer3D docs: sync phrasing of get_process_info with 2D docs
2022-03-18Add inverse projection matrix to fragment shader globalsnevarek
2022-03-18Merge pull request #59286 from raulsntos/csharp-ignore-PhysicsServer3DExtensionRémi Verschelde
Ignore `PhysicsServer3DExtension` class in C#
2022-03-18PhysicsServer3D docs: sync phrasing of get_process_info with 2D docsRicardo Buring
2022-03-18Merge pull request #59287 from Vitika9/59181Rémi Verschelde
Right-clicking will not close popup in windows
2022-03-18Merge pull request #59268 from Chaosus/shader_renames2Rémi Verschelde
Rename several transform built-ins in shaders
2022-03-18Merge pull request #59254 from Calinou/doc-node-ownerRémi Verschelde
Mention that Node's `owner` must be set for persistence to work
2022-03-18Merge pull request #59257 from Calinou/key-name-backspaceRémi Verschelde
Rename the "BackSpace" and "BackTab" key strings to "Backspace"/"Backtab"
2022-03-18Mention that Node's `owner` must be set for persistence to workHugo Locurcio
This is already done in `Node.add_child()` documentation, but this copies the note in `Node.owner` for good measure.
2022-03-18Rename the "BackSpace" and "BackTab" key strings to "Backspace"/"Backtab"Hugo Locurcio
2022-03-18Right-clicking will not close popupVitika9
2022-03-18Ignore PhysicsServer3DExtension class in C#Raul Santos
PhysicsServer3DExtension inherits from PhysicsServer3D which is a singleton class, since singleton classes are generated as static in C# it would generate invalid C# so for now we'll be ignoring PhysicsServer3DExtension.
2022-03-18Merge pull request #58394 from bruvzg/rtl_hintRémi Verschelde
2022-03-18Merge pull request #59277 from bruvzg/hb401Rémi Verschelde
2022-03-18Merge pull request #58455 from bruvzg/export_scriptRémi Verschelde
2022-03-18Merge pull request #58233 from bruvzg/gde_tsRémi Verschelde
2022-03-18Merge pull request #59273 from V-Sekai/import-scene-no-rollRémi Verschelde
2022-03-18HarfBuzz: Update to version 4.0.1bruvzg
2022-03-18Avoid roll in scene importer camera.K. S. Ernest (iFire) Lee
2022-03-18i18n: Sync editor translation template after #59265Rémi Verschelde
(cherry picked from commit 0de7cfc60f9ad8c7e5717bbbe484b22344b4bb17)
2022-03-18i18n: Sync editor translations with WeblateRémi Verschelde
(cherry picked from commit 4228d320bd1410c9b668d9c3cf3bfa4d296a2d0b)
2022-03-18Merge pull request #59264 from timothyqiu/extract-groupsRémi Verschelde
2022-03-18Merge pull request #59269 from Vitika9/59196Rémi Verschelde
2022-03-18Improves editor property name extractionHaoyu Qiu
2022-03-18Merge pull request #59237 from akien-mga/gitignoreRémi Verschelde
2022-03-18Removed extra separator in absence of ChangeType and RenameVitika9