-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(1.94): update patches and build process (#2047)
- Loading branch information
Showing
17 changed files
with
316 additions
and
280 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
|
||
## <a id="dependencies"></a>Dependencies | ||
|
||
- node 18.15 | ||
- node 20.14 | ||
- yarn | ||
- jq | ||
- git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -ex | ||
|
||
export ELECTRON_VERSION="30.5.1" | ||
export VSCODE_ELECTRON_TAG="v${ELECTRON_VERSION}.riscv1" | ||
|
||
echo "dfae1ccddec728faa7e5dcc92fb38ee7c40251e7f7638817da1c2a94dd37b5c2 *electron-v${ELECTRON_VERSION}-linux-riscv64.zip" >> build/checksums/electron.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
diff --git a/src/vs/platform/extensionManagement/node/extensionDownloader.ts b/src/vs/platform/extensionManagement/node/extensionDownloader.ts | ||
index 0ddae28..2e3c9b2 100644 | ||
--- a/src/vs/platform/extensionManagement/node/extensionDownloader.ts | ||
+++ b/src/vs/platform/extensionManagement/node/extensionDownloader.ts | ||
@@ -11,3 +11,2 @@ import { joinPath } from 'vs/base/common/resources'; | ||
import * as semver from 'vs/base/common/semver/semver'; | ||
-import { isBoolean } from 'vs/base/common/types'; | ||
import { URI } from 'vs/base/common/uri'; | ||
@@ -51,2 +50,3 @@ export class ExtensionsDownloader extends Disposable { | ||
@IExtensionGalleryService private readonly extensionGalleryService: IExtensionGalleryService, | ||
diff --git a/src/vs/platform/extensionManagement/node/extensionManagementService.ts b/src/vs/platform/extensionManagement/node/extensionManagementService.ts | ||
index 680e0dd..0b04279 100644 | ||
--- a/src/vs/platform/extensionManagement/node/extensionManagementService.ts | ||
+++ b/src/vs/platform/extensionManagement/node/extensionManagementService.ts | ||
@@ -86,2 +86,3 @@ export class ExtensionManagementService extends AbstractExtensionManagementServi | ||
@IFileService private readonly fileService: IFileService, | ||
+ // @ts-expect-error no-unused-variable | ||
@IConfigurationService private readonly configurationService: IConfigurationService, | ||
@@ -116,4 +116,3 @@ export class ExtensionsDownloader extends Disposable { | ||
|
||
- const value = this.configurationService.getValue('extensions.verifySignature'); | ||
- return isBoolean(value) ? value : true; | ||
+ return false; | ||
} | ||
@@ -347,4 +348,3 @@ export class ExtensionManagementService extends AbstractExtensionManagementServi | ||
if (verifySignature) { | ||
- const value = this.configurationService.getValue('extensions.verifySignature'); | ||
- verifySignature = isBoolean(value) ? value : true; | ||
+ verifySignature = false; | ||
} |
Oops, something went wrong.