summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-03-11Fix perspective button hide when it should be actually disabledqarmin
2019-03-11Merge pull request #26901 from KidRigger/anim_crashRémi Verschelde
Prevents a Null Reference in deleting Animations.
2019-03-11Merge pull request #26898 from clayjohn/radiance_map_gles2Rémi Verschelde
Increase size of radiance map in gles2
2019-03-11Merge pull request #26911 from KidRigger/pr-fixRémi Verschelde
Fixes segfault on opening incompatible files in GDNative videodecoder.
2019-03-11Prevents a Null Reference in deleting Animations.Anish
A null Animation would cause a crash by accessing restricted memory. Solved by checking if the animation track is null before using the animation. Fixes: #26829
2019-03-11Fixes segfault on opening incompatible files.Anish
If a file cannot be opened by the plugin connected, the engine would crash. This has been fixed by quitting the open_file() method early.
2019-03-10increase size of radiance map in gles2clayjohn
2019-03-10Merge pull request #26874 from neikeq/issue-26731Ignacio Roldán Etcheverry
Mono: Some assembly referencing changes and cleanup
2019-03-10Mono: Some assembly referencing changes and cleanupIgnacio Etcheverry
Apparently we don't need to call mono_debug_close_image ourselves and we can call mono_image_close right away as it's not our duty to keep that reference.
2019-03-10Merge pull request #26867 from bojidar-bg/26816-graphnode-titleRémi Verschelde
Fix cursor going to start while editing GraphNode's title
2019-03-10doc: Fix style for vararg in makerstRémi Verschelde
2019-03-10Fix cursor going to start while editing GraphNode's titleBojidar Marinov
Fixes #26816
2019-03-10Merge pull request #26859 from JFonS/fix_cpuparticles_resettingRémi Verschelde
Fix resetting of CPUParticles (2D and 3D)
2019-03-10i18n: Sync translation template with current sourceRémi Verschelde
2019-03-10i18n: Sync translations with WeblateRémi Verschelde
2019-03-10Fix resetting of CPUParticles (2D and 3D)JFonS
2019-03-09Merge pull request #26856 from neikeq/issue-26834Rémi Verschelde
Mono: Fix assemblies path String incorrectly constructed from utf8
2019-03-09Mono: Fix assemblies path String incorrectly constructed from utf8Ignacio Etcheverry
Also fixed a wrong ifdef that was causing Mono to never be initialized if mscorlib was not found (which was the case with the utf8 assemblies path bug this commit fixes). This condition was meant for exported projects only, not for the editor only.
2019-03-09Merge pull request #26687 from QbieShay/hang_server_build_fixRémi Verschelde
Removed the resource preview thread from the server build
2019-03-09Merge pull request #26845 from clayjohn/gles2_transparent_viewport_bugRémi Verschelde
GLES2 reallocate texture when transparent is set
2019-03-09Merge pull request #26851 from RandomShaper/fix-26460-fake-event-floodRémi Verschelde
Fix fake null-motion mouse event flood
2019-03-09Merge pull request #26853 from groud/fix_ui_navigationRémi Verschelde
Fixes UI navigation with joysticks
2019-03-09Fix fake null-motion mouse event floodPedro J. Estébanez
This commit also improves a bit the code quality by making the intent of fake events (and themselves) more explicit. Fixes #26460.
2019-03-09Fixes UI navigation with joysticksGilles Roudière
2019-03-09gles2 reallocate texture when transparent is setclayjohn
2019-03-09Merge pull request #26842 from karroffel/gdnative-singleton-crashRémi Verschelde
[GDNative] fix crash at shutdown when using singleton libraries and NativeScript
2019-03-09[GDNative] fix crash at shutdown when using singleton libraries and NativeScriptkarroffel
When a singleton library was exposing NativeScript functionality, the NativeScriptLanguage would attempt to terminate the library at shutdown. Since the GDNative module itself handles singleton libraries, it closes all singleton libraries at shutdown as well. This double free could cause a crash, since the library referenced would no longer be alive.
2019-03-09Merge pull request #26784 from humblers/fix-cpuparticles2dRémi Verschelde
Prevent invisible/inactive cpupparticles2d to redraw
2019-03-09Merge pull request #26818 from vnen/class_name-inheritanceRémi Verschelde
Allow class_name scripts to have nested inheritance
2019-03-09Merge pull request #26807 from akien-mga/editor-hint-gles2-fallbackRémi Verschelde
Set editor hint early for Project Manager and Editor
2019-03-09Allow class_name scripts to have nested inheritanceGeorge Marques
2019-03-09Prevent invisible/inactive cpuparticles to redraw(3d)Daeil Kim
2019-03-09Set editor hint early for Project Manager and EditorRémi Verschelde
We need it in setup() already before initializing the renderer, as it's used to force fallback to GLES2 if GLES3 fails. Fixes #26806.
2019-03-08Merge pull request #26738 from samH-FIT/MeshColorRémi Verschelde
Fixed MeshInstance2d copying Line2d's default color
2019-03-08Added default color to mesh rendersamHFIT
2019-03-08Merge pull request #26756 from marcelofg55/android_rec_permRémi Verschelde
Request Android record permission when needed
2019-03-08Fix crash in texture previeer, closes #26749, probably othersJuan Linietsky
2019-03-08Request Android record permission when neededDESKTOP-3H3MR3A\eloisa
2019-03-08Merge pull request #26791 from Calinou/fix-typo-gdscript-warningRémi Verschelde
Fix typo in GDScript narrowing conversion warning message
2019-03-08Fix typo in GDScript narrowing conversion warning messageHugo Locurcio
This closes #26790.
2019-03-08Merge pull request #26781 from YeldhamDev/editfilediag_favdir_fixRémi Verschelde
Fix "Favorite" button not being toggled when navigating to a faved folder manually
2019-03-08Merge pull request #26767 from qarmin/fix_text_entered_errorRémi Verschelde
Fix error when trying to enter to folder/node directly via address bar
2019-03-08Prevent invisible/inactive cpupparticles2d to redrawDaeil Kim
2019-03-08Merge pull request #26746 from shartte/godot-trace-listenerIgnacio Roldán Etcheverry
Add a custom TraceListener on Startup for Mono
2019-03-08Fix error when trying to enter to folder/node directly via address barqarmin
2019-03-07Fix "Favorite" button not being toggled when navigating to a faved folder ↵Michael Alexsander Silva Dias
manually
2019-03-08Merge pull request #26776 from neikeq/issue-26616Ignacio Roldán Etcheverry
Fix CSharpInstance::set not working with base classes
2019-03-08Fix CSharpInstance::set not working with base classesIgnacio Etcheverry
2019-03-07Merge pull request #26745 from akien-mga/android-modules-defRémi Verschelde
Define android/modules globally so it appears in Project Settings
2019-03-07Merge pull request #26773 from neikeq/issue-26628Rémi Verschelde
Mono: Fix crash with exported field of custom Reference derived type