Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-03-18 | Merge pull request #36993 from van800/editor_metadata | Rémi Verschelde | |
For third-party tools - editor_path is stored in project's editor settings | |||
2020-03-17 | Merge pull request #37106 from akien-mga/clang-format-cpp11 | Rémi Verschelde | |
Style: Set clang-format Standard to Cpp11 | |||
2020-03-17 | Style: Set clang-format Standard to Cpp11 | Ré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-16 | prevent joypad button input dropdown going out of dialog | alvaroHernandez | |
2020-03-16 | i18n: Sync translations with Weblate | Rémi Verschelde | |
(cherry picked from commit 0e36b11f9d05bacd5036acc48bf654cbcd5b7628) | |||
2020-03-16 | Merge pull request #36184 from volzhs/plugins-checkbox | Rémi Verschelde | |
Use checkbox for plugin status instead of option list | |||
2020-03-14 | Merge pull request #36970 from JFonS/fix_viewports_update | Rémi Verschelde | |
Update all editor viewports after settings changes | |||
2020-03-14 | Update all editor viewports after settings changes | JFonS | |
2020-03-13 | Fix bad uses of mutex causing deadlocks | Pedro J. Estébanez | |
2020-03-12 | Merge pull request #36518 from Janglee123/no-underlined-keywords | Rémi Verschelde | |
Removed underlining of not clickable symbols | |||
2020-03-12 | Merge pull request #36994 from akien-mga/typedefs-cleanup | Rémi Verschelde | |
typedefs: Cleanup unused macros and unnecessary checks | |||
2020-03-12 | for third-party tools - editor_path is stored in project's editor settings | Ivan.Shakhov | |
2020-03-12 | Merge pull request #36963 from JFonS/fix_rotation_gizmo_update | Rémi Verschelde | |
Fix rotation gizmo for empty Spatials | |||
2020-03-11 | typedefs: Cleanup unused macros and unnecessary checks | Rémi Verschelde | |
We now require a compiler with C++17 support, so we don't need to check for features added to GCC 5 or Clang 3.2. Clang builtin availability checks were unused anyway as Clang defines `__GNUC__` as it's also a GNU C implementation. Fixes #36986. | |||
2020-03-11 | Fix various typos | luz.paz | |
Found via `codespell` | |||
2020-03-11 | Removed underlining for not clickable symbols | janglee | |
2020-03-10 | Fix rotation gizmo for empty Spatials | JFonS | |
The AABB for an empty Spatial has 0 size, since the stored and compared Transform was scaled by the AABB size, it would completely destroy the rotation information. If there is no rotation information, the gizmo doesn't update when the rotation changes. | |||
2020-03-10 | Merge pull request #36887 from MCrafterzz/relativeSnap | Rémi Verschelde | |
Made snap relative work on rotation as well | |||
2020-03-10 | Fix "deploy with remote debug" editor option. | Fabio Alessandrelli | |
The line to update the option was missing (rendering it useless). Of course the only one I didn't know how to test was broken. | |||
2020-03-09 | Merge pull request #36751 from Faless/debugger/threads_and_profilers | Rémi Verschelde | |
ScriptDebugger refactor, threading, profilers. | |||
2020-03-09 | Made snap relative work on rotation as well | Marcus Elg | |
2020-03-09 | Merge pull request #36917 from volzhs/cancel-snap-setting | Rémi Verschelde | |
Update snap setting only with OK | |||
2020-03-09 | Merge pull request #36914 from guilhermefelipecgs/fix_check_view_information | Rémi Verschelde | |
Fix the VIEW_INFORMATION checkbox not being selected (visually) | |||
2020-03-09 | Merge pull request #36920 from Faless/debugger/more_instances | Rémi Verschelde | |
Move Debug menu logic to DebuggerEditorPlugin, allow 4 debug instances | |||
2020-03-09 | Merge pull request #36929 from timothyqiu/keep-filename | Rémi Verschelde | |
Keeps the filename when marking scene as unsaved | |||
2020-03-09 | DocData: Fix serialization of Variant default values | Rémi Verschelde | |
Co-authored-by: Bojidar Marinov <bojidar.marinov.bg@gmail.com> | |||
2020-03-09 | i18n: Sync translations with Weblate | Rémi Verschelde | |
(cherry picked from commit 18e021b7cd81afbccf915bd825aaa264a9f608a1) | |||
2020-03-09 | Allow running/debugging up to 4 instances. | Fabio Alessandrelli | |
2020-03-09 | Keeps the filename when marking scene as unsaved | Haoyu Qiu | |
2020-03-08 | Add rotation widget to 3D viewport | jfons | |
2020-03-08 | Move Debug menu logic to DebuggerEditorPlugin | Fabio Alessandrelli | |
2020-03-09 | Update snap setting only with OK | volzhs | |
restore previous values with cancel | |||
2020-03-08 | Fix the VIEW_INFORMATION checkbox not being selected | Guilherme Felipe | |
Generated id of "Display Advanced..." was in conflict with "View Information" | |||
2020-03-08 | Update editor debugger to new remote debugger. | Fabio Alessandrelli | |
Shared RemoteDebuggerPeer code between client and server. Move editor profilers inside editor/debugger folder. | |||
2020-03-08 | Threaded networking for editor debugger. | Fabio Alessandrelli | |
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-05 | Re-architecture of the Godot Android plugin. | fhuya | |
2020-03-05 | Merge pull request #36752 from RandomShaper/rework_semaphore | Rémi Verschelde | |
Drop old semaphore implementation | |||
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 #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 | 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 #36746 from aaronfranke/plugin-icon-docs | Rémi Verschelde | |
Document EditorPlugin get_plugin_icon and get_plugin_name | |||
2020-03-04 | Merge pull request #36743 from Calinou/tweak-giprobe-gizmo | Rémi Verschelde | |
Tweak the GIProbe gizmo to be more subtle | |||
2020-03-04 | Merge pull request #36739 from Calinou/improve-giprobe-editor-label | Rémi Verschelde | |
Improve the GIProbe editor contextual label | |||
2020-03-04 | Document EditorPlugin get_plugin_icon and get_plugin_name | Aaron Franke | |
The return value's type hint is now accurate. | |||
2020-03-04 | Merge pull request #36069 from RandomShaper/imvu/improve_drives_ux | Rémi Verschelde | |
Improve UX of drive letters | |||
2020-03-04 | Merge pull request #36699 from dreamsComeTrue/fix-extension-file-dialog | Rémi Verschelde | |
Take correct part of extension with File Dialog | |||
2020-03-03 | Double click on a folder didn't open it (editor) | Gil Arasa Verge | |
Same behavior as #36684. Removed by mistake in #36426. Fixes #36757. | |||
2020-03-03 | Drop old semaphore implementation | Pedro J. Estébanez | |
- Removed platform-specific implementations. - Now all semaphores are in-object, unless they need to be conditionally created. - Similarly to `Mutex`, provided a dummy implementation for when `NO_THREADS` is defined. - Similarly to `Mutex`, methods are made `const` for easy use in such contexts. - Language bindings updated: `wait()` and `post()` are now `void`. - Language bindings updated: `try_wait()` added. Bonus: - Rewritten the `#ifdef` in `mutex.h` to meet the code style. |