diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ecf96a..b676398 100644 --- a/CHANGELOG.md +++ b/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). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0646908..cae7a2a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.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 @@ -61,4 +61,4 @@ Since we have checked in a valid [launch.json](https://github.com/Microsoft/java ## Pull Requests Before we can accept a pull request from you, you'll need to sign a [Contributor License Agreement (CLA)](https://github.com/Microsoft/vscode/wiki/Contributor-License-Agreement). It is an automated process and you only need to do it once. -To enable us to quickly review and accept your pull requests, always create one pull request per issue and [link the issue in the pull request](https://github.com/blog/957-introducing-issue-mentions). \ No newline at end of file +To enable us to quickly review and accept your pull requests, always create one pull request per issue and [link the issue in the pull request](https://github.com/blog/957-introducing-issue-mentions). diff --git a/README.md b/README.md index e096b6d..5adb681 100644 --- a/README.md +++ b/README.md @@ -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 [![Gitter](https://badges.gitter.im/Microsoft/vscode-java-debug.svg)](https://gitter.im/Microsoft/vscode-java-debug) diff --git a/package-lock.json b/package-lock.json index 8f573a6..4dd26eb 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "vscode-java-debug", - "version": "0.37.0", + "version": "0.38.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c3930aa..f231984 100644 --- a/package.json +++ b/package.json @@ -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": [ { diff --git a/package.nls.zh.json b/package.nls.zh-cn.json similarity index 100% rename from package.nls.zh.json rename to package.nls.zh-cn.json