Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-08 | Complete NavigationMeshInstance rename | lupoDharkael | |
2020-03-08 | Merge pull request #36683 from rafaeldelboni/master | Rémi Verschelde | |
Return only scenes for script owners on LSP completion | |||
2020-03-07 | Merge pull request #36855 from kuruk-mm/signals_fix_sort_crash | Rémi Verschelde | |
Signals: filter_changed from ProjectListFilter now is emitted when it's on scene tree... | |||
2020-03-07 | Signals: filter_changed from ProjectListFilter now is emitted when it's on ↵ | Mateo Miccino | |
scene tree to avoid unexpected call | |||
2020-03-07 | fix: Return only scenes for script owners on LSP completion | Rafael Delboni | |
Fix: #36680 | |||
2020-03-07 | Merge pull request #36873 from BastiaanOlij/arvr_controller_button_is_bool | Rémi Verschelde | |
ARVRController.is_button_pressed requires to return a boolean | |||
2020-03-07 | Merge pull request #36814 from ThakeeNathees/typo-gdscript_workspace-fix | Rémi Verschelde | |
typo in gdscript_workspace.cpp fixed | |||
2020-03-07 | Merge pull request #36874 from m4gr3d/trim_plugins_name_whitespaces | Rémi Verschelde | |
Trim the whitespace around the plugins names | |||
2020-03-07 | ARVRController.is_button_pressed requires to return a boolean | Bastiaan Olij | |
2020-03-06 | Trim the whitespace around the plugins names. | fhuya | |
2020-03-06 | Merge pull request #36870 from CodeforEvolution/syncMiniupnpc | Rémi Verschelde | |
miniupnpc: Sync with upstream master (4436632) | |||
2020-03-06 | miniupnpc: Sync with upstream master (4436632) | CodeforEvolution | |
2020-03-06 | Merge pull request #36842 from Phischermen/mono-resource-loader-extension-update | Rémi Verschelde | |
Mono/C#: Add missing parameters to 'ResourceLoader.Load<T>()' | |||
2020-03-06 | Added parameters to Load() | Phischermen | |
2020-03-06 | Merge pull request #36849 from theoway/Documentation_edit | Rémi Verschelde | |
Edited the KinematicBody and KinematicBody2D docs | |||
2020-03-06 | Edited the KinematicBody and KinematicBody2D docs | Umang Kalra | |
Changes made as requested. Explained the reason why move_and_slide should be sued in _physics_process Final Changes Edited the docs as per the changes requested. Edits in docs Made some changes | |||
2020-03-06 | Merge pull request #36852 from akien-mga/assimp-unbundle | Rémi Verschelde | |
assimp: Clean and document buildsystem, update to upstream 0201fc5 | |||
2020-03-06 | Merge pull request #36854 from AndreaCatania/AndreaCatania-patch-3 | Rémi Verschelde | |
Added navigation mesh merging error. | |||
2020-03-06 | Added error to notify that the Navigation triangle merging failed due to ↵ | Andrea Catania | |
incorrect parameter. | |||
2020-03-06 | assimp: Sync with upstream 0201fc5 | Rémi Verschelde | |
2020-03-06 | assimp: Clean and document buildsystem, prepare for unbundling | Rémi Verschelde | |
- Improve the SCsub to allow unbundling and remove unnecessary code. - Move files around to match upstream source. - Re-sync with upstream commit 308db73d0b3c2d1870cd3e465eaa283692a4cf23 to ensure we don't have local modifications. - Doesn't actually build against current version 5.0.1 due to the lack of the new ArmaturePopulate API that Gordon authored. We'll have to wait for a public release with that API (5.1?) to enable unbundling. | |||
2020-03-06 | Merge pull request #36845 from bruvzg/macos10_15_gamepad_fix | Rémi Verschelde | |
Fix gamepad disconnection callback on macOS Catalina. | |||
2020-03-06 | Replace IOHIDDeviceRegisterRemovalCallback with ↵ | bruvzg | |
IOHIDManagerRegisterDeviceRemovalCallback to fix gamepad disconnection callback on macOS Catalina. | |||
2020-03-06 | Merge pull request #36844 from Chaosus/tween_remove_bool | Rémi Verschelde | |
Removed boolean return type from majority of method in Tween | |||
2020-03-06 | Removed boolean return type from majority of method in Tween | Yuri Roubinsky | |
2020-03-05 | Merge pull request #36823 from akien-mga/mbedtls-2.16.5 | Rémi Verschelde | |
mbedtls: Update to upstream version 2.16.5 | |||
2020-03-05 | Merge pull request #33682 from m4gr3d/rearch_godot_android_plugin | Rémi Verschelde | |
Re-architecture of the Godot Android plugin. | |||
2020-03-05 | Re-architecture of the Godot Android plugin. | fhuya | |
2020-03-05 | Merge pull request #36603 from m4gr3d/implement_vk_surface_view | Rémi Verschelde | |
Provide a Vulkan surface view base implementation | |||
2020-03-05 | Provides a base implementation of the Vulkan surface view (VkSurfaceView.kt) ↵ | fhuya | |
and its accompanying components. The implementation is meant to be extended and updated in order to integrate it with the existing Godot java and native codebase. | |||
2020-03-05 | Merge pull request #36752 from RandomShaper/rework_semaphore | Rémi Verschelde | |
Drop old semaphore implementation | |||
2020-03-05 | typo in gdscript_workspace.cpp/remove_cache_parser() fixed | Thakee Nathees | |
2020-03-05 | mbedtls: Update to upstream version 2.16.5 | Rémi Verschelde | |
Fixes https://tls.mbed.org/tech-updates/security-advisories/mbedtls-security-advisory-2020-02 Drop patch to disable VIA padlock since we no longer use libwebsockets, so there's no conflict anymore. | |||
2020-03-05 | Merge pull request #36821 from akien-mga/signals-property_changed-no-binds | Rémi Verschelde | |
Signals: Don't pass default binds to EditorProperty property_changed | |||
2020-03-05 | Signals: Don't pass default binds to EditorProperty property_changed | Rémi Verschelde | |
This was done by mistake in #36758, but it's not necessary and actual causes a bug. `property_changed` is only emitted via `emit_changed()`, which already has default values for `p_field` and `p_changing`. Also reverted to using `String` for now to be on the safe side, even if it's inconsistent with `emit_changed()`. I had only changed it partially in #36758 so it was inconsistent. It probably does make sense to port `EditorInspector` and related property editors to use `StringName` where relevant, but that's for a dedicated PR. Fixes #36799. | |||
2020-03-05 | Merge pull request #36795 from hungrymonkey/issue_36720 | Rémi Verschelde | |
Change LINKFLAGS to FRAMEWORKS which is supported since Scons release 0.96.91 | |||
2020-03-05 | Merge pull request #36700 from ThakeeNathees/scene-tab-bug-fix | Rémi Verschelde | |
Fix possible EditorFolding crash when switching scenes | |||
2020-03-05 | Fix EditorFolding crash when switching scenes | Thakee Nathees | |
2020-03-05 | Merge pull request #36813 from Faless/debugger/fix_crashes | Rémi Verschelde | |
Fix some bugs spotted by asan in editor debugger. | |||
2020-03-05 | Fix some bugs spotted by asan in editor debugger. | Fabio Alessandrelli | |
EditorDebuggerInspector is in tree, so it gets automatically deleted, when clearing errors the debugger should not fake a process notification. | |||
2020-03-05 | Merge pull request #36772 from pyacier/warning-concavepolygonshape | Rémi Verschelde | |
Add a new configuration warning to CollisionShape | |||
2020-03-05 | Merge pull request #36810 from akien-mga/configfile-better-errors | Rémi Verschelde | |
ConfigFile: Improve error messages | |||
2020-03-05 | Add a new configuration warning to CollisionShape | Pierre Caye | |
In the case where a ConcavePolygonShape is used as a shape for a RigidBody in another mode than static, a configuration warning will appear in the editor. | |||
2020-03-05 | ConfigFile: Improve error messages and complete docs | Rémi Verschelde | |
2020-03-05 | Merge pull request #36807 from akien-mga/dont-give-apples-to-the-monkeys | Rémi Verschelde | |
Mono: Fix detection of Apple platforms in build script | |||
2020-03-05 | Merge pull request #36746 from aaronfranke/plugin-icon-docs | Rémi Verschelde | |
Document EditorPlugin get_plugin_icon and get_plugin_name | |||
2020-03-05 | Merge pull request #36800 from qarmin/added_some_gitignore_records | Rémi Verschelde | |
Added to .gitignore - Cppcheck folder and Gcov, Lcov code coverage | |||
2020-03-05 | Mono: Fix detection of Apple platforms in build script | Rémi Verschelde | |
2020-03-05 | Merge pull request #36798 from m4gr3d/android_codebase_misc_cleanup | Rémi Verschelde | |
Miscellaneous cleanup for the Android codebase | |||
2020-03-05 | Merge pull request #36788 from nekomatata/windows-permissive-flag | Rémi Verschelde | |
Remove '/permissive-' flag from Windows MSVC build |