You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/change_log.txt
+16-5Lines changed: 16 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,17 @@ For setup see https://github.com/daveleroy/sublime_debugger
2
2
3
3
For a full list of changes see https://github.com/daveleroy/sublime_debugger/commits
4
4
5
+
Version 0.10.0 - April 1, 2023
6
+
- Initial support for viewing and stepping through disassembly (not all adapters support this)
7
+
- Fixes a few issues with how multiple simultaneous debug sessions are hanled
8
+
- All adapters are now packaged on github instead of taking some from openvsx since the openvsx api can be really slow
9
+
- LSP-json schema now issues an error message when an adapter type is not installed
10
+
- A number of minor layout and color tweaks to make the ui fit better with the default adaptive theme
11
+
12
+
- ruby: Switched to rdbg instead of readapt since that seems like the official dap server
13
+
- go: Support for `env` configuration option and default `cwd` to `${folder}`
14
+
15
+
5
16
Version 0.9.3 - Feb 4, 2023
6
17
- Minor improvements to the variables/watch display
7
18
- Show duplicate lines in the console with a counter
@@ -26,7 +37,7 @@ Version 0.9.0 - Jan 14, 2023
26
37
- Optimize html and css generation
27
38
- Delay resizing the ui until the layout stop changing
28
39
29
-
- Fixes a few issues with stderr from the adapter not being logged correctly when a transport ends unexpectedly
40
+
- Fixes a few issues with stderr from the adapter not being logged correctly when a transport ends unexpectedly
30
41
- Fixes an issue where the debugger output panel was being forced to be too tall (you may need to delete the cached values in your workspace file)
31
42
- Fixes an issue with setting breakpoints in some adapters
32
43
@@ -93,7 +104,7 @@ Version 0.7.0
93
104
- The hover expression behavior is smarter and can evaluate simple expressions like `a.b` `a->c` etc
94
105
- lua: Adds lua debugger via lua-local (@naoufalzerai)
95
106
- python: support for multiprocess debugging
96
-
- ruby: allow specifying readapt path via `ruby_readapt` preference
107
+
- ruby: allow specifying readapt path via `ruby_readapt` preference
97
108
- go: updated to use dlv dap
98
109
99
110
Version 0.6.8
@@ -245,7 +256,7 @@ Version 0.2.0
245
256
- Loaded Modules/Sources panels
246
257
- Adds Node debug adapter (@appelgriebsch)
247
258
- External terminal support. Terminal on Mac (Needs support for Windows/Linux) or Sublime's Terminus package.
248
-
- Integrated terminal now strips ascii control sequences
259
+
- Integrated terminal now strips ascii control sequences
249
260
- Settings button
250
261
- Show currently installed version of an adapter, show download progress when installing an adapter
251
262
- Fixes issues that sometimes occurred installing/reinstalling adapters
@@ -276,8 +287,8 @@ Version 0.1.4
276
287
- New styling of panels and updated layout to better support temporary panels created for build results/integrated terminal (and in the future allow customizing the layout of the panels)
277
288
- New console rendering code to support text wrapping and build results/integrated terminal
278
289
- Support internal terminal requests to allow program input. Requires configuration changes to use this feature which depends on the adapter in question. (LLVM uses "terminal": "integrated")
279
-
- Allow defining platform specific configuration settings with a top level object called "linux", "osx", or "windows" in your configuration. Same as vscode
280
-
- Fixes issue where hover providers/autocomplete/run command was not working for some debug adapters
290
+
- Allow defining platform specific configuration settings with a top level object called "linux", "osx", or "windows" in your configuration. Same as vscode
291
+
- Fixes issue where hover providers/autocomplete/run command was not working for some debug adapters
281
292
- Fixes issue where using $file and other variables in a configuration had their values expanded when the debugger was opened not when the debugger was started
282
293
- Fixes some wonkiness that occurred when stepping the debugger that caused it to not update correctly
0 commit comments