Skip to content

Commit cfd12c9

Browse files
Prepare release for 0.36.0 (#1055)
1 parent 63b8404 commit cfd12c9

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to the "vscode-java-debugger" extension will be documented i
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.36.0 - 2021-09-23
8+
### Changed
9+
- Adopt new createStatusBarItem API for id and name properties. [#1020](https://github.com/microsoft/vscode-java-debug/issues/1020).
10+
11+
### Fixed
12+
- Unicode character in class name will fail to run. [#780](https://github.com/microsoft/vscode-java-debug/issues/780).
13+
- Launching apps which require both a modulepath and a classpath doesn't work with shortenCommandLine="argfile". [#1047](https://github.com/microsoft/vscode-java-debug/issues/1047).
14+
- Debugger fails to load variable values due to java.lang.OutOfMemoryError. [#1044](https://github.com/microsoft/vscode-java-debug/issues/1044).
15+
- Fix privacy in the logger. [PR#1048](https://github.com/microsoft/vscode-java-debug/pull/1048).
16+
717
## 0.35.0 - 2021-07-28
818
### Changed
919
- Add link to check detatils while reporting debugging progress. [PR#1034](https://github.com/microsoft/vscode-java-debug/pull/1034).

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-java-debug",
33
"displayName": "Debugger for Java",
44
"description": "A lightweight Java debugger for Visual Studio Code",
5-
"version": "0.35.0",
5+
"version": "0.36.0",
66
"publisher": "vscjava",
77
"preview": true,
88
"aiKey": "67d4461e-ccba-418e-8082-1bd0acfe8516",
@@ -54,7 +54,7 @@
5454
}
5555
],
5656
"javaExtensions": [
57-
"./server/com.microsoft.java.debug.plugin-0.32.0.jar"
57+
"./server/com.microsoft.java.debug.plugin-0.33.0.jar"
5858
],
5959
"commands": [
6060
{

src/customWidget.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export class NotificationBar implements vscode.Disposable {
88
private lastUpdateTime: number;
99

1010
constructor(id: string, name: string) {
11-
this.statusBar = vscode.window.createStatusBarItem(id, vscode.StatusBarAlignment.Left, Number.POSITIVE_INFINITY);
11+
this.statusBar = vscode.window.createStatusBarItem(id, vscode.StatusBarAlignment.Left, 1);
1212
this.statusBar.name = name;
1313
}
1414

0 commit comments

Comments
 (0)