parent
5fc394dfa3
commit
32c57f85d6
12
CHANGELOG.md
12
CHANGELOG.md
|
@ -4,6 +4,18 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## 0.38.0 - 2022-01-26
|
||||
### Added
|
||||
- Thanks for the contribution from [Mu-Tsun Tsai](https://github.com/MuTsunTsai). Add zh-tw locale. [#1087](https://github.com/microsoft/vscode-java-debug/pull/1087).
|
||||
|
||||
### Changed
|
||||
- Change the inline button to debug icon. [#1108](https://github.com/microsoft/vscode-java-debug/pull/1108).
|
||||
|
||||
### Fixed
|
||||
- Improve the search performance of resolving main class. [java-debug#395](https://github.com/microsoft/java-debug/pull/395).
|
||||
- If mainClass not specified, it will find main classes not belonging to current workspace. [#1098](https://github.com/microsoft/vscode-java-debug/issues/1098).
|
||||
- Update CONTRIBUTING docs. [#1105](https://github.com/microsoft/vscode-java-debug/issues/1105).
|
||||
|
||||
## 0.37.0 - 2021-11-24
|
||||
### Added
|
||||
- Troubleshooting Guide for Encoding Issues on Windows. See [Troubleshooting_encoding](https://github.com/microsoft/vscode-java-debug/blob/main/Troubleshooting_encoding.md).
|
||||
|
|
|
@ -25,10 +25,10 @@ javaDebugger/
|
|||
```
|
||||
|
||||
### Prerequisites
|
||||
- [JDK](http://www.oracle.com/technetwork/java/javase/downloads/index.html), (version 1.8.0 or later)
|
||||
- [VS Code](https://code.visualstudio.com/), (version 1.19.0 or later)
|
||||
- [Node.JS](https://nodejs.org/en/), (>= 8.9.1, < 9.0.0)
|
||||
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java), (version 0.14.0 or later)
|
||||
- [JDK](http://www.oracle.com/technetwork/java/javase/downloads/index.html), (version 11 or later)
|
||||
- [VS Code](https://code.visualstudio.com/), (version 1.44.0 or later)
|
||||
- [Node.JS](https://nodejs.org/en/), (>= 12.8.1)
|
||||
- [Language Support for Java by Red Hat](https://marketplace.visualstudio.com/items?itemName=redhat.java), (version 0.60.0 or later)
|
||||
|
||||
Install all the dependencies using `npm` (supposed to be installed together with [Node.JS](https://nodejs.org/en/)).
|
||||
```bash
|
||||
|
|
|
@ -130,6 +130,9 @@ Pro Tip: The documentation [Configuration.md](https://github.com/microsoft/vscod
|
|||
Reference the [Troubleshooting Guide](https://github.com/Microsoft/vscode-java-debug/blob/master/Troubleshooting.md) for common errors.
|
||||
Reference the [Troubleshooting Guide for Encoding Issues](https://github.com/Microsoft/vscode-java-debug/blob/master/Troubleshooting_encoding.md) for encoding issues.
|
||||
|
||||
## Contributing
|
||||
If you are interested in fixing issues and contributing directly to the code base, please see the document [How to Contribute](https://github.com/microsoft/vscode-java-debug/blob/main/CONTRIBUTING.md).
|
||||
|
||||
## Feedback and Questions
|
||||
You can find the full list of issues at [Issue Tracker](https://github.com/Microsoft/vscode-java-debug/issues). You can submit a [bug or feature suggestion](https://github.com/Microsoft/vscode-java-debug/issues/new), and participate community driven [](https://gitter.im/Microsoft/vscode-java-debug)
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "vscode-java-debug",
|
||||
"version": "0.37.0",
|
||||
"version": "0.38.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "vscode-java-debug",
|
||||
"displayName": "Debugger for Java",
|
||||
"description": "A lightweight Java debugger for Visual Studio Code",
|
||||
"version": "0.37.0",
|
||||
"version": "0.38.0",
|
||||
"publisher": "vscjava",
|
||||
"preview": true,
|
||||
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
|
||||
|
@ -54,7 +54,7 @@
|
|||
}
|
||||
],
|
||||
"javaExtensions": [
|
||||
"./server/com.microsoft.java.debug.plugin-0.34.0.jar"
|
||||
"./server/com.microsoft.java.debug.plugin-0.35.0.jar"
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue