summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-12Mark `*.tza` files as binary in `.gitattributes` for old Git versionsHugo Locurcio
This prevents `thirdparty/oidn/weights/rtlightmap_hdr.tza` from always being considered as modified when using an old Git version (such as the one on Ubuntu 16.04).
2020-05-11Merge pull request #38635 from Calinou/tilemap-rename-ysort-indexRémi Verschelde
Rename various TileMap methods/properties for clarity and consistency
2020-05-11Merge pull request #38677 from Calinou/tweak-post-import-script-messageRémi Verschelde
Tweak the error message displayed when a post-import script fails
2020-05-11Merge pull request #38676 from qarmin/fix_leak_lightmapsRémi Verschelde
Fix memory leak with light maps
2020-05-11Tweak the error message displayd when a post-import script failsHugo Locurcio
See #38662.
2020-05-11Fix memory leak with light mapsqarmin
2020-05-11Merge pull request #38672 from madmiraal/fix-physicsw-warningRémi Verschelde
Fix 'physicsw' may be used uninitialized warning in csg_shape.cpp
2020-05-11Merge pull request #38670 from Faless/js/fix_dummy_renderer_after_lightmapperRémi Verschelde
Fix DummyRenderer after new lightmapper merge.
2020-05-11Fix DummyRenderer after new lightmapper merge.Fabio Alessandrelli
2020-05-11Merge pull request #38663 from akien-mga/thirdparty-new-lightmapperRémi Verschelde
thirdparty: Cleanup after #38386, document provenance and copyright
2020-05-11thirdparty: Cleanup after #38386, document provenance and copyrightRémi Verschelde
Also renamed `delaunay.h` to `delaunay_2d.h` to match the class name.
2020-05-11Merge pull request #38386 from reduz/new-lightmapperRémi Verschelde
New GPU lightmapper
2020-05-11Fix 'physicsw' may be used uninitialized warning in csg_shape.cppMarcel Admiraal
2020-05-11doc: Sync classref with current sourceRémi Verschelde
2020-05-11Merge pull request #38587 from Faless/js/improvementsRémi Verschelde
DisplayServerJavaScript, improvements to HTML5 build (still dummy renderer).
2020-05-11Merge pull request #38592 from Calinou/debugger-error-warning-iconRémi Verschelde
Use a different icon for the debugger tab with both warnings and errors
2020-05-11Merge pull request #38594 from Calinou/rename-clear-script-actionRémi Verschelde
Rename the Clear Script editor action to Detach Script
2020-05-11Merge pull request #38631 from Calinou/editor-log-selection-color-themeRémi Verschelde
Tweak the editor log selection color to match the current editor theme
2020-05-11Merge pull request #38625 from Ashesh3/patch-1Rémi Verschelde
Store build as artifact in appveyor
2020-05-11Merge pull request #38656 from akien-mga/controllerdb-readd-default-androidRémi Verschelde
Input: Readd 'Default Android Gamepad' magic binding
2020-05-11Merge pull request #38491 from eduardonunesp/input-line-osx-selectionRémi Verschelde
Using the common behaviour when use command+shift on text line for osx
2020-05-11Input: Readd 'Default Android Gamepad' magic bindingRémi Verschelde
Removed by mistake in #38292 like the Windows `__XINPUT_DEVICE__`, this magic binding is referenced directly in our code.
2020-05-11Merge pull request #31938 from KoBeWi/a_welcome_lagRémi Verschelde
Fix VisibilityEnabler2D behavior on start
2020-05-11Using the common behaviour when use command+shift on text line for osxEduardo Nunes Pereira
* On press left+command+shift or right+command+shift it should behave like shift+home or shift+end and select the text * Using home and end events as reference
2020-05-11Merge pull request #38638 from pepegadeveloper123/mono_inherited_scene_bugRémi Verschelde
Fix inherited C# scene not inheriting parent's fields
2020-05-11Merge pull request #38650 from neikeq/dotnet-cli-supportRémi Verschelde
C#: Support for building with the dotnet CLI
2020-05-11C#: Support for building with the dotnet CLIIgnacio Etcheverry
By adding a reference to the 'Microsoft.NETFramework.ReferenceAssemblies' nuget package, we can build projects targeting .NET Framework with the dotnet CLI. By referencing this package we also don't need to install Mono on Linux/macOS or .NET Framework on Windows, as the assemblies are taken from the package.
2020-05-11Merge pull request #38640 from neikeq/csharpscript-inherits-scriptIgnacio Roldán Etcheverry
Implement CSharpScript::inherits_script
2020-05-10Implement CSharpScript::inherits_scriptIgnacio Etcheverry
2020-05-10New lightmapperJuan Linietsky
-Added LocalVector (needed it) -Added stb_rect_pack (It's pretty cool, we could probably use it for other stuff too) -Fixes and changes all around the place -Added library for 128 bits fixed point (required for Delaunay3D)
2020-05-11Inherited C# scene not inheriting parent's fieldspepegadeveloper123
When a child scene inherits a parent scene with a C# root node, the parent scene's export variables appear to assume values set in the parent scene, in the child scene's Inspector. However, when the child scene is played, the parent scene's export variables assume default values. When a node is created, it inherits its parent C# script's fields from the map CSharpScriptInstance::script->member_info. However this map was not initialized outside the editor, and this commit ensured it is. This fixes issues #36480 and #37581.
2020-05-10Rename various TileMap methods/properties for clarity and consistencyHugo Locurcio
The YSort renames were tracked in https://github.com/godotengine/godot/issues/16863. This closes https://github.com/godotengine/godot-proposals/issues/814.
2020-05-10Re-enable travis CI for javascript platform.Fabio Alessandrelli
2020-05-10Add drop files functionFabio Alessandrelli
2020-05-10Fix Closure compiler build, python style.Fabio Alessandrelli
Move copyToFS into utils.js library included with '--pre-js'.
2020-05-10DisplayServerJavaScript implementation.Fabio Alessandrelli
2020-05-10Restore RasterizerDummy.Fabio Alessandrelli
2020-05-10[HTML5] Locale, input fix, context, exit.Fabio Alessandrelli
Add missing semicolumns in engine.js Add optional extra args to JS Engine.startGame Remove loader.js, explicit noExitRuntime. Also add onExit callback (undocumented in emscripten)
2020-05-10Merge pull request #38548 from kuruk-mm/add_string_join_to_gdscriptRémi Verschelde
GDScript: Add join method on String
2020-05-10Revert "Renamed plane's d to distance"Rémi Verschelde
This reverts commit ec7b481170dcd6a7b4cf0e6c1221e204ff7945f3. This was wrong, `d` is not a distance but the `d` constant in the parametric equation `ax + by + cz = d` describing the plane.
2020-05-10Tweak the editor log selection color to match the current editor themeHugo Locurcio
This overrides the default blue color.
2020-05-10Merge pull request #38621 from akien-mga/stylé-comme-jamaisRémi Verschelde
Style: clang-format: Disable if statements and case labels on single line
2020-05-10Store build as artifact in appveyorAshesh
7z is already available in path in appveyor zip the build .exe files and store them ( appveyor retains for ~6 months)
2020-05-10Merge pull request #38600 from neikeq/noIgnacio Roldán Etcheverry
Switch to nuget Microsoft.Build and rewrite GodotTools messasing protocol
2020-05-10Style: clang-format: Disable AllowShortCaseLabelsOnASingleLineRémi Verschelde
Part of #33027.
2020-05-10Style: clang-format: Disable AllowShortIfStatementsOnASingleLineRémi Verschelde
Part of #33027, also discussed in #29848. Enforcing the use of brackets even on single line statements would be preferred, but `clang-format` doesn't have this functionality yet.
2020-05-10Style: Add missing copyright headersRémi Verschelde
2020-05-10Merge pull request #37160 from ↵Rémi Verschelde
ThakeeNathees/saveing-cyclic-inheritance-crash-fix Fix: saving gdscript with cyclic inheritance crash the editor
2020-05-10Merge pull request #37020 from aaronfranke/rangeRémi Verschelde
Allow using integer vectors for iteration and make range() use them
2020-05-10Merge pull request #36937 from ThakeeNathees/statement-end-error-message-fixRémi Verschelde
Fix: more clearer unexpected statement end error messages