summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-23Merge pull request #29109 from RandomShaper/fix_onion_skinningRémi Verschelde
Fix onion skinning
2019-05-23Merge pull request #28847 from YeldhamDev/textedit_wrap_highlight_fixRémi Verschelde
Fix 'TextEdit's line wrapping being highlighted incorrectly
2019-05-22Fix 'TextEdit's line wrapping being highlighted incorrectlyMichael Alexsander Silva Dias
Fixes #22867.
2019-05-22Fix 2D bones ignored by onion skinningPedro J. Estébanez
Fixes #27819.
2019-05-22Merge pull request #29003 from Xrayez/clipper-6.4.2-exceptions-fixRémi Verschelde
Build Clipper with `tools=no` and patch it to auto-disable exceptions
2019-05-22Merge pull request #29022 from mrcdk/preview_generator_fixesRémi Verschelde
Add some extra functions to EditorResourcePreviewGenerator
2019-05-22Build Clipper with `tools=no` and patch it to auto-disable exceptionsAndrii Doroshenko (Xrayez)
Reverts "Build polygon clipper only in tools builds" (see #17319) which allows to build Clipper with tools disabled (release) and because of that, Clipper has to be patched to optionally disable exceptions in order to be built on some platforms. Patched Clipper 6.4.2 to be compiled with exceptions enabled/disabled. and ensure that Clipper-specific exception macros are defined: don't use exceptions by default unless exception handling is detected. Compilation with exceptions will be determined by various C++ exceptions defines: * ` __cpp_exceptions` is part of C++ feature testing macros (since C++98); * `__EXCEPTIONS` is used by some GNU compilers; * `_CPPUNWIND` is used by MSVC. The user can override specific exceptions behavior via corresponding `*_USER` macros (i.e. compiling for embedded systems).
2019-05-22Merge pull request #29096 from karroffel/gdnative-variant-evaluate-fixRémi Verschelde
[GDNative] fix godot_variant_evaluate function
2019-05-22Merge pull request #29087 from ibrahn/init-text-gui-varsRémi Verschelde
Initialize readonly/editable in LineEdit and TextEdit controls
2019-05-22Merge pull request #29085 from YeldhamDev/node2d_bones_undoredoRémi Verschelde
Add undo/redo to Node2D bone creation
2019-05-22Merge pull request #29098 from akien-mga/lf-utf8Rémi Verschelde
Update gitattributes to enforce LF, fix UTF-8 misencoding of thirdparty files
2019-05-22Merge pull request #29074 from YeldhamDev/theme_editor_panel_fixRémi Verschelde
Fix bottom panel visibility behaviour in the theme editor
2019-05-22Fix non UTF8-encoded thirdparty filesRémi Verschelde
2019-05-22Merge pull request #29095 from Chaosus/exp_focusYuri Roubinsky
Makes the expression node to apply only when the focus leaves out
2019-05-22Update .gitattributes to encompass all text filesRémi Verschelde
2019-05-22[GDNative] fix godot_variant_evaluate functionthomas.herzog
Fixes #28984
2019-05-22Makes the expression node to apply expression only when the focus leaves outChaosus
2019-05-21Initialize readonly/editable in LineEdit and TextEdit controlsIbrahn Sahir
2019-05-21Add undo/redo to Node2D bone creationMichael Alexsander Silva Dias
2019-05-21Merge pull request #29079 from neikeq/oopsieIgnacio Roldán Etcheverry
Fix C# build error in MarshalUtils debug code
2019-05-21Merge pull request #29076 from Chaosus/express_fixes2Yuri Roubinsky
Fix expression node parsing when input_port + \0 is occured
2019-05-21Merge pull request #29052 from neikeq/fixes-28667------i-thinkIgnacio Roldán Etcheverry
Replace call to 'mono_runtime_object_init' with manual ctor invoking
2019-05-21Fix C# build error in MarshalUtils debug codeIgnacio Etcheverry
2019-05-21Fix expression node parsing when input_port + \0 is occuredChaosus
2019-05-21Merge pull request #29073 from Chaosus/express_fixesYuri Roubinsky
Fix few bugs in expression node
2019-05-21Fix bottom panel visibility behaviour in the theme editorMichael Alexsander Silva Dias
Fixes #29034, fixes #29056
2019-05-21Fix few bugs in expression nodeChaosus
2019-05-21Merge pull request #29018 from guilhermefelipecgs/fix_28969Rémi Verschelde
[StateMachine] Fix error message for travel method
2019-05-21Merge pull request #29032 from akien-mga/tools-exceptions-rttiRémi Verschelde
SCons: Keep exceptions and rtti on Android, iOS and HTML5 tools build
2019-05-21Merge pull request #28838 from Chaosus/vs_expRémi Verschelde
Expression node for visual shaders
2019-05-21Merge pull request #29040 from swarnimarun/fix_override_bugRémi Verschelde
Clear overrides on passing null
2019-05-21Merge pull request #29041 from hbina/add_constRémi Verschelde
add const to methods that return literals
2019-05-21Merge pull request #29062 from swarnimarun/theme-editor-improvementsRémi Verschelde
Fix Theme Editor Preview
2019-05-21Merge pull request #28964 from Faless/webrtc/channels_prRémi Verschelde
WebRTC refactor. data channels, STUN/TURN support.
2019-05-21doc: Sync classref with current sourceRémi Verschelde
2019-05-21i18n: Sync translation template with current sourceRémi Verschelde
(cherry picked from commit bf7585530ba29959b2e3316db959170ba321ed61)
2019-05-21i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit 239a11fe1918b1009875078bb30f9176360e983c)
2019-05-21Merge pull request #29050 from hbina/redundant_null_checksRémi Verschelde
removed a redundant null check in assimp editor
2019-05-21Expression node for visual shadersChaosus
2019-05-21Fix Theme Editor PreviewSwarnim Arun
2019-05-21Merge pull request #29011 from zann1x/masterRémi Verschelde
Initialize padding on PoolByteArray serialization
2019-05-21Merge pull request #29046 from volzhs/tree-page-downRémi Verschelde
PageDown key selects last one when left items count is short
2019-05-21PageDown key selects last one when left items count is shortvolzhs
2019-05-21added a const keyword for a methods that return constant literal...hbina085
2019-05-21Clear overrides on passing nullSwarnim Arun
2019-05-20removed a redundant NULL check in assimp editor of a pointer to an array ↵hbina085
declared in the same statement block
2019-05-21Replace call to 'mono_runtime_object_init' with manual ctor invokingIgnacio Etcheverry
2019-05-20Merge pull request #28952 from jbuck3/update-marginsRémi Verschelde
Update Control margins when size is overridden by change to minsize
2019-05-20Merge pull request #28218 from KoBeWi/b00km4rk5Rémi Verschelde
Add bookmarks for easier code navigation
2019-05-20Merge pull request #27886 from LeonardMeagher2/obj_to_stringRémi Verschelde
Allow overriding how scripted objects are converted to strings