We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9d7e03a + 1c967a4 commit 85986b0Copy full SHA for 85986b0
2 files changed
client/README.md
@@ -4,6 +4,10 @@
4
5
### Changelog
6
7
+#### v.2.4.1
8
+* Compatibility with the latest VSCode release (1.66.1)
9
+* Fixes discovery of Java installations to only look for 64-bit versions having version 11 or higher.
10
+
11
#### v.2.4.0 (Viper v.22.02-release)
12
* Viper IDE cache can be stored to a file.
13
server/src/Settings.ts
@@ -705,7 +705,7 @@ export class Settings {
705
return new Promise((resolve, reject) => {
706
try {
707
const options = {
708
- version: ">=1.8",
+ version: ">=11",
709
mustBe64Bit: true
710
};
711
locate_java_home.default(options, (err, javaHomes) => {
0 commit comments