summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-11-26Merge pull request #33887 from dankan1890/old_search_fixRémi Verschelde
Fixed missing scrolling in Search Help Dialog.
2019-11-26Merge pull request #33908 from akien-mga/range-fix-max-errorsRémi Verschelde
Range: Fix cases where max was set to or below min value
2019-11-26Range: Fix cases where max was set to or below min valueRémi Verschelde
It will now raise an error whenever this happens so that we can fix these situations. `max == min` is not allowed as it could lead to divisions by zero in ratios, and `max < min` doesn't make much sense. Fixes #33907.
2019-11-26Merge pull request #33892 from nekomatata/scirpt-editor-fixesRémi Verschelde
Fixes around ScriptEditor script list
2019-11-25Merge pull request #33872 from zaksnet/yield-add-documentationRémi Verschelde
Add some missing documentation about yield()
2019-11-25Merge pull request #33889 from clayjohn/specular_mode_bugRémi Verschelde
Fix bug where SpecularMode DISABLED is not cached
2019-11-25Merge pull request #33888 from nekomatata/debug-menu-hideRémi Verschelde
Debug menu in editor doesn't hide on checkbox toggle
2019-11-25Fixes around ScriptEditor script listPouleyKetchoupp
- Fixed "Previous Script" shortcut not working (CTRL+SHIFT+<) - Fixed crash (integer division by zero) when using previous/next script shortcut with no script open - Fixed error when dropping a script file with no script open ERROR: ItemList::get_item_metadata: Index p_idx=-1 out of size (items.size()=0) At: scene\gui\item_list.cpp:257
2019-11-25Added missing documentation for yield()Zak Stam
Added some missing documentation about yield() being able to wait for a function also. I cant believe something like that was missing from the docs, it would have saved me so much time (and others i assume).
2019-11-25Fix bug where specularmode disabled is not cachedclayjohn
2019-11-25Debug menu in editor doesn't hide on checkbox togglePouleyKetchoupp
Fixes #33850
2019-11-25Fixed missing scrolling in Search Help Dialog.dankan1890
Fix #33675
2019-11-25Merge pull request #33883 from bruvzg/mac_localeRémi Verschelde
[macOS] Fix locale detection.
2019-11-25Fix inverted value check in UWP export packagerGeorge Marques
2019-11-25[macOS] Fix locale detection.bruvzg
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