Skip to content

Commit

Permalink
update windows binary for Electron 11.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bimalkjha committed Feb 7, 2021
1 parent 7e31738 commit 1fde4bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Binary file modified build.zip
Binary file not shown.
7 changes: 5 additions & 2 deletions installer/driverInstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ var platform = os.platform();
var arch = os.arch();

var vscode_build = false;
var electron_version = '9.3.5';
var electron_version = '11.2.1';

console.log("platform = ", platform, ", arch = ", arch, ", node.js version = ", process.version);

Expand Down Expand Up @@ -702,7 +702,10 @@ function findElectronVersion() {
var codeOut = execSync('code --version').toString();
vscodeVer = parseFloat(codeOut.split('\n')[0]);
if(!isNaN(vscodeVer)) {
if (vscodeVer >= 1.52) {
if (vscodeVer >= 1.53){
electron_version = "11.2.1";
}
else if (vscodeVer >= 1.52) {
electron_version = "9.3.5";
}
else if (vscodeVer >= 1.49) {
Expand Down

0 comments on commit 1fde4bf

Please sign in to comment.