Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Add collapse/expand right click option to remote scene view | Kasper Frandsen | 2024-07-12 | 2 | -0/+17 | |
| | | | ||||||
* | | | Expose EditorUndoRedoManager's clear_history() | kobewi | 2024-08-29 | 1 | -1/+1 | |
| |/ |/| | ||||||
* | | Fix weird plural public method names | Adam Scott | 2024-08-27 | 2 | -6/+6 | |
|/ | ||||||
* | [TextServer] Fix get_word_breaks and it uses. | bruvzg | 2024-06-21 | 1 | -1/+1 | |
| | ||||||
* | [Scene] Add `SceneStringNames::text/value_changed` | A Thousand Ships | 2024-06-19 | 2 | -2/+2 | |
| | ||||||
* | [Scene] Add `SceneStringNames::item_selected` | A Thousand Ships | 2024-06-19 | 3 | -5/+5 | |
| | ||||||
* | [Scene] Add `SceneStringNames::font(_size/_color)` | A Thousand Ships | 2024-06-18 | 5 | -14/+14 | |
| | ||||||
* | Merge pull request #91454 from akien-mga/coverity-checks | Rémi Verschelde | 2024-06-03 | 1 | -13/+13 | |
|\ | | | | | | | Fix Steam input "crc" errors, and some other Coverity reports of uninitialized scalar variable | |||||
| * | Fix Steam input "crc" errors, and some other Coverity reports of ↵ | Rémi Verschelde | 2024-05-31 | 1 | -13/+13 | |
| | | | | | | | | | | | | | | uninitialized scalar variable - Fixes #88630. - Fixes #92578. | |||||
* | | [Scene] Add `SceneStringNames::panel` | A Thousand Ships | 2024-05-30 | 2 | -5/+5 | |
| | | ||||||
* | | [Scene] Add `SceneStringNames::id_pressed` | A Thousand Ships | 2024-05-30 | 3 | -4/+4 | |
|/ | ||||||
* | Merge pull request #92336 from van800/DAP | Rémi Verschelde | 2024-05-30 | 2 | -3/+6 | |
|\ | | | | | | | [DAP] Add `--dap-port` as a command line argument | |||||
| * | [DAP] Add --dap-port as a command line argument, very similar to --lsp-port | Ivan Shakhov | 2024-05-30 | 2 | -3/+6 | |
| | | ||||||
* | | Merge pull request #91033 from Hilderin/keep_current_bottom_panel_on_play | Rémi Verschelde | 2024-05-29 | 2 | -6/+1 | |
|\ \ | | | | | | | | | | Add editor setting to keep bottom panel state on play and stop game | |||||
| * | | Add editor setting to keep bottom panel state on play and stop game | Hilderin | 2024-05-29 | 2 | -6/+1 | |
| | | | ||||||
* | | | Merge pull request #92389 from ckaiser/light-mode-profiler | Rémi Verschelde | 2024-05-28 | 2 | -2/+17 | |
|\ \ \ | | | | | | | | | | | | | Fix profiler seek line color in light modes, update on theme change | |||||
| * | | | Fix profiler seek line color in light modes, update on theme change | Christian Kaiser | 2024-05-26 | 2 | -2/+17 | |
| | |/ | |/| | ||||||
* / | | Limit icon size in EditorDebuggerTree. | Daylily-Zeleen | 2024-05-25 | 3 | -1/+17 | |
|/ / | ||||||
* | | [Scene] Add SceneStringNames::pressed | A Thousand Ships | 2024-05-14 | 5 | -23/+23 | |
| | | ||||||
* | | Merge pull request #91927 from timothyqiu/monitor-names | Rémi Verschelde | 2024-05-14 | 1 | -5/+15 | |
|\ \ | | | | | | | | | | Make performance monitor names translatable | |||||
| * | | Make performance monitor names translatable | Haoyu Qiu | 2024-05-14 | 1 | -5/+15 | |
| | | | ||||||
* | | | Use Core/Scene stringnames consistently | kobewi | 2024-05-13 | 3 | -10/+10 | |
|/ / | ||||||
* | | Merge pull request #91619 from AThousandShips/find_improve | Rémi Verschelde | 2024-05-08 | 3 | -3/+3 | |
|\ \ | | | | | | | | | | Replace `find` with `contains/has` where applicable | |||||
| * | | Replace `find` with `contains/has` where applicable | A Thousand Ships | 2024-05-08 | 3 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers | |||||
* | | | [Core] Add case-insensitive `String::containsn` | A Thousand Ships | 2024-05-08 | 1 | -1/+1 | |
|/ / | ||||||
* | | Merge pull request #89248 from KoBeWi/store_no_store | Rémi Verschelde | 2024-05-07 | 2 | -1/+5 | |
|\ \ | | | | | | | | | | Don't store values when loading them | |||||
| * | | Don't store values when loading them | kobewi | 2024-03-07 | 2 | -1/+5 | |
| | | | ||||||
* | | | Reduce and prevent unnecessary random-access to `List` | A Thousand Ships | 2024-05-04 | 5 | -22/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable | |||||
* | | | Add PackedVector4Array Variant type | K. S. Ernest (iFire) Lee | 2024-05-03 | 1 | -0/+22 | |
| | | | | | | | | | | | | | | | Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||||
* | | | DAP: Fix typo in parsing of PackedVector3Array | Rémi Verschelde | 2024-05-02 | 1 | -1/+1 | |
| | | | ||||||
* | | | Organize existing code for editor plugins | Aaron Franke | 2024-04-27 | 1 | -1/+1 | |
| |/ |/| | ||||||
* | | Revert pack trimming introduced by #82084 | Mikael Hermansson | 2024-04-10 | 1 | -1/+1 | |
| | | ||||||
* | | Fix debugger tree error on editor start | Michael Alexsander | 2024-03-29 | 1 | -1/+2 | |
| | | ||||||
* | | Fix unexpected auto-translation of more editor components | Haoyu Qiu | 2024-03-28 | 1 | -0/+1 | |
| | | ||||||
* | | Merge pull request #86143 from YeldhamDev/ttr_here,_rtr_there | Rémi Verschelde | 2024-03-26 | 3 | -5/+5 | |
|\ \ | | | | | | | | | | Stop using `RTR()` inside the "editor" folder | |||||
| * | | Stop using `RTR()` inside the "editor" folder | Michael Alexsander | 2024-02-27 | 3 | -5/+5 | |
| | | | ||||||
* | | | Fix unexpected auto translation of Tree content | Haoyu Qiu | 2024-03-18 | 1 | -0/+1 | |
| | | | ||||||
* | | | Merge pull request #89475 from rsubtil/feature-add_message_type_to_dap | Rémi Verschelde | 2024-03-14 | 5 | -11/+12 | |
|\ \ \ | | | | | | | | | | | | | Add output type to DAP `output` events | |||||
| * | | | Add output type to DAP `output` events | Ricardo Subtil | 2024-03-14 | 5 | -11/+12 | |
| | | | | ||||||
* | | | | Merge uid_cache.bin and global_script_class_cache.cfg after mounting PCKs | David Nikdel | 2024-03-06 | 1 | -1/+1 | |
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fixes godotengine#82061 fixes godotengine#61556 Also, distinguish between main pack and DLC packs. It's desirable to downloaded content to be as small as possible. This change avoids bloating non-main pack files with new versions of resources that are all read on startup and never used again. They have no effect if loaded after startup. - project.godot/project.binary file - extension_list.cfg - app icon and boot_splash - .ico and .icns files (these can still be opted in for DLC by listing them explicitly in the include filter) | |||||
* | | | Add missing `variablesReference` field to DAP `evaluate` request | Ricardo Subtil | 2024-03-03 | 1 | -0/+1 | |
|/ / | ||||||
* | | Merge pull request #86398 from reach-satori/prof-visibility-fix | Rémi Verschelde | 2024-03-01 | 1 | -0/+1 | |
|\ \ | |/ |/| | | | Fix internal profiling button being visible when disabled in settings | |||||
| * | Fix internal profiling button being visible when disabled | Mateus Reis | 2023-12-21 | 1 | -0/+1 | |
| | | ||||||
* | | Add const lvalue ref to editor/* container parameters | Muller-Castro | 2024-02-26 | 7 | -9/+9 | |
| | | ||||||
* | | Extract BottomPanel from EditorNode | kit | 2024-02-20 | 1 | -3/+4 | |
| | | ||||||
* | | Use check_changed_settings_in_group() everywhere | kobewi | 2024-02-19 | 2 | -2/+6 | |
| | | ||||||
* | | Merge pull request #87661 from baptr/profiler_sort | Rémi Verschelde | 2024-02-19 | 1 | -1/+1 | |
|\ \ | | | | | | | | | | Fix editor profiler script function sort order | |||||
| * | | Fix editor profiler script function sort order | baptr | 2024-01-27 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The engine internally limits the number of functions reported back (to 16 by default). To this point, it's been sort the profiling info in *ascending* order of time spent, then trimming the list. This meant we may only see the best (fastest) functions, instead of the worst that you probably want when profiling. Now the servers_debugger sort more closely matches the local_debugger one, which worked fine. | |||||
* | | | Fix frame number underflow in visual profiler | Per Melin | 2024-02-15 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | Unsigned subtraction underflow caused the frame counter to be locked at 2^64 in the visual profiler until debugger/profiler_frame_history_size number of frames had passed. | |||||
* | | | Replace error checks against `size` with `is_empty` | A Thousand Ships | 2024-02-09 | 1 | -2/+2 | |
|/ / |