summaryrefslogtreecommitdiffstats
path: root/editor/dependency_editor.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Improve TreeItem API and allow to move nodestrollodel2021-05-171-2/+2
|
* Rename Array.invert() to Array.reverse()Marcel Admiraal2021-03-211-3/+3
| | | | | Does the same internally for List and Vector<>, which includes all PackedArray types.
* Reorganize Project Settingsreduz2021-02-181-4/+4
| | | | | | | -Advanced Settings toggle also hides advanced properties when disabled -Simplified Advanced Bar (errors were just plain redundant) -Reorganized rendering quality settings. -Reorganized miscelaneous settings for clean up.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Rename empty() to is_empty()Marcel Admiraal2020-12-281-2/+2
|
* Rename AcceptDialog get_ok() to get_ok_button()Marcel Admiraal2020-12-141-4/+4
| | | | | | Also renames: - AcceptDialog add_cancel() to add_cancel_button() - ConfirmationDiaglog get_cancel() to get_cancel_button()
* Initialize class/struct variables with default values in platform/ and editor/Rafał Mikrut2020-12-021-0/+2
|
* Merge pull request #41263 from Calinou/filesystem-dock-rename-delete-optionRémi Verschelde2020-11-161-2/+2
|\ | | | | Rename the "Delete" option in the FileSystem dock to "Move to Trash"
| * Rename the "Delete" option in the FileSystem dock to "Move to Trash"Hugo Locurcio2020-08-141-2/+2
| | | | | | | | | | It actually moves files to the system trash instead of removing them completely.
* | Refactored Variant Operators.reduz2020-11-061-8/+8
|/ | | | | -Using classes to call and a table -For typed code (GDS or GDNative), can obtain functions to call prevalidated or ptr.
* Resize dialogs (FileDialog, EditorFileDialog, Reparent, SceneTreeDialog and ↵Stijn Hinlopen2020-07-141-4/+4
| | | | resource depency dialogs).
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-14/+28
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-45/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Replace NULL with nullptrlupoDharkael2020-04-021-3/+3
|
* Popups are now windows also (broken!)Juan Linietsky2020-03-261-6/+6
|
* Working multiple window support, including editorJuan Linietsky2020-03-261-12/+12
|
* Style: Set clang-format Standard to Cpp11Rémi Verschelde2020-03-171-3/+3
| | | | | | | | | | 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`.
* Signals: Port connect calls to use callable_mpRémi Verschelde2020-02-281-19/+8
| | | | | | | | | Remove now unnecessary bindings of signal callbacks in the public API. There might be some false positives that need rebinding if they were meant to be public. No regular expressions were harmed in the making of this commit. (Nah, just kidding.)
* Reworked signal connection system, added support for Callable and Signal ↵Juan Linietsky2020-02-201-8/+8
| | | | objects and made them default.
* Texture refactorJuan Linietsky2020-02-111-6/+6
| | | | | | | | -Texture renamed to Texture2D -TextureLayered as base now inherits 2Darray, cubemap and cubemap array -Removed all references to flags in textures (they will go in the shader) -Texture3D gone for now (will come back later done properly) -Create base rasterizer for RenderDevice, RasterizerRD
* Update copyright statements to 2020Rémi Verschelde2020-01-011-2/+2
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Cleans up headers included in editor_node.hHaoyu Qiu2019-12-241-0/+1
|
* Removed unused variables, add some constants numbersRafał Mikrut2019-12-101-1/+0
|
* Fix the dependency error dialog being too small on hiDPI displaysHugo Locurcio2019-10-121-1/+1
| | | | This closes #32770.
* Improve localizationSayan Nandan2019-07-061-1/+1
| | | This commit improves localization and clarifies that once removed, the file cannot be restored
* Minor enhancements to the dependency editorMichael Alexsander Silva Dias2019-06-151-20/+20
|
* Add tooltip for the dependencies buttons in the orphan explorer dialogMichael Alexsander Silva Dias2019-06-061-1/+1
|
* Merge pull request #27707 from Calinou/tweak-message-wordingRémi Verschelde2019-04-301-2/+2
|\ | | | | Improve wording of various messages and make casing more consistent
| * Improve wording of various messages and make casing more consistentHugo Locurcio2019-04-211-2/+2
| | | | | | | | | | This also adds the number of selected projects to the confirmation dialog that appears before removing projects.
* | Allow default audio bus layout modificationlupoDharkael2019-04-051-1/+5
|/
* Fix deleting properties after deleting filesqarmin2019-03-161-2/+16
|
* Fix error when deleting default environmentqarmin2019-02-201-1/+5
|
* Rescan files and folders deleting themqarmin2019-02-091-1/+1
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Add signals for files move/delete/rename to FileSystemDockgroud2018-12-061-0/+9
|
* Clear application/run/main_scene if that file is deletedThomas Winderweedle2018-12-061-0/+6
| | | | Fixes #22473
* Let user fix dependencies in resourcesPedro J. Estébanez2018-11-021-3/+11
|
* Merge pull request #21426 from groud/add_files_to_tree_viewRémi Verschelde2018-09-201-12/+16
|\ | | | | Add files to tree view
| * Fixes favorites not updating and rename favorite_dirs to favoritesgroud2018-09-181-12/+16
| |
* | Refactor editor icon retrievalwillnationsdev2018-09-141-26/+5
|/
* Make core/ includes absolute, remove subfolders from include pathRémi Verschelde2018-09-121-2/+2
| | | | | | This allows more consistency in the manner we include core headers, where previously there would be a mix of absolute, relative and include path-dependent includes.
* Make some debug prints verbose-only, remove othersRémi Verschelde2018-08-241-6/+2
|
* fix for removing filesMarcin Zawiejski2018-05-111-13/+13
|
* remove favorited dirs if original dir deletedJason02142018-05-021-21/+42
|
* Fix typos in code and docs with codespellRémi Verschelde2018-01-181-4/+4
| | | | Using v1.11.0 from https://github.com/lucasdemarchi/codespell
* Fix files section size in dependency error dialogBernhard Liebl2018-01-131-0/+1
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Clean up \n from end of translation stringsArtem Varaksa2018-01-041-1/+1
|
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* Updated iconsDaniel J. Ramirez2017-12-141-1/+1
| | | | [ciskip]