Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-06-04 | Fix moving and renaming files | Hein-Pieter van Braam-Stewart | |
This commit fixes several issues related to moving scenes and resources in an open project. * Don't try to reload scenes while not all scenes are updated yet. * Don't use the UndoRedo system to update non-user initiated editor state. * Resave scenes after moving files and updating resource path(s). | |||
2019-05-31 | Merge pull request #27309 from KoBeWi/main_scene_on_android | Rémi Verschelde | |
Ensure main scene is set when running on device | |||
2019-05-31 | Ensure main scene is set when running on device | Tomasz Chabora | |
2019-05-31 | Fix crash when inherit in rootless unsaved scene | Tomasz Chabora | |
2019-05-30 | Decrease the editor FPS cap when the window is unfocused | Hugo Locurcio | |
This decreases CPU/GPU usage when the window is unfocused, which can be beneficial to laptop users. This also makes the low-processor mode sleep project setting no longer affect the editor. Instead, two new editor settings now define the duration of sleeping when the editor is focused and unfocused. This closes #24209 and partially addresses #29257. | |||
2019-05-29 | Merge pull request #29253 from IronicallySerious/remove-duplicate-plugin | Rémi Verschelde | |
Remove duplicate audio bus plugin registry | |||
2019-05-28 | Merge pull request #28789 from mitchcurtis/quick-open | Rémi Verschelde | |
Add Quick Open dialog | |||
2019-05-28 | Remove duplicate audio bus plugin registry | Twarit | |
2019-05-28 | Add Quick Open dialog | Mitch Curtis | |
This dialog searches every Resource-derived file in the project, making it extremely useful for searching everything from audio files to scripts. Unlike the Quick Open Script and Quick Open Scene dialogs, you don't need to think about the type of file you're opening, just its name. Shift + Alt + O was chosen to match the existing shortcuts for Quick Open Scene and Quick Open Script. | |||
2019-05-28 | Merge pull request #28454 from homer666/popup-centered-maxsize | Rémi Verschelde | |
Add `popup_centered_clamped()` method to Popup | |||
2019-05-24 | Merge pull request #28907 from dankan1890/contextual_help | Rémi Verschelde | |
ScriptEditor: Changed the shortcut for contextual help in ALT + F1 | |||
2019-05-18 | Merge pull request #28970 from KoBeWi/a_wild_bug_appeared | Max Hilbrunner | |
Fix saving scenes when multi-closing scene tabs | |||
2019-05-18 | Fix "Open Project Data Folder" in the editor | Hugo Locurcio | |
The handling code also had to be moved as this option was moved to the Tools submenu. | |||
2019-05-17 | Fix saving scenes when multi-closing scene tabs | Tomasz Chabora | |
2019-05-16 | Merge pull request #28587 from Daw11/lanczos | Max Hilbrunner | |
Implement Lanczos image filter | |||
2019-05-15 | Fix leftover connection to the "Open" signal in FileSystemDock | Michael Alexsander Silva Dias | |
Fixes #28903. | |||
2019-05-15 | ScriptEditor: Changed the shortcut for contextual help in ALT + F1, to ↵ | dankan1890 | |
resolve the conflict with the help menu opening shortcut. | |||
2019-05-11 | Make possible to create inherited scenes via the RMB menu in the FileSystem dock | Michael Alexsander Silva Dias | |
2019-05-08 | Change empty scene closing on new inherented scene to a better approach | Michael Alexsander Silva Dias | |
2019-05-05 | Implement Lanczos image filter | Daw11 | |
2019-04-30 | Merge pull request #27707 from Calinou/tweak-message-wording | Rémi Verschelde | |
Improve wording of various messages and make casing more consistent | |||
2019-04-30 | Add Popup::popup_centered_clamped method | homer666 | |
- Also replace redundant duplicate code in editor dialogs with calls to popup_centered_clamped() | |||
2019-04-26 | Limit the size of the Manage Editor Feature Profiles dialog | Hugo Locurcio | |
This makes it more readable on large monitors. | |||
2019-04-25 | Merge pull request #28262 from KoBeWi/gotta_close_them_all | Rémi Verschelde | |
Add Close Others/Right/All for scene tabs | |||
2019-04-25 | Add Close Others/Right/All for scene tabs | Tomasz Chabora | |
2019-04-23 | Save Layout When Scene Is Closed Via Context Menu | DixiE | |
2019-04-21 | Improve wording of various messages and make casing more consistent | Hugo Locurcio | |
This also adds the number of selected projects to the confirmation dialog that appears before removing projects. | |||
2019-04-19 | Added ability for multiple images to be imported as an atlas | Juan Linietsky | |
This adds support for groups in the import system, which point to a single file. Add property hint for saving files in file field | |||
2019-04-15 | Save opened scenes when necessary | Tomasz Chabora | |
2019-04-09 | Style: Apply new changes from clang-format 8.0 | Rémi Verschelde | |
It seems to stay compatible with formatting done by clang-format 6.0 and 7.0, so contributors can keep using those versions for now (they will not undo those changes). | |||
2019-04-08 | Changes to to feature profile editor | Juan Linietsky | |
Changed "Disable Editor" to "Contextual Editor Enabled" Do not show contextual editors for disabled classes. | |||
2019-04-08 | Add ability to edit editor feature profiles | Juan Linietsky | |
Allows enabling/disabling parts of the editor and storing/loading profiles for that. | |||
2019-04-07 | Android now (optionally) builds the template when exporting | Juan Linietsky | |
Added new way to create add-ons Removed old way to create add-ons | |||
2019-04-22 | Merge pull request #27414 from KoBeWi/drop_the_dir | Rémi Verschelde | |
Allow to drop folders onto editor | |||
2019-04-21 | Merge pull request #27979 from Paulb23/remember_script_state | Rémi Verschelde | |
Restore script editor state between sessions | |||
2019-04-13 | Restore script editor state between sessions | Paulb23 | |
2019-04-07 | Merge pull request #26551 from ZahFox/editor-shortcuts | Rémi Verschelde | |
New shortcuts for the editor menu items | |||
2019-04-07 | Merge pull request #27151 from vorabrijesh/updated | Rémi Verschelde | |
Changed default shortcut for opening help menu to (Shift + F1) | |||
2019-04-07 | Change Help menu shortcut to Shift+F1: Fixes #3786 | vorabrijesh | |
2019-04-05 | Fix -Wimplicit-fallthrough warnings from GCC 8 | Rémi Verschelde | |
Adds `FALLTHROUGH` macro to specify when a fallthrough is intentional. Can be replaced by `[[fallthrough]]` if/when we switch to C++17. The warning is now enabled by default for GCC on `extra` warnings level (part of GCC's `-Wextra`). It's not enabled in Clang's `-Wextra` yet, but we could enable it manually once we switch to C++11. There's no equivalent feature in MSVC for now. Fixes #26135. | |||
2019-04-03 | Merge pull request #27238 from ShyRed/cpu2dmask | Rémi Verschelde | |
Add Emission Mask to CPUParticle2D | |||
2019-03-26 | Allow to drop folders onto editor | Tomasz Chabora | |
2019-03-20 | Revert accidental commits | Pedro J. Estébanez | |
This reverts commit fb37284c027b494ed3ec21124001fcb729f42cc4. This reverts commit 4db0f51b9aa76cfc7649787fe1970af606ce8dab. | |||
2019-03-20 | Create live view dock [wip] | Pedro J. Estébanez | |
2019-03-19 | Add Emission Mask to CPUParticle2D | ShyRed | |
Add ability to load emission masks to CPUParticle2D. | |||
2019-03-17 | Fix inherited icons for script classes | Will Nations | |
2019-03-16 | Merge pull request #26935 from qarmin/show_class_name_icon_in_tabs | Rémi Verschelde | |
Show in tabs custom class icons | |||
2019-03-16 | Make bottom panel only try to hide editors when they're visible | Michael Alexsander Silva Dias | |
2019-03-11 | Show in tabs non default class icons | qarmin | |
2019-03-09 | Allow class_name scripts to have nested inheritance | George Marques | |