Releases: microsoft/vscode-java-debug
Releases · microsoft/vscode-java-debug
Release 0.25.0
0.25.0 - 2020-02-20
Added
- Provide context menu to continue/pause all/other threads. #748.
- Contribution from bhoppeadoy: Add user setting
java.debug.settings.numericPrecision
to set the numeric precision when formatting doubles in "Variables" or "Debug Console" viewlet. #745.
Fixed
Release 0.24.0
Release 0.23.0
Added
- Provide "Fix..." suggestions when "Build failed" occurs during launching the application. #358.
- Prompt to add the folder to source path if the running file isn't on classpath. #470.
- Provide samples for the commonly used debug configuration. See the doc.
Fixed
- It's safe to keep running the run/debug codelens if the debug configuration fails to save into the launch.json. PR#673.
- Improve the error handling when running the file via the context "run" or "debug" menu. PR#679.
- Support searching main classes from the workspace invisible project. PR#305.
Changed
Release 0.22.0
Release 0.21.0
Release 0.20.0
Release 0.19.0
Added
- Add a debug toolbar button to apply the changed classes to the running application. #559.
- Show toString() values in Variable window and hover tooltip. #315, #364.
- Add a global user setting
java.debug.settings.console
to specify the default console to launch your program. PR#594.
Fixed:
- Fix: The debug toolbar doesn't close after the program running in external terminal exits. #582.
- Fix: Cannot stop the debugging process automatically in attach mode. java-debug#273.
Release 0.18.0
Added
- Enable "Logical Structure" view for Map and Collection variables. #227.
- Add the source hyperlinks for the stack traces in the Debug Console output. #490, #506.
- Automatically add
--enable-preview
to vmArgs when necessary. #553.
Changed
- Disable
java.debug.settings.showStaticVariables
by default to not show the static fields.
Fixed
- Fix: Debug Console does not support autocomplete when a .class file is open. #535.
Release 0.17.0
Release 0.16.0
Added
- Provide Chinese localized settings page for Java debugger, including launch.json configuration and user settings. #472, #477.
- Add new user settings
java.debug.settings.forceBuildBeforeLaunch
to control whether to build the workspace before Run/Debug. #462. - F5 will auto launch the current Java file if
mainClass
in launch.json is set to the variable${file}
. #431
Changed
- Simplify generated launch.json. #476.
- Remove the emoji before Run/Debug CodeLens. #475.
- Use
vscode.open
api instead ofopn
library. #479.
Fixed
- Fix the main class isn't unique issue. #420.