summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-05-12Rename the editor action "Revert Scene" to "Reload Saved Scene"Hugo Locurcio
This option can be used to workaround various issues with stuff not reloading properly when changes are made. The option was renamed to clarify the fact that it actually reloads the scene saved on the filesystem.
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-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-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
2020-05-10Merge pull request #38505 from KoBeWi/ms_visual_docsRémi Verschelde
Add documentation for the VisualShader nodes
2020-05-10Merge pull request #38613 from MCrafterzz/planeRémi Verschelde
Renamed plane's d to distance
2020-05-10Merge pull request #38617 from madmiraal/fix-38514Rémi Verschelde
Prevent CapsuleShape2D height from being less than zero.
2020-05-10Prevent CapsuleShape2D height from being less than zero.Marcel Admiraal
2020-05-10Renamed plane's d to distanceMarcus Elg
2020-05-10Merge pull request #38606 from cbscribe/kcc_classdoc_updatesRémi Verschelde
[DOCS] minor description changes
2020-05-10fixed: saving gdscript with cyclic inheritance crash the editorThakee Nathees
Fix: #9609
2020-05-09[DOCS] minor description changesChris Bradfield
2020-05-10more clearer unexpected statement end error messagesThakee Nathees
2020-05-09Revert "register RenderingDevice as gdscript singleton"Rémi Verschelde
This reverts commit 1058a57666cafadbbeeed5a42a72f0e4f627a389. RenderingDevice is meant to be instantiated in scripts, not a singleton. This actually doesn't work properly right now, but reduz will fix it.
2020-05-09Merge pull request #38481 from RandomShaper/improve_yieldRémi Verschelde
Fix object leaks caused by unfulfilled yields
2020-05-09Merge pull request #38357 from ThakeeNathees/dict2inst-crash-fixRémi Verschelde
fix: dict2inst crash when constructor has arguments
2020-05-09Merge pull request #37598 from ThakeeNathees/GDScript-type-resolve-bug-fixRémi Verschelde
GDScript class var type resolve bug fixed
2020-05-09Merge pull request #37033 from ThakeeNathees/python-like-str-escapeRémi Verschelde
python like string escape implemented
2020-05-09C#: Rewrite GodotTools messaging protocolIgnacio Etcheverry
2020-05-09C#: Use Sdks in GodotTools csprojs and switch to nuget Microsoft.BuildIgnacio Etcheverry
2020-05-09Merge pull request #38412 from ThakeeNathees/static-func-var-accessRémi Verschelde
parser error for static func access non-static variables
2020-05-09Merge pull request #38598 from neikeq/csharp-remove-stringextensions-emptyIgnacio Roldán Etcheverry
C#: Remove StringExtensions.Empty() function
2020-05-09C#/Mono: Check assembly version when loadingIgnacio Etcheverry
Not sure if we should check revision too, but this is good enough for what we want. This will be needed to load the correct Microsoft.Build when we switch to the nuget version.
2020-05-09C#: Remove StringExtensions.Empty() functionIgnacio Etcheverry
Causes issues with some editors as it's confused with `string.Empty`. Should use `string.IsNullOrEmpty(str)` instead.
2020-05-09Merge pull request #38596 from neikeq/msbuild-restoreIgnacio Roldán Etcheverry
Mono: Use msbuild instead of nuget.exe for restoring
2020-05-09Mono: Use msbuild instead of nuget.exe for restoringIgnacio Etcheverry
- Make GodotTools output directly to the SCons output directory. - Removed xbuild_fallback from the build system.
2020-05-09Change get_completion_identifier_is_function to return a boolAaron Franke
A minor bugfix
2020-05-09Allow Vector2/Vector3 iterators to have non-integer valuesAaron Franke
2020-05-09Allow using integer vectors for iteration and make range() use themAaron Franke
2020-05-09Merge pull request #38595 from neikeq/fix-nested-class-hotreload-monoIgnacio Roldán Etcheverry
Mono: Fix hot-reloading of nested classes
2020-05-09Mono: Fix hot-reloading of nested classesIgnacio Etcheverry
2020-05-09GDScript: Add join method on StringMateo Kuruk Miccino
Docs: Add join on String.xml
2020-05-09Merge pull request #38589 from MCrafterzz/lineRémi Verschelde
Rename Lineshape's d to distance
2020-05-09Rename Lineshapes d to distanceMarcus Elg
2020-05-09Merge pull request #38588 from akien-mga/freetype-2.10.2Rémi Verschelde
freetype: Update to upstream version 2.10.2
2020-05-09freetype: Update to upstream version 2.10.2Rémi Verschelde
2020-05-08Merge pull request #38563 from Calinou/anisotropic-filtering-enumRémi Verschelde
Turn the anisotropic filtering setting into an enum
2020-05-08Merge pull request #38555 from ThakeeNathees/rotation-gizmo-visible-fixRémi Verschelde
rotation gizmo visible = false; when camera preview
2020-05-08Merge pull request #38561 from bruvzg/wintab_extra_mm_eventsRémi Verschelde
WinTab: Make movement smoother and handle pressure/tilt changes when cursor is not moving.
2020-05-08Merge pull request #38304 from JFonS/improve_rotation_widgetRémi Verschelde
Keep mouse inside 3D viewport rotation widget
2020-05-08Turn the anisotropic filtering setting into an enumHugo Locurcio
Since it only accepts power-of-two values, exposing it as an enum makes more sense. This also allows for adding property hints to indicate the performance cost of each value. This also improves property hints for MSAA and FXAA.
2020-05-08Merge pull request #38556 from EricEzaM/fix-menu-key-windowsRémi Verschelde
Added mapping for KEY_MENU to VK_APPS (0x5d) so context menu's triggered by the keyboard menu button work
2020-05-08Merge pull request #38557 from hoontee/patch-1Rémi Verschelde
Re-add __XINPUT_DEVICE__