summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-25Fix inverted value check in UWP export packagerGeorge Marques
2019-11-25Merge pull request #33869 from jbuck3/dialog-resize-bugRémi Verschelde
Fix WindowDialog moving when resized from the left/top edge
2019-11-25Merge pull request #33867 from rcorre/get_node_docsRémi Verschelde
Clarify get_node vs get_node_or_null.
2019-11-25Merge pull request #33862 from Faless/net/http_request_chunk_sizeRémi Verschelde
Add download_chunk_size property to HTTPRequest.
2019-11-25Merge pull request #33861 from RobertBColton/patch-1Rémi Verschelde
Update Viewport.xml
2019-11-25Merge pull request #33860 from nekomatata/stylebox-preview-shadowRémi Verschelde
StyleBox preview adjusted to fit all drawn content
2019-11-25Merge pull request #33856 from nekomatata/script-editor-text-edit-errorRémi Verschelde
Fixed index out of size error in TextEdit when opening scripts
2019-11-25Merge pull request #33829 from Calinou/tilemap-editor-use-info-overlayRémi Verschelde
Use the CanvasItemEditor info overlay to display TileMap coordinates
2019-11-25Merge pull request #33844 from akien-mga/glTexImage2D-formatRémi Verschelde
GLES2: Restructure depth_internalformat code to work on mobile
2019-11-25Merge pull request #33876 from nekomatata/bookmarks-menu-translationRémi Verschelde
Removed translation for bookmarks menu item name in TextEditor
2019-11-25Removed translation for bookmarks menu item name in TextEditorPouleyKetchoupp
Only the label's text needs a translation, and it could cause issues when getting the node by name in a different language.
2019-11-24Fix WindowDialog moving when resized from the left/top edgeJames Buck
get_combined_minimum_size() must be used in order to consider the min size specified by the user when determining how far the left/top edge is allowed to move. Otherwise the dialog may think it can shrink further than it should, causing the right/bottom edge to move when the rect size is fixed in set_size().
2019-11-24Add download_chunk_size property to HTTPRequest.Fabio Alessandrelli
This allows setting the `read_chunk_size` of the internal HTTPClient. This is important to reduce the allocation overhead and number of file writes when downloading large files, allowing for better download speed.
2019-11-24Update Viewport.xmlRobert Colton
Add description for gui_is_dragging to document drag and drop behavior.
2019-11-24StyleBox preview adjusted to fit all drawn contentPouleyKetchoupp
This change allows StyleBox preview to take shadows and content margins into account to display how a whole panel would be rendered. The preview control clips contents so that in any case it doesn't bleed on controls around. Fixes #33801
2019-11-24Fixed index out of size error in TextEdit when opening scriptsPouleyKetchoupp
2019-11-23Restructure depth_internalformat code to work on mobileclayjohn
This changes the code path so that `glRenderBufferStorage*` always uses values appropriate for renderbuffers and `glTexImage2D` never uses an internalformat meant for buffers. Fixes #33825.
2019-11-23glTexImage2D: Fix confusion between format and internal formatRémi Verschelde
The `format` parameter is similar to `internalFormat` but takes different values, and especially only `GL_DEPTH_COMPONENT` for depth, without size specifier. Cf. https://www.khronos.org/registry/OpenGL-Refpages/es3.0/html/glTexImage2D.xhtml Fixes a regression from #33278 and another occurrence.
2019-11-23Merge pull request #33828 from neikeq/貴様Rémi Verschelde
Mono/C#: Prevent SCons from building API solutions in parallel
2019-11-23Merge pull request #33652 from Black-Cat/http-client-fixFabio Alessandrelli
Fix HTTPClient::poll crash when connection set to null
2019-11-23Fix HTTPClient::poll crash when connection set to nullArtem Burjachenko
2019-11-22Use the CanvasItemEditor info overlay to display TileMap coordinatesHugo Locurcio
This also removes the editor setting that toggles coordinate display, as it no longer solves an existing bug. This closes #28135.
2019-11-22Mono/C#: Prevent SCons from building API solutions in parallelIgnacio Etcheverry
2019-11-22Merge pull request #33799 from fire/gltf2-sceneRémi Verschelde
33714 glTF2 scene count change try two.
2019-11-2233714 glTF2 handle undefined load-time scene.K. S. Ernest (iFire) Lee
2019-11-22i18n: Sync translation template with current sourceRémi Verschelde
2019-11-22i18n: Sync translations with WeblateRémi Verschelde
2019-11-22Merge pull request #33798 from capnm/capnm-fix-33749Rémi Verschelde
Setting the node process priority should not trigger an error
2019-11-22Merge pull request #33810 from akien-mga/codespellRémi Verschelde
Fix typos with codespell
2019-11-22Style: Add missing copyright headersRémi Verschelde
2019-11-22Fix typos with codespellRémi Verschelde
Using codespell 1.16.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick leapyear lod merchantibility nd numer ois ony que seeked synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-11-21Merge pull request #33794 from nekomatata/gltf-morph-shapes-crash2Rémi Verschelde
Error instead of crash in gltf import with more than one morph target
2019-11-21Merge pull request #33793 from fire/33756Rémi Verschelde
33756 gltf2 importer should use zfar
2019-11-21Merge pull request #33792 from clayjohn/GLES3-cubemap-fixRémi Verschelde
Fix GL error by properly using float uniform
2019-11-21Merge pull request #33777 from KoBeWi/conditional_fixRémi Verschelde
Unfold directories when showing in file system
2019-11-21Merge pull request #33791 from neikeq/issue-33761Ignacio Roldán Etcheverry
C#: Fix PathWhich on Windows when name already has extension
2019-11-21Setting the node process priority should not trigger an errorMartin Capitanio
Fixes #33749 This function can be called outside the scene tree.
2019-11-21Error instead of crash in gltf import with more than one morph targetPouleyKetchoupp
Redone from PR #33782 to fix the crash without adding compatibility with Blender 2.8 Helps with #16124, while Blender 2.81 has the proper export fix.
2019-11-2133756 gltf2 importer should use zfarK. S. Ernest (iFire) Lee
2019-11-21Fix GL error by properly using float uniformclayjohn
2019-11-21Unfold directories when showing in file systemTomasz Chabora
2019-11-21C#: Fix PathWhich on Windows when name already has extensionIgnacio Etcheverry
Also make the Posix version of PathWhich check if the file has executable access.
2019-11-21Merge pull request #33783 from bruvzg/mac_remove_cvdisplaylink_hackRémi Verschelde
[macOS] Remove CVDisplayLink v-sync hack.
2019-11-21Merge pull request #33312 from BenjaminNavarro/masterRémi Verschelde
Better description of the binds parameter of connect
2019-11-21[macOS] Remove CVDisplayLink v-sync hack.bruvzg
2019-11-21Merge pull request #28526 from PtrMan/pr_bakeGi1Rémi Verschelde
GIProbe::bake(): special handling of spatial
2019-11-21Better description of the binds parameter of connectBenjamin Navarro
Now states how binds are handled if they are used together with parameters passed to emit_signal
2019-11-21Merge pull request #32274 from raphael10241024/fix_sync_physics_jitterRémi Verschelde
fix kinematicBody2D jitters when sync_to_physics is turned on
2019-11-21GIProbe::bake: Remove check for ownershipPtrMan
Fixes #28508.
2019-11-21Merge pull request #33779 from clayjohn/bugfixes_from_env_map_fixRémi Verschelde
Fix bugs introduced by IBL fixes