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: CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,10 @@
1
1
# Change Log
2
2
3
+
## 0.54.2 (December 5th, 2019)
4
+
* bug fix - add `java.showBuildStatusOnStart.enabled` setting for revealing build status on startup. See [#1181](https://github.com/redhat-developer/vscode-java/issues/1181).
3
5
4
6
## 0.54.1 (December 4th, 2019)
5
-
* bug fix - fixed ignored global "java.jdt.ls.vmargs" setting (broke lombok support). See [#1175](https://github.com/redhat-developer/vscode-java/issues/1175).
7
+
* bug fix - fixed ignored global `java.jdt.ls.vmargs` setting (broke lombok support). See [#1175](https://github.com/redhat-developer/vscode-java/issues/1175).
6
8
7
9
## 0.54.0 (December 4th, 2019)
8
10
* enhancement - new `java.maven.updateSnapshots` preference to update snapshots/releases for Maven projects. See [#1102](https://github.com/redhat-developer/vscode-java/issues/1102).
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -108,6 +108,7 @@ The following settings are supported:
108
108
*`java.format.onType.enabled` : Enable/disable on-type formatting (triggered on `;`, `}` or `<return>`).
109
109
*`java.foldingRange.enabled`: Enable/disable smart folding range support. If disabled, it will use the default indentation-based folding range provided by VS Code.
110
110
*`java.maven.downloadSources`: Enable/disable eager download of Maven source artifacts.
111
+
*`java.maven.updateSnapshots`: Force update of Snapshots/Releases. Defaults to `false`.
111
112
*`java.codeGeneration.hashCodeEquals.useInstanceof`: Use 'instanceof' to compare types when generating the hashCode and equals methods. Defaults to `false`.
112
113
*`java.codeGeneration.hashCodeEquals.useJava7Objects`: Use Objects.hash and Objects.equals when generating the hashCode and equals methods. This setting only applies to Java 7 and higher. Defaults to `false`.
113
114
*`java.codeGeneration.useBlocks`: Use blocks in 'if' statements when generating the methods. Defaults to `false`.
@@ -119,8 +120,9 @@ The following settings are supported:
119
120
*`java.codeGeneration.toString.limitElements`: Limit number of items in arrays/collections/maps to list, if 0 then list all. Defaults to `0`.
120
121
*`java.selectionRange.enabled`: Enable/disable Smart Selection support for Java. Disabling this option will not affect the VS Code built-in word-based and bracket-based smart selection.
121
122
122
-
New in 0.54.0:
123
-
*`java.maven.updateSnapshots`: Force update of Snapshots/Releases.
123
+
New in 0.54.2:
124
+
*`java.showBuildStatusOnStart.enabled`: Automatically show build status on startup. Defaults to `false`.
0 commit comments