summaryrefslogtreecommitdiffstats
path: root/doc/classes/EditorDebuggerSession.xml
Commit message (Collapse)AuthorAgeFilesLines
* Clarify `EngineDebugger` and `EditorDebugger*` documentationDanil Alexeev2024-10-211-1/+1
|
* Expose several EngineDebugger methods and signals as plugin callbacksChris Cranford2024-06-101-0/+9
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* [Editor] Better expose EditorDebuggerPlugin.Fabio Alessandrelli2022-11-141-0/+86
Now splitted into two classes: - EditorDebuggerPlugin (RefCounted). - EditorDebuggerSession (abstract). This allows the EditorPlugin to be in control of the debugger plugin lifecycle, be notified when sessions are created, and customize each of them independently. We should slowly transition the various profilers and captures in ScriptEditorDebugger to their own plugins, and decouple ScriptEditorDebugger from it's UI part (making it the "real" EditorDebuggerSession potentially dropping the wrappers).