summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-14GDScriptTokenizer: Fix token_names orderlupoDharkael
2018-10-14Merge pull request #22942 from AlexHolly/doc-string-filedialogMax Hilbrunner
Filled missing Doc for String and FileDialog
2018-10-14Merge pull request #22986 from AlexHolly/doc-lineedit-clear-buttonMax Hilbrunner
Doc LineEdit MenuRedo and clear_button_enabled
2018-10-14Merge pull request #22978 from CakHuri/fix-get_button_count-linkMax Hilbrunner
[Docs] Fixed 'get_button_count's link and a typo related to 'button'.
2018-10-14Merge pull request #23001 from voithos/contributingdocMax Hilbrunner
Add useful links for contributors to CONTRIBUTING and README docs.
2018-10-14Merge pull request #22924 from clayjohn/doc_MeshDataToolMax Hilbrunner
[DOCS] Added descriptions to MeshDataTool classref
2018-10-13Add useful links for contributors to CONTRIBUTING and README docs.Zaven Muradyan
2018-10-13Doc LineEdit MenuRedo and clear_button_enabledAlexander Holland
2018-10-13[Docs] Fixed 'get_button_count's link and a typo related to 'button'.M. Huri
2018-10-13Merge pull request #22975 from CakHuri/shape-typoRémi Verschelde
Fixed a typo, sahpe to shape.
2018-10-13Fixed a typo, sahpe to shape.M. Huri
2018-10-12Merge pull request #22939 from merumelu/tileset-add-texture-fixRémi Verschelde
TileSetEditor: Don't crash when adding invalid files
2018-10-12Merge pull request #22929 from Windfisch/oa_hashmap_testThomas Herzog
Fix bug and add testcase for OAHashMap losing keys
2018-10-12Filled missing Doc for String and FileDialogAlexander Holland
2018-10-11added descriptions to MeshDataTool docclayjohn
2018-10-11Merge pull request #22915 from fire/visuals-shader-colour-constant-22906Rémi Verschelde
Fix for Visual Shader Editor #22906: Cannot change color on Color Con…
2018-10-11Merge pull request #22844 from samgreen/fix_gui_dragging_spamRémi Verschelde
Fix spam when dragging in the editor
2018-10-11Merge pull request #22800 from QbieShay/depth_writeRémi Verschelde
Added the ability to write to gl_FragDepth.
2018-10-11Merge pull request #22864 from milkowski/masterRémi Verschelde
Fix build with Android NDK r18
2018-10-11Merge pull request #22931 from groud/fix_resource_name_inspectorRémi Verschelde
Fixes resources name not showing in the inspector
2018-10-11TileSetEditor: Don't crash when adding invalid filesmerumelu
2018-10-11Fix bug with OAHashMap corruption on insertionFlorian Jung
When an item has been inserted into an already-occupied slot, and the original inhabitant of that slot was moved on, it was wrongly moved with the inserted-item's key/value instead of its own. This closes #22928.
2018-10-11Fixes resources name not showing in the inspectorgroud
2018-10-11Add testcase whether OAHashMap loses keysFlorian Jung
This demonstrates issue #22928.
2018-10-10Fix for Visual Shader Editor #22906: Cannot change color on Color ConstantK. S. Ernest (iFire) Lee
Revert line from 5f2f1089086ad64636efc2a4096e55e4483c927a
2018-10-09Merge pull request #22866 from Calinou/improve-find-in-filesRémi Verschelde
Improve the editor's Find in Files function
2018-10-09Merge pull request #22871 from marcelofg55/surr31_enumRémi Verschelde
Add missing BIND_ENUM for SPEAKER_SURROUND_31
2018-10-09Merge pull request #22872 from clayjohn/SurfaceTool-DocMax Hilbrunner
[DOC] Update and expand SurfaceTool doc
2018-10-09Revert "Added a check in sort_custom thats test wether the given method exists."Rémi Verschelde
This reverts commit 6415454581c3ba0025da6b9bae42e060fa4e1508. That patch was correct but Object::has_method is not a reliable way to check if we can use the given method, as it doesn't support inner classes (#22838).
2018-10-08update and expand surfacetool docclayjohn
2018-10-08Add missing BIND_ENUM for SPEAKER_SURROUND_31Marcelo Fernandez
2018-10-09Improve the editor's Find in Files functionHugo Locurcio
- Disable Whole Words and Match Case by default - Hide the Cancel button once the search is completed - Pad line numbers to the right for more readable search results
2018-10-08Merge pull request #22865 from neikeq/issue-22854Ignacio Etcheverry
Check if directory exists before trying to delete it
2018-10-08Check if directory exists before trying to delete itIgnacio Etcheverry
2018-10-08Fix build with Android NDK r18Wojciech Milkowski
As a bonus there is no need to use undocumented Gradle API any more.
2018-10-08Swap condition to prevent spam in editor.Sam Green
2018-10-08Merge pull request #22841 from J08nY/fix/collision-object-macroRémi Verschelde
Fix multi-statement macro call not being covered.
2018-10-08Fix multi-statement macro call not being covered.J08nY
2018-10-08Ensure CPU particles do not process if not visibleJuan Linietsky
2018-10-08Fixes to CPU particles for performance and avoiding NaNs.Juan Linietsky
2018-10-07Merge pull request #22808 from KellyThomas/vector-oneRémi Verschelde
Add ONE constants to Vector2 and Vector3
2018-10-07Merge pull request #22827 from qonnop/optimize-interpolationRémi Verschelde
Optimize interpolation algorithms
2018-10-07Merge pull request #22831 from exts/bugfix/simplifypathRémi Verschelde
Fixes #22828 - res://user had incorrect substr value
2018-10-07Merge pull request #22830 from Faless/fix_joypad_tree_crashMax Hilbrunner
Fix crash in Tree when moving using Joypad
2018-10-07fixes #22828 - res://user had incorrect substr valueexts
2018-10-07Merge pull request #22771 from guilhermefelipecgs/fix_inspector_previewRémi Verschelde
Fix inspector preview
2018-10-07Fix crash in Tree when moving using JoypadFabio Alessandrelli
2018-10-07Baker fixesJuan Linietsky
2018-10-07Update class documentation xmlKelly Thomas
2018-10-07Optimize interpolation algorithmsqonnop
Interpolation in the form of va + (vb - va) * c is faster and prevents floating point issues for int/string Followup to https://github.com/godotengine/godot/pull/22786