summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-08-14Fix int(String) != int(int) conversionChaosus
2018-08-14Merge pull request #20860 from guilhermefelipecgs/fix_border_artifactRémi Verschelde
Fix border artifacts at the edge of deep parallax.
2018-08-14Merge pull request #20986 from marcelofg55/audio_dummyRémi Verschelde
Add Dummy AudioDriver into the AudioDriverManager list
2018-08-14Merge pull request #20982 from hpvb/fix-19842Rémi Verschelde
Emit pressed events after processing items
2018-08-14Merge pull request #20981 from gotnospirit/case_aware_autocompleteRémi Verschelde
Case-aware autocomplete: prefer same case candidates
2018-08-14Merge pull request #20976 from Chaosus/warning_colorRémi Verschelde
Add warning color to output log
2018-08-14Merge pull request #20947 from oisincar/get_bone_ixRémi Verschelde
Expose PhysicalBone::get_bone_id() to c#/gdscript
2018-08-14Merge pull request #20932 from clayjohn/doc_backbuffercopyRémi Verschelde
[Doc] Removed reference to texscreen in BackBufferCopy docs
2018-08-14Merge pull request #20952 from hpvb/fix-17963Rémi Verschelde
When starting up try creating directories recursively
2018-08-14SCons: Fix mono_root initializationRémi Verschelde
As advised by @neikeq.
2018-08-13removed reference to texscreenclayjohn
2018-08-14When starting up try creating directories recursivelyHein-Pieter van Braam
Previously we had a check to see if cache and data directories exist and another check to try to make them if they do not. However the second check was never reached if we don't have the directories in question. Furthermore for cache directories on Linux people who never started a desktop environment we need to recurisively create the XDG directory as well as the godot specific directory. This fixes #17963
2018-08-13Add Dummy AudioDriver into the AudioDriverManager listMarcelo Fernandez
2018-08-13Merge pull request #20706 from mysticfall/issue-20705Ignacio Etcheverry
Add missing GetPtr() for Dictionary<> and Array<>
2018-08-13Emit pressed events after processing itemsHein-Pieter van Braam
When processing items we may actually delete the item we're processing in the callback for the signal. To avoid this, call the signal after we're done processing the items. This fixes #19842
2018-08-13Merge pull request #20913 from pulkomandy/masterRémi Verschelde
Rebase patches for fixing haiku build.
2018-08-13Merge pull request #20918 from Fluffel/document_tween_branchRémi Verschelde
[DOCS] get_indexed, tween
2018-08-13Add warning color to output logChaosus
2018-08-13Merge pull request #20953 from hpvb/fix-20322Rémi Verschelde
Don't try to update the visual shader graph if it doesn't exist yet
2018-08-13Merge pull request #20956 from volzhs/update-helpRémi Verschelde
Update help doc when changing font size
2018-08-13Editor autocomplete: prefer same case candidatesJames
2018-08-13Merge pull request #20963 from akien-mga/remove-tmp-tpzRémi Verschelde
Remove cached .tpz archive after templates download and install
2018-08-13Merge pull request #20936 from marcelofg55/mingw_compile_errRémi Verschelde
MinGW compile fix
2018-08-13Merge pull request #20974 from karroffel/imgeo-gles2Thomas Herzog
[gles2] added ImmediateGeometry rendering
2018-08-13Merge pull request #20971 from swarnimarun/new-resource-optionRémi Verschelde
Fix for resource save dialog call
2018-08-13Fixed absent variable exception while trying to raise another exception.Teashrock
2018-08-13[gles2] added ImmediateGeometry renderingThomas Herzog
2018-08-13Merge pull request #20970 from Chaosus/fix_spamRémi Verschelde
Remove usage console spam
2018-08-13Fix for resource save dialog callSwarnim Arun
to make sure the resource save opens in the current folder when using right click to do it.
2018-08-13Remove usage console spamChaosus
2018-08-13Merge pull request #20933 from marcelofg55/pa_compile_errThomas Herzog
Fix compile error with PulseAudio driver and clang
2018-08-13Merge pull request #20731 from YeldhamDev/scr_editor_context_fixRémi Verschelde
Fix wrong context menu when right-clicking script/doc files
2018-08-13Merge pull request #20155 from Tunous/line-edit-clearRémi Verschelde
Add clear button to search fields
2018-08-13Remove cached .tpz archive after templates download and installRémi Verschelde
Closes #20640.
2018-08-13Merge pull request #20778 from ibrahn/remove-zero-append-typosRémi Verschelde
removed some surplus null appends that got typoed in 0e29f7974b59e444…
2018-08-13Merge pull request #20680 from Calinou/text-editor-faster-caret-blinkRémi Verschelde
Make the default text editor caret blink speed faster
2018-08-13Merge pull request #20670 from Calinou/script-editor-zoom-hidpiRémi Verschelde
Fix zoom display in the script editor on hiDPI displays
2018-08-13Merge pull request #20668 from SaracenOne/enum_help_fixRémi Verschelde
Fixes the hyperlinks for enumerators inside classes in the editor help.
2018-08-13Merge pull request #20666 from Calinou/script-editor-underline-hidpiRémi Verschelde
Scale underlines in the script editor with the editor scale
2018-08-13Merge pull request #20595 from dragmz/fix-windows-process-handles-leakRémi Verschelde
Fix Windows handles leak
2018-08-13Merge pull request #20581 from ↵Rémi Verschelde
ronchaine/nvmath-dont-use-obsolete-functions-on-linux Do not use deprecated stuff that only glibc now implements
2018-08-13Merge pull request #20587 from groud/fix_2deditor_scrollable_zoneRémi Verschelde
Fixes bugs on the 2D editor scrollable area
2018-08-13Update AUTHORS and DONORS listRémi Verschelde
New contributors added to AUTHORS: @dragmz, @fire Thanks to all contributors and donors for making Godot possible! [ci skip]
2018-08-13Merge pull request #20554 from YeldhamDev/cursor_doc_linuxRémi Verschelde
Small doc formating changes and Linux cursor theme note
2018-08-13Update help doc when changing font sizevolzhs
2018-08-12Don't try to update the visual shader graph if it doesn't exist yetHein-Pieter van Braam
When setting shader mode on a visual shader that was just created in the editor we try to _update_graph(). However, the graph does not yet exist in the visualshadereditor. This gets populated in VisualShaderEditor::edit() which hasn't been called yet. This PR simply changes the logic to not try to update the non-existent graph. This fixes #20322
2018-08-12Expose PhysicalBone::get_bone_id() to c#/gdscriptoisincar
2018-08-12Fix gizmos submenuJuan Linietsky
2018-08-12Merge pull request #20940 from akien-mga/resourceloader-existsRémi Verschelde
Fix ResourceLoader::exists() false negative and readd deprecated has()
2018-08-12Fix ResourceLoader::exists() false negative and readd deprecated has()Rémi Verschelde