summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-03-18Merge pull request #37145 from neikeq/issue-37128Ignacio Roldán Etcheverry
C#: Fix uses of old Configuration names
2020-03-18Merge pull request #37112 from Xrayez/mono-generate-helpRémi Verschelde
Generate command line help text for the `mono` module
2020-03-18C#: Fix uses of old Configuration namesIgnacio Etcheverry
2020-03-18Merge pull request #37141 from Anutrix/remove_android_unused_pycodeRémi Verschelde
Removed unused code in android detect.py and SCsub
2020-03-18Merge pull request #37139 from akien-mga/opus-vorbis-drop-audiostream-codeRémi Verschelde
opus/vorbis: Remove dead code not used since 3.0
2020-03-18Merge pull request #37142 from Chaosus/shader_qualYuri Roubinsky
Show shader method out/inout qualifier in intellisense
2020-03-18Merge pull request #37131 from van800/masterIgnacio Roldán Etcheverry
fix RiderPathLocator - searching for toolbox on Mac
2020-03-18Show shader method out/inout qualifier in intellisenseYuri Roubinsky
2020-03-18Removed unused code in android detect.py and SCsubunknown
2020-03-18Merge pull request #37135 from Anutrix/remove_dead_function_win32_spawnRémi Verschelde
Remove dead function win32_spawn from methods.py
2020-03-18Merge pull request #37134 from Chaosus/shader_fix_crashYuri Roubinsky
Fix shader crash if passing const values to modf function
2020-03-18Remove the dead function win32_spawn from methods.py.unknown
2020-03-18opus/vorbis: Remove dead code not used since 3.0Rémi Verschelde
Since the new audio system in 3.0 we switched the OGG support to stb_vorbis, and the Opus stream support was disabled as incompatible (see #7496). We still build the libraries as they are needed by the theora and webm modules, but we don't need any Godot code apart from `register_types`. Fixes #7496.
2020-03-18Fix shader crash if passing const values to modf functionYuri Roubinsky
2020-03-18Merge pull request #36993 from van800/editor_metadataRémi Verschelde
For third-party tools - editor_path is stored in project's editor settings
2020-03-18fix RiderPathLocator - searching for toolbox on MacIvan.Shakhov
2020-03-18doc: Sync classref with current sourceRémi Verschelde
Fix wrong binding after #37111.
2020-03-18Merge pull request #37122 from rmvermeulen/proposal-590/viewport-size-warningRémi Verschelde
Add size warning to Viewport Node
2020-03-18Merge pull request #37117 from m4gr3d/godotpayment_plugin_cleanupRémi Verschelde
Complete the implementation of the GodotPayment plugin
2020-03-18Merge pull request #36756 from aaronfranke/mono-vec2i3iIgnacio Roldán Etcheverry
[Mono] Add Vector2i and Vector3i
2020-03-18Merge pull request #34275 from neikeq/no-ref-gchandlesIgnacio Roldán Etcheverry
Mono/C#: Optimize the way we store GC handles for scripts
2020-03-17Complete the implementation of the GodotPayment plugin.fhuya
Move the remaining plugin components within the plugin source code.
2020-03-17[Mono] Marshaling for Vector2i, Vector3i, and Rect2iAaron Franke
2020-03-17[Mono] Add Vector2i, Vector3i, and Rect2iAaron Franke
These have conversion operators between their non-integer equivalents. Vector2i to Vector2 is implicit, while Vector2 to Vector2i is explicit. All conversion code is done in the integer files, so Vector2.cs contains no reference to Vector2i etc.
2020-03-17Clarify the Viewport size warning messageRasmus Vermeulen
2020-03-17Mono/C#: Optimize the way we store GC handles for scriptsIgnacio Etcheverry
Don't store GC handles for C# script instances and instance bindings as 'Ref<MonoGCHandle>'; store the raw data instead. Initially this was not possible as we needed to store a Variant, but this had not been the case for a looong time yet the stored type was never updated.
2020-03-17Add size warning to Viewport NodeRasmus Vermeulen
2020-03-17Merge pull request #37050 from neikeq/fix-mono-after-vulkan-mergeIgnacio Roldán Etcheverry
Fix C# bindings after recent breaking changes
2020-03-17Merge pull request #36906 from m4gr3d/enable_android_studio_debuggingRémi Verschelde
Enable Android Studio debugging
2020-03-17Fix C# bindings after recent breaking changesIgnacio Etcheverry
Implementation for new Variant types Callable, Signal, StringName. Added support for PackedInt64Array and PackedFloat64Array. Add generation of signal members as events, as well as support for user created signals as events. NOTE: As of now, raising such events will not emit the signal. As such, one must use `EmitSignal` instead of raising the event directly. Removed old ThreadLocal fallback class. It's safe to use thread_local now since it's supported on all minimum versions of compilers we support.
2020-03-17Generate command line help text for `mono` moduleAndrii Doroshenko (Xrayez)
2020-03-17Merge pull request #37111 from RandomShaper/imvu/unexpose_include_driveRémi Verschelde
Remove meaningless parameter from bindings
2020-03-17Remove meaningless parameter from bindingsPedro J. Estébanez
2020-03-17Merge pull request #37106 from akien-mga/clang-format-cpp11Rémi Verschelde
Style: Set clang-format Standard to Cpp11
2020-03-17Merge pull request #37104 from alvaroHernandez/fix-joypad-button-editorRémi Verschelde
Prevent joypad button input dropdown going out of dialog
2020-03-17Style: Set clang-format Standard to Cpp11Rémi Verschelde
For us, it practically only changes the fact that `A<A<int>>` is now used instead of the C++03 compatible `A<A<int> >`. Note: clang-format 10+ changed the `Standard` arguments to fully specified `c++11`, `c++14`, etc. versions, but we can't use `c++17` now if we want to preserve compatibility with clang-format 8 and 9. `Cpp11` is still supported as deprecated alias for `Latest`.
2020-03-17Merge pull request #37025 from nekomatata/lineedit-text-entered-androidRémi Verschelde
Fix text_entered signal when max_length is used in LineEdit on Android
2020-03-16prevent joypad button input dropdown going out of dialogalvaroHernandez
2020-03-16Merge pull request #37101 from simpuid/p_validate_certsFabio Alessandrelli
Fix PacketPeerMbedDTLS p_validate_certs default.
2020-03-17Changed default for p_validate_certs to true.simpuid
Fixes #37084
2020-03-16Merge pull request #36896 from kuruk-mm/doc_return_variant_2Rémi Verschelde
Doctool and core: Fix return type in docs for some Variant methods...
2020-03-16Merge pull request #37097 from Calinou/tweak-invalid-unicode-error-messageRémi Verschelde
Tweak the invalid Unicode error message to be more descriptive
2020-03-16Merge pull request #36491 from AndreaCatania/edit_node_anim_state_macRémi Verschelde
Added new method to edit an already added node to anim state machine
2020-03-16Tweak the invalid Unicode error message to be more descriptiveHugo Locurcio
This closes #28503.
2020-03-16Added new method to replace an already added node to the animation state machineAndrea Catania
2020-03-16i18n: Sync translations with WeblateRémi Verschelde
(cherry picked from commit 0e36b11f9d05bacd5036acc48bf654cbcd5b7628)
2020-03-16Merge pull request #36184 from volzhs/plugins-checkboxRémi Verschelde
Use checkbox for plugin status instead of option list
2020-03-14Merge pull request #36970 from JFonS/fix_viewports_updateRémi Verschelde
Update all editor viewports after settings changes
2020-03-14Update all editor viewports after settings changesJFonS
2020-03-14Merge pull request #36865 from van800/sol-conf2Ignacio Roldán Etcheverry
Rename solution configurations (Debug and Release) and put Tools first