summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-22Fixes crash when loading *.escn resources with gdnative #20141Maarten Heremans
The issue is that ResourceFormatLoaderText is a singleton. It was created in a faulty way in ResourceFormatLoaderNativeScript::load It was created on the stack, which caused the static singleton pointer to be overwritten. This causes then segmentation faults if the singleton is used later on. IMO singleton creation needs to made safer to avoid other similar issues in the future.
2018-10-22Merge pull request #23204 from Baekalfen/masterRémi Verschelde
Removed undeclared and unused variable, which caused a compile error
2018-10-21Merge pull request #23206 from mhilbrunner/docs-streampeertcpMax Hilbrunner
[DOCS] StreamPeerTCP
2018-10-21[DOCS] StreamPeerTCPMax Hilbrunner
2018-10-21Merge pull request #23205 from mhilbrunner/docs-ysortMax Hilbrunner
[DOCS] YSort
2018-10-21[DOCS] YSortMax Hilbrunner
2018-10-21Removed undeclared and unused variable, which caused a compile errorMads Ynddal
2018-10-21Merge pull request #23196 from Paulb23/scene_tab_errors_issue_22890Rémi Verschelde
Scene tabs closing and thumbnail errors, issue 22890
2018-10-21Don't create scene thumbnail before its saved, issue 22890Paulb23
2018-10-21Update Tab hover status when adding or removing tabs, issue 22890Paulb23
2018-10-21Merge pull request #23181 from Calinou/tweak-min-panel-sizes-hidpiRémi Verschelde
Resize some editor panel minimum sizes on hiDPI displays
2018-10-21Merge pull request #22972 from YeldhamDev/3d_view_perspective_buttonTimo
Make "Perspective" button look like a actual clickable button
2018-10-20Resize some editor panel minimum sizes on hiDPI displaysHugo Locurcio
This also increases the plugin description TextEdit's height, so that 3 lines can be viewed instead of just 2 (leaving a few pixels for the scroll bar).
2018-10-20Merge pull request #23170 from ibrahn/lineedit-init-statusRémi Verschelde
Initialise LineEdit clear_button_status.
2018-10-20Merge pull request #23025 from voithos/enginejsMax Hilbrunner
Add comments to javascript wrapper parts.
2018-10-20Initialise LineEdit clear_button_status.Ibrahn Sahir
Avoiding undefined behaviour and cleaning up Valgrind output.
2018-10-20Merge pull request #23160 from groud/filesystem_favorites_fixRémi Verschelde
Make folders clicked in the filesystem dock open the selected folder
2018-10-19Make folders clicked in the filesystem dock open the selected foldergroud
2018-10-19Merge pull request #23142 from willnationsdev/editor-extend-scriptRémi Verschelde
Add icon_script_extend & update the icon @runtime
2018-10-19Add icon_script_extend & update the icon @runtimeWill Nations
2018-10-19Merge pull request #23138 from CakHuri/fix-disconectRémi Verschelde
Repaired mistyped of 'just_disconnected'.
2018-10-19Repaired mistyped of 'just_disconnected'.M. Huri
2018-10-19Fixing warnings generated by MSVCDualtagh Murray
Fixes #22684.
2018-10-19Merge pull request #23035 from voithos/missingpckMax Hilbrunner
Show an alert when a project is not found in release mode
2018-10-19Merge pull request #22849 from DualMatrix/update_key_editRémi Verschelde
Fixed Animation Keyframe inspector not displaying after moving key.
2018-10-19Merge pull request #23112 from groud/fix_viewport_not_updatingRémi Verschelde
Fixes viewport scrollbars not updating with plugins
2018-10-19Merge pull request #23122 from Alien1993/enhance_folder_creation_error_messageRémi Verschelde
Enhanced error message on folder creation with invalid chars on Windows
2018-10-18Make "Perspective" button look like a actual clickable buttonMichael Alexsander Silva Dias
2018-10-19Merge pull request #23128 from neikeq/bbIgnacio Etcheverry
Make sure API assemblies are up to date at startup
2018-10-19Make sure API assemblies are up to date at startupIgnacio Etcheverry
- If there is a solution and C# project at startup, make sure API assemblies are up to date. - Fix prebuilt assemblies only being used when building the game project, and not in other instances.
2018-10-18Enhanced error message on folder creation with invalid chars on WindowsSilvano Cerza
If the user tried to create folder with *, | or > in its name it would return a generic error "Could not create folder." Now the same message is shown when creating a folder with /, \\, :, *, |, > or ending with . or an empty space.
2018-10-18Merge pull request #23120 from akim8/patch-1Rémi Verschelde
fix class reference markup for KinematicBody2D
2018-10-18Merge pull request #23116 from Xrayez/fix-23106Rémi Verschelde
Bind missing subresource flag in ResourceSaver
2018-10-18Merge pull request #23119 from neikeq/issue-18796Ignacio Etcheverry
Fix prefix erasing for the generated C# enum constants
2018-10-18Fix prefix erasing for the generated C# enum constantsIgnacio Etcheverry
2018-10-18fix doc markdownAlex
2018-10-18Bind missing subresource flag in ResourceSaverAndrii Doroshenko (Xrayez)
2018-10-18Fixes viewport scrollbars not updating with pluginsgroud
2018-10-18Merge pull request #23000 from voithos/move-autoloadRémi Verschelde
Update autoload references when moving files.
2018-10-17Show an alert when a project is not found in release modeZaven Muradyan
Previously, an error message would get printed to the console, but this is problematic in e.g. Windows where a console is not displayed. In the case of a missing .pck file, the binary would just silently fail. Now, it shows an alert. Fixes #21994.
2018-10-17Merge pull request #23097 from neikeq/aaIgnacio Etcheverry
C#: Optimize struct marshalling
2018-10-17C#: Optimize struct marshallingIgnacio Etcheverry
- We no longer box struct to return them from internal calls. - Use reinterpret_cast if the managed struct layout is the same as the native struct.
2018-10-17Merge pull request #23037 from SeleckyErik/issue-23036Rémi Verschelde
Hide header and footer in AssetLib when not necessary
2018-10-17Merge pull request #23074 from voithos/tooltipsRémi Verschelde
Add tooltip to skeleton menu button.
2018-10-17Merge pull request #23056 from YeldhamDev/stylebox_rings_removalTimo
Remove unnecessary "rings" variable from "draw_rings()" in StyleBox
2018-10-17Add tooltip to skeleton menu button.Zaven Muradyan
Fixes #23008.
2018-10-17Merge pull request #23065 from YeldhamDev/switch_optimized_handlersRémi Verschelde
Switch unoptimized handlers from spatial editor viewport to optimized ones
2018-10-16Update autoload references when moving files.Zaven Muradyan
Prior to this, file references in autoload were not updated when a script was moved or renamed. This adds extra logic to update the autoload references when updating project settings. Fixes #22995.
2018-10-16Switch unoptimized handlers from spatial editor viewport to optimized onesMichael Alexsander Silva Dias
2018-10-16Remove unnecessary "rings" variable from "draw_rings()" in StyleBoxMichael Alexsander Silva Dias