| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Add Linux Editor tests workflow matrix
Add Windows Editor w/ Mono workflow matrix
Add Generate Glue Code job to Windows workflow
Add Build GodotSharp job to Windows workflow
Add godot compatibility version references
Add Godot author info
Add Godot version compatibility info
Add Godot donor info
Add Godot authors and donors to editor_about.cpp
Credits:
Co-authored-by: Skogi <skogi.b@gmail.com>
Co-authored-by: Spartan322 <Megacake1234@gmail.com>
Co-authored-by: swashberry <swashdev@pm.me>
Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com>
Co-authored-by: radenthefolf <radenthefolf@gmail.com>
Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com>
Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com>
Co-authored-by: decryptedchaos <nixgod@gmail.com>
Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com>
Co-authored-by: Mister Puma <MisterPuma80@gmail.com>
Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com>
Co-authored-by: SingleError <isaaconeoneone@gmail.com>
Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
|
|\ \ \
| | | |
| | | |
| | | | |
Fix quick open background panel style
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Misc code cleanup in EditorFileDialog
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Unify make dir and duplicate dialogs
|
| | |_|/
| |/| | |
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- Updated list view with thumbnails, and separate file name.
- Added a grid view which has larger icons.
- Added toggle to filter out files from addons.
- Store history for each opened resource type.
New Editor settings for Quick Open:
- Startup display mode (grid or list):
- Determined by the requested resource type.
- Whatever was last used.
- Toggle to filter out files from addons (for persistence).
Notes
- The dialog is now created once in EditorNode, and globally available for other components.
- A fixed number of result scenes are instantiated, and reused based on query.
- Drop support for multiselect.
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
Disable auto translation in EditorDirDialog
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
Add filter & sort to editor file dialog
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Closes https://github.com/godotengine/godot-proposals/issues/2721
On `EditorFileDialog`:
* Add filter box that only shows folders and files in current directory that match
* Add sort button to sort files and directories
* Add a shortcut for CTRL+F for selecting the filter box
Also moved common code between `EditorFileDialog` and `FileSystemDock`
to it's own file.
Co-authored-by: fox <12120644+foxydevloper@users.noreply.github.com>
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | | |
Add translation domain
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
How editor plugins use this feature:
1. Pick a unique translation domain name.
2. `_enter_tree()`: load translations into that translation domain.
3. Call `set_translation_domain()` for its root UI node.
4. `_exit_tree()`: remove that translation domain.
Plugins can also set the translation domain to `godot.editor` for
nested nodes that should use editor translations. `EditorFileDialog`
automatically does this.
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Set auto translate mode for drag previews
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
- Controls
- `LineEdit`, `TextEdit`: Always disabled since it's dragging user input.
- `TabBar`: Use the same auto translate mode as the node.
- `RichTextLabel`: Always disable since auto translation is done
differently from other controls (selection text you get
programmatically is always after auto translation).
- Editor
- Disable drag preview auto translation if the text is user input,
filename, or class name.
- Also disabled unexpected auto translation for audio bus effect names.
|
|/ / / |
|
|\ \ \
| |_|/
|/| |
| | |
| | |
| | | |
Maran23/inputmap-usage-for-filter-and-corresponding-refactor
Use InputMap actions consistently across all LineEdit's that filter an underlying Tree or ItemList.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
underlying Tree or ItemList.
- Instead of checking for Key::UP, Key::DOWN, Key::PAGEUP, Key::PAGEDOWN etc., we rather check for the action like 'ui_up' or 'ui_down'.
- Also use AcceptDialog's 'register_text_enter' functionality to consistently close a dialog when ENTER is pressed while the LineEdit has focus (instead of redirecting ENTER keys to e.g. the underlying Tree).
- Unify the LineEdit filter behavior for the SceneTreeDialog and corresponding usages
- Improve OK Button disablement (something should be selected)
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
Also made read only checks in EditorSpinSlider's implementation to use
`read_only` directly for consistency.
|
|\ \ \
| | | |
| | | |
| | | | |
Prevent editing value on focus when `EditorSpinSlider` is read-only
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
[Editor] Prevent duplicate `Open in Editor` buttons in scene tree dock
|
| | | |
| | | |
| | | |
| | | | |
Duplicate buttons were added when editor description changed
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
[Windows] Emit native file dialog callback from event loop, fix selected options not saved.
|
| | | | |
| | | | |
| | | | |
| | | | | |
options not saved.
|
|\ \ \ \ \
| |_|/ / /
|/| | | |
| | | | | |
Add ConfirmationDialog when clicking on % button in SceneTree
|
| | | | | |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | |
| | | | | |
Clean up Viewport's `forced_mouse_focus`
|
| | |/ /
| |/| | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Add a zoom speed setting to the 2D editor
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
Improve SpinBox interaction, split arrows, add theme attributes
|
| | |/ /
| |/| | |
|
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
Hilderin/fix-add-child-node-problem-no-auto-expand
Fix scene node selection problem when no auto expand
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | | |
Remove empty `bind_methods()`
|
| | |/
| |/| |
|
|\ \ \
| |/ /
|/| |
| | | |
Fix EditorSpinSlider when hidden
|
| |/ |
|
|/ |
|
|\
| |
| |
| |
| |
| | |
Hilderin/fix-toggle-last-opened-bottom-panel-after-restoring-to-side
Fix Toggle Last Opened Bottom Panel not working after restoring FileSystem Dock to the side
|
| |
| |
| |
| | |
Dock to the side
|