summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-11-20Do not start `Timer` upon manual switching of internal processAndrii Doroshenko (Xrayez)
Prevents `Timer` to prematurely start and timeout immediately if internal processing is enabled manually with `Timer.set_process_internal(true)` or `Timer.set_physics_process_internal(true)`. Even if the internal processing is enabled manually, the user still has to actually start the timer with `start()` method explicitly.
2020-11-18Merge pull request #43645 from vnen/variant-builtin-ret-type-fixRémi Verschelde
Fix return type on builtin validated calls
2020-11-18Fix return type on builtin validated callsGeorge Marques
Before it was being set to the base type instead of the actual return type.
2020-11-18Revert "nanosvg: Sync with upstream cc6c08d"Rémi Verschelde
This reverts commit f697e7879b0c1b37b94b890b3f2a9910e5d822a2. Part of the update introduced a regression: https://github.com/memononen/nanosvg/issues/188. We could include a local revert of the problematic commit but let's just do a full revert to our previous version, and I'll re-update once the regression is fixed upstream. Fixes #43641.
2020-11-18Merge pull request #43640 from akien-mga/gltf-workaround-bogus-imagesRémi Verschelde
glTF: Workaround import failure with invalid embedded images
2020-11-18glTF: Workaround import failure with invalid embedded imagesRémi Verschelde
image/gif is not supported in the glTF 2.0 specification, these files are broken. But let's be lenient... Fixes #43638.
2020-11-18Merge pull request #43630 from mbrlabs/nodepath-fix-2Rémi Verschelde
Fixed deletion of nodes with exported node paths
2020-11-18Merge pull request #43633 from akien-mga/nanosvg-cc6c08dRémi Verschelde
nanosvg: Sync with upstream cc6c08d
2020-11-18nanosvg: Sync with upstream cc6c08dRémi Verschelde
Includes some loop condition fixes after fuzzing.
2020-11-18Fixed deletion of nodes with exported node pathsMarcus Brummer
2020-11-17Merge pull request #43621 from Faless/fix/4.x_cli_exportRémi Verschelde
Fix CLI export when export_path is in preset.
2020-11-17Merge pull request #43622 from madmiraal/fix-js-missing-semi-colonsRémi Verschelde
Add missing javascript semi-colons.
2020-11-17Merge pull request #43623 from madmiraal/fix-js-lgtm-warningFabio Alessandrelli
Fix godot_js_websocket_send function unused assignment.
2020-11-17Fix godot_js_websocket_send function unused assignment.Marcel Admiraal
2020-11-17Add missing javascript semi-colons.Marcel Admiraal
2020-11-17Fix CLI export when export_path is in preset.Fabio Alessandrelli
Export presets contains the export_path option, to specify the default export location, but the CLI export option disregarded that, and always required and export path to be specified. After this commit, if the export path is not specified in the command, the one in the preset will be used, erroring only if it's not present or invalid.
2020-11-17Merge pull request #42412 from Xrayez/doc-image-textureRémi Verschelde
Describe `ImageTexture`, `Image` creation and usage
2020-11-17Merge pull request #38201 from Calinou/editor-f2-rename-nodeRémi Verschelde
Require Ctrl for switching between editors, bind F2 to Rename Node
2020-11-17Merge pull request #43614 from akien-mga/save-debugger-optionsRémi Verschelde
Debugger: Save options in project metadata
2020-11-17Describe `ImageTexture`, `Image` creation and usageAndrii Doroshenko (Xrayez)
2020-11-17Merge pull request #43612 from akien-mga/variant-utils-docRémi Verschelde
doc: Sync classref with Variant utility methods
2020-11-17i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit e95af7ae9b883151e6de1d31f94950833ae5b478)
2020-11-17Debugger: Save options in project metadataRémi Verschelde
Fixes #19542.
2020-11-17doc: Sync classref with Variant utility methodsRémi Verschelde
Copied relevant documentation from the original `@GDScript` built-ins, which will likely be removed in a future commit. Various fixups to `variant_utility.cpp` while working on this.
2020-11-17Merge pull request #43610 from RandomShaper/fix_res_duplicateRémi Verschelde
Fix crash in resoure duplicate
2020-11-17Fix crash in resoure duplicatePedro J. Estébanez
2020-11-17Merge pull request #38812 from aaronfranke/brace-no-empty-lineRémi Verschelde
Remove all empty lines from the start of blocks defined with braces
2020-11-17Merge pull request #43565 from rcorre/curve_handle_docRémi Verschelde
Clarify Curve3D.get_point_{in,out} position in doc.
2020-11-17Merge pull request #43547 from TokageItLab/lowering-s3d-and-camera-min-unitRémi Verschelde
Lowering the Minimum Unit at Shape3D and Cameras
2020-11-16Remove empty lines around braces with the formatting scriptAaron Franke
2020-11-16Add line removal around braces to the file formatting scriptAaron Franke
2020-11-17Lowering the Minimum Unit at Shape3D and CamerasTokage
2020-11-16Clarify Curve3D.get_point_{in,out} position in doc.Ryan Roden-Corrent
I verified this experimentally. I added a point at roughly (1,0,0), and dragged a handle back to the origin. The result was: ``` get_point_position: (0.991079, 0, -0.000069) get_point_in: (0.993409, 0, 0) get_point_out: (-0.993409, 0, 0) ```
2020-11-16Merge pull request #43233 from madmiraal/fix-42876Rémi Verschelde
Remove unneeded filter on joy_axis()
2020-11-16Merge pull request #43538 from KoBeWi/gotta_check_them_allRémi Verschelde
Allow folder checking in export preset file list
2020-11-16Merge pull request #43537 from KoBeWi/🌳🗎🔧Rémi Verschelde
Correct the doc about Tree.get_edited
2020-11-16Merge pull request #43595 from mbrlabs/windows-execute-fixRémi Verschelde
Fixed exit code retrieval of spawned processes on Windows
2020-11-16Merge pull request #43248 from HEAVYPOLY/masterRémi Verschelde
Change android orientations from sensor to user
2020-11-16Fixed exit code retrieval of spawned processes on WindowsMarcus Brummer
Use GetExitCodeProcess() on Windows to retrieve the exit code of a process in OS:excute()
2020-11-16Merge pull request #43556 from naithar/feature/pluggable_app_delegatesRémi Verschelde
[4.0] [iOS] Pluggable application delegate
2020-11-16Merge pull request #43479 from Calinou/use-low-editor-scale-autoRémi Verschelde
Use 75% editor scale on small displays automatically
2020-11-16Use 75% editor scale on small displays automaticallyHugo Locurcio
This also makes borders always display in the editor theme, even if the editor scale is below 100%. Otherwise, "focus" outlines would vanish when using an editor scale below 100%, which harms usability.
2020-11-16Merge pull request #43493 from timothyqiu/request-absolute-authorityFabio Alessandrelli
Allow HTTPClient to talk to a proxy server
2020-11-16Merge pull request #43316 from YeldhamDev/rate_scale_wav_fixRémi Verschelde
Fix WAV resources ignoring the AudioServer's 'global_rate_scale' value
2020-11-16Merge pull request #41911 from Calinou/test-add-configfileRémi Verschelde
Add a test suite for ConfigFile
2020-11-16Merge pull request #41263 from Calinou/filesystem-dock-rename-delete-optionRémi Verschelde
Rename the "Delete" option in the FileSystem dock to "Move to Trash"
2020-11-16Merge pull request #43509 from Calinou/doc-projectsettings-packetpeerstream-sizeRémi Verschelde
Clarify packet peer `max_buffer_po2` in ProjectSettings documentation
2020-11-16Merge pull request #43461 from ccl2of4/fix-linux-joypad-dpad-zeroingRémi Verschelde
Fix for linux joypad D-pad zeroing
2020-11-16Add a test suite for ConfigFileHugo Locurcio
2020-11-16Clarify packet peer `max_buffer_po2` in ProjectSettings documentationHugo Locurcio
This closes https://github.com/godotengine/godot-docs/issues/4364.