mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-18 05:34:41 +10:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1eff01d6f0 | ||
|
|
db8d1e7a8d | ||
|
|
c741ae3347 | ||
|
|
becd52f518 |
10
.github/workflows/linux.yml
vendored
10
.github/workflows/linux.yml
vendored
@@ -32,13 +32,13 @@ jobs:
|
|||||||
image: vscodium/vscodium-linux-build-agent:stretch-armhf
|
image: vscodium/vscodium-linux-build-agent:stretch-armhf
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Install GH
|
- name: Install GH
|
||||||
run: ./install_gh.sh
|
run: ./install_gh.sh
|
||||||
|
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
node-version: 14
|
||||||
|
|
||||||
@@ -68,7 +68,7 @@ jobs:
|
|||||||
if: env.SHOULD_BUILD == 'yes'
|
if: env.SHOULD_BUILD == 'yes'
|
||||||
|
|
||||||
- name: Cache yarn directory
|
- name: Cache yarn directory
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
||||||
key: linux-${{ matrix.npm_arch }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
key: linux-${{ matrix.npm_arch }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
||||||
@@ -107,10 +107,10 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
platform:
|
platform:
|
||||||
- amd64
|
- amd64
|
||||||
- arm64
|
# - arm64
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Check version
|
- name: Check version
|
||||||
run: ./stores/snapcraft/check_version.sh
|
run: ./stores/snapcraft/check_version.sh
|
||||||
|
|||||||
6
.github/workflows/macos.yml
vendored
6
.github/workflows/macos.yml
vendored
@@ -26,10 +26,10 @@ jobs:
|
|||||||
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
VSCODE_ARCH: ${{ matrix.vscode_arch }}
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
node-version: 14
|
||||||
|
|
||||||
@@ -56,7 +56,7 @@ jobs:
|
|||||||
if: env.SHOULD_BUILD == 'yes'
|
if: env.SHOULD_BUILD == 'yes'
|
||||||
|
|
||||||
- name: Cache yarn directory
|
- name: Cache yarn directory
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
||||||
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
||||||
|
|||||||
8
.github/workflows/windows.yml
vendored
8
.github/workflows/windows.yml
vendored
@@ -23,10 +23,10 @@ jobs:
|
|||||||
vscode_arch: [x64, ia32, arm64]
|
vscode_arch: [x64, ia32, arm64]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Setup Node.js environment
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
node-version: 14
|
node-version: 14
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ jobs:
|
|||||||
run: npm install -g yarn
|
run: npm install -g yarn
|
||||||
|
|
||||||
- name: Setup Python 2
|
- name: Setup Python 2
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v3
|
||||||
with:
|
with:
|
||||||
python-version: '2.x'
|
python-version: '2.x'
|
||||||
|
|
||||||
@@ -61,7 +61,7 @@ jobs:
|
|||||||
if: env.SHOULD_BUILD == 'yes'
|
if: env.SHOULD_BUILD == 'yes'
|
||||||
|
|
||||||
- name: Cache yarn directory
|
- name: Cache yarn directory
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
path: ${{ steps.yarnCacheDirPath.outputs.dir }}
|
||||||
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
key: ${{ env.OS_NAME }}-${{ env.VSCODE_ARCH }}-yarnCacheDir-${{ steps.yarnCacheKey.outputs.value }}
|
||||||
|
|||||||
@@ -50,7 +50,6 @@ twitterUrl='setpath(["twitterUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533
|
|||||||
requestFeatureUrl='setpath(["requestFeatureUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533482")'
|
requestFeatureUrl='setpath(["requestFeatureUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533482")'
|
||||||
documentationUrl='setpath(["documentationUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533484#vscode")'
|
documentationUrl='setpath(["documentationUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533484#vscode")'
|
||||||
introductoryVideosUrl='setpath(["introductoryVideosUrl"]; "https://go.microsoft.com/fwlink/?linkid=832146")'
|
introductoryVideosUrl='setpath(["introductoryVideosUrl"]; "https://go.microsoft.com/fwlink/?linkid=832146")'
|
||||||
extensionAllowedBadgeProviders='setpath(["extensionAllowedBadgeProviders"]; ["api.bintray.com", "api.travis-ci.com", "api.travis-ci.org", "app.fossa.io", "badge.fury.io", "badge.waffle.io", "badgen.net", "badges.frapsoft.com", "badges.gitter.im", "badges.greenkeeper.io", "cdn.travis-ci.com", "cdn.travis-ci.org", "ci.appveyor.com", "circleci.com", "cla.opensource.microsoft.com", "codacy.com", "codeclimate.com", "codecov.io", "coveralls.io", "david-dm.org", "deepscan.io", "dev.azure.com", "flat.badgen.net", "gemnasium.com", "githost.io", "gitlab.com", "godoc.org", "goreportcard.com", "img.shields.io", "isitmaintained.com", "marketplace.visualstudio.com", "nodesecurity.io", "opencollective.com", "snyk.io", "travis-ci.com", "travis-ci.org", "visualstudio.com", "vsmarketplacebadge.apphb.com", "www.bithound.io", "www.versioneye.com"])'
|
|
||||||
updateUrl='setpath(["updateUrl"]; "https://vscodium.now.sh")'
|
updateUrl='setpath(["updateUrl"]; "https://vscodium.now.sh")'
|
||||||
releaseNotesUrl='setpath(["releaseNotesUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533483#vscode")'
|
releaseNotesUrl='setpath(["releaseNotesUrl"]; "https://go.microsoft.com/fwlink/?LinkID=533483#vscode")'
|
||||||
keyboardShortcutsUrlMac='setpath(["keyboardShortcutsUrlMac"]; "https://go.microsoft.com/fwlink/?linkid=832143")'
|
keyboardShortcutsUrlMac='setpath(["keyboardShortcutsUrlMac"]; "https://go.microsoft.com/fwlink/?linkid=832143")'
|
||||||
@@ -71,13 +70,16 @@ win32AppUserModelId='setpath(["win32AppUserModelId"]; "Microsoft.VSCodium")'
|
|||||||
win32ShellNameShort='setpath(["win32ShellNameShort"]; "VSCodium")'
|
win32ShellNameShort='setpath(["win32ShellNameShort"]; "VSCodium")'
|
||||||
win32x64UserAppId='setpath (["win32x64UserAppId"]; "{{2E1F05D1-C245-4562-81EE-28188DB6FD17}")'
|
win32x64UserAppId='setpath (["win32x64UserAppId"]; "{{2E1F05D1-C245-4562-81EE-28188DB6FD17}")'
|
||||||
urlProtocol='setpath(["urlProtocol"]; "vscodium")'
|
urlProtocol='setpath(["urlProtocol"]; "vscodium")'
|
||||||
extensionAllowedProposedApi='setpath(["extensionAllowedProposedApi"]; getpath(["extensionAllowedProposedApi"]) + ["ms-vscode.cpptools", "ms-azuretools.vscode-docker", "visualstudioexptteam.vscodeintellicode", "GitHub.codespaces", "GitHub.vscode-pull-request-github-insiders", "GitHub.vscode-pull-request-github", "Microsoft.vscode-nmake-tools", "ms-ai-tools.notebook-renderers", "ms-dotnettools.dotnet-interactive-vscode", "ms-python.gather", "ms-python.python", "ms-toolsai.jupyter", "ms-toolsai.vscode-ai", "ms-toolsai.vscode-ai-remote", "ms-vscode-remote.remote-containers-nightly", "ms-vscode-remote.remote-containers", "ms-vscode-remote.remote-ssh-edit-nightly", "ms-vscode-remote.remote-ssh-edit", "ms-vscode-remote.remote-ssh-nightly", "ms-vscode-remote.remote-ssh", "ms-vscode-remote.remote-wsl-nightly", "ms-vscode-remote.remote-wsl", "ms-vscode-remote.remote-wsl-recommender", "ms-vscode-remote.vscode-remote-extensionpack-nightly", "ms-vscode-remote.vscode-remote-extensionpack", "ms-vscode.azure-account", "ms-vscode.azure-sphere-tools-ui", "ms-vscode.azure-sphere-tools", "ms-vscode.github-browser", "ms-vscode.github-richnav", "ms-vscode.js-debug-nightly", "ms-vscode.js-debug", "ms-vscode.lsif-browser", "ms-vscode.vscode-js-profile-flame", "ms-vscode.vscode-js-profile-table", "ms-vscode.vscode-selfhost-test-provider", "ms-vsliveshare.cloudenv-explorer", "ms-vsliveshare.cloudenv", "ms-vsliveshare.vsliveshare", "ms-vsonline.vsonline", "dbaeumer.vscode-eslint"])'
|
|
||||||
serverDataFolderName='setpath(["serverDataFolderName"]; ".vscode-server-oss")'
|
serverDataFolderName='setpath(["serverDataFolderName"]; ".vscode-server-oss")'
|
||||||
reportIssueUrl='setpath(["reportIssueUrl"]; "https://github.com/VSCodium/vscodium/issues/new/choose")'
|
reportIssueUrl='setpath(["reportIssueUrl"]; "https://github.com/VSCodium/vscodium/issues/new/choose")'
|
||||||
licenseUrl='setpath(["licenseUrl"]; "https://github.com/VSCodium/vscodium/blob/master/LICENSE")'
|
licenseUrl='setpath(["licenseUrl"]; "https://github.com/VSCodium/vscodium/blob/master/LICENSE")'
|
||||||
|
|
||||||
product_json_changes="${checksumFailMoreInfoUrl} | ${tipsAndTricksUrl} | ${twitterUrl} | ${requestFeatureUrl} | ${documentationUrl} | ${introductoryVideosUrl} | ${extensionAllowedBadgeProviders} | ${updateUrl} | ${releaseNotesUrl} | ${keyboardShortcutsUrlMac} | ${keyboardShortcutsUrlLinux} | ${keyboardShortcutsUrlWin} | ${quality} | ${extensionsGallery} | ${linkProtectionTrustedDomains} | ${nameShort} | ${nameLong} | ${linuxIconName} | ${applicationName} | ${win32MutexName} | ${win32DirName} | ${win32NameVersion} | ${win32RegValueName} | ${win32AppUserModelId} | ${win32ShellNameShort} | ${win32x64UserAppId} | ${urlProtocol} | ${extensionAllowedProposedApi} | ${serverDataFolderName} | ${reportIssueUrl} | ${licenseUrl}"
|
product_json_changes="${checksumFailMoreInfoUrl} | ${tipsAndTricksUrl} | ${twitterUrl} | ${requestFeatureUrl} | ${documentationUrl} | ${introductoryVideosUrl} | ${updateUrl} | ${releaseNotesUrl} | ${keyboardShortcutsUrlMac} | ${keyboardShortcutsUrlLinux} | ${keyboardShortcutsUrlWin} | ${quality} | ${extensionsGallery} | ${linkProtectionTrustedDomains} | ${nameShort} | ${nameLong} | ${linuxIconName} | ${applicationName} | ${win32MutexName} | ${win32DirName} | ${win32NameVersion} | ${win32RegValueName} | ${win32AppUserModelId} | ${win32ShellNameShort} | ${win32x64UserAppId} | ${urlProtocol} | ${serverDataFolderName} | ${reportIssueUrl} | ${licenseUrl}"
|
||||||
cat product.json.bak | jq "${product_json_changes}" > product.json
|
cat product.json.bak | jq "${product_json_changes}" > product.json.tmp
|
||||||
|
|
||||||
|
jq -s '.[0] * .[1]' product.json.tmp ../product.json > product.json
|
||||||
|
rm -f product.json.tmp
|
||||||
|
|
||||||
cat product.json
|
cat product.json
|
||||||
|
|
||||||
../undo_telemetry.sh
|
../undo_telemetry.sh
|
||||||
|
|||||||
427
product.json
Normal file
427
product.json
Normal file
@@ -0,0 +1,427 @@
|
|||||||
|
{
|
||||||
|
"extensionAllowedBadgeProviders": [
|
||||||
|
"api.bintray.com",
|
||||||
|
"api.travis-ci.com",
|
||||||
|
"api.travis-ci.org",
|
||||||
|
"app.fossa.io",
|
||||||
|
"badge.buildkite.com",
|
||||||
|
"badge.fury.io",
|
||||||
|
"badge.waffle.io",
|
||||||
|
"badgen.net",
|
||||||
|
"badges.frapsoft.com",
|
||||||
|
"badges.gitter.im",
|
||||||
|
"badges.greenkeeper.io",
|
||||||
|
"cdn.travis-ci.com",
|
||||||
|
"cdn.travis-ci.org",
|
||||||
|
"ci.appveyor.com",
|
||||||
|
"circleci.com",
|
||||||
|
"cla.opensource.microsoft.com",
|
||||||
|
"codacy.com",
|
||||||
|
"codeclimate.com",
|
||||||
|
"codecov.io",
|
||||||
|
"coveralls.io",
|
||||||
|
"david-dm.org",
|
||||||
|
"deepscan.io",
|
||||||
|
"dev.azure.com",
|
||||||
|
"docs.rs",
|
||||||
|
"flat.badgen.net",
|
||||||
|
"gemnasium.com",
|
||||||
|
"githost.io",
|
||||||
|
"gitlab.com",
|
||||||
|
"godoc.org",
|
||||||
|
"goreportcard.com",
|
||||||
|
"img.shields.io",
|
||||||
|
"isitmaintained.com",
|
||||||
|
"marketplace.visualstudio.com",
|
||||||
|
"nodesecurity.io",
|
||||||
|
"opencollective.com",
|
||||||
|
"snyk.io",
|
||||||
|
"travis-ci.com",
|
||||||
|
"travis-ci.org",
|
||||||
|
"visualstudio.com",
|
||||||
|
"vsmarketplacebadge.apphb.com",
|
||||||
|
"www.bithound.io",
|
||||||
|
"www.versioneye.com"
|
||||||
|
],
|
||||||
|
"extensionAllowedBadgeProvidersRegex": [
|
||||||
|
"^https:\\/\\/github\\.com\\/[^/]+\\/[^/]+\\/(actions\\/)?workflows\\/.*badge\\.svg"
|
||||||
|
],
|
||||||
|
"extensionEnabledApiProposals": {
|
||||||
|
"ms-vscode.vscode-selfhost-test-provider": [
|
||||||
|
"testObserver"
|
||||||
|
],
|
||||||
|
"VisualStudioExptTeam.vscodeintellicode-completions": [
|
||||||
|
"inlineCompletions"
|
||||||
|
],
|
||||||
|
"ms-vsliveshare.vsliveshare": [
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"diffCommand",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"findTextInFiles",
|
||||||
|
"notebookCellExecutionState",
|
||||||
|
"notebookContentProvider",
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookEditorEdit",
|
||||||
|
"notebookLiveShare",
|
||||||
|
"terminalDimensions",
|
||||||
|
"terminalDataWriteEvent",
|
||||||
|
"textDocumentNotebook",
|
||||||
|
"textSearchProvider"
|
||||||
|
],
|
||||||
|
"ms-vscode.js-debug": [
|
||||||
|
"portsAttributes",
|
||||||
|
"findTextInFiles",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers"
|
||||||
|
],
|
||||||
|
"ms-toolsai.vscode-ai-remote": [
|
||||||
|
"resolvers",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-python.python": [
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"testObserver",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-dotnettools.dotnet-interactive-vscode": [
|
||||||
|
"notebookConcatTextDocument",
|
||||||
|
"notebookContentProvider",
|
||||||
|
"notebookCellExecutionState",
|
||||||
|
"notebookControllerKind",
|
||||||
|
"notebookDebugOptions",
|
||||||
|
"notebookDeprecated",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookEditorDecorationType",
|
||||||
|
"notebookEditorEdit",
|
||||||
|
"notebookLiveShare",
|
||||||
|
"notebookMessaging",
|
||||||
|
"notebookMime",
|
||||||
|
"textDocumentNotebook"
|
||||||
|
],
|
||||||
|
"GitHub.codespaces": [
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"notebookEditor",
|
||||||
|
"resolvers",
|
||||||
|
"terminalDataWriteEvent",
|
||||||
|
"treeViewReveal"
|
||||||
|
],
|
||||||
|
"ms-vscode.azure-repos": [
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"resolvers",
|
||||||
|
"textSearchProvider"
|
||||||
|
],
|
||||||
|
"ms-vscode.remote-repositories": [
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"contribViewsWelcome",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"workspaceTrust",
|
||||||
|
"scmSelectedProvider",
|
||||||
|
"scmValidation",
|
||||||
|
"textSearchProvider",
|
||||||
|
"timeline",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-vscode.vscode-github-issue-notebooks": [
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"tanhakabir.rest-book": [
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-vscode-remote.remote-wsl": [
|
||||||
|
"resolvers",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"telemetry"
|
||||||
|
],
|
||||||
|
"ms-vscode-remote.remote-ssh": [
|
||||||
|
"resolvers",
|
||||||
|
"terminalDataWriteEvent",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"telemetry"
|
||||||
|
],
|
||||||
|
"ms-vscode-remote.remote-containers": [
|
||||||
|
"resolvers",
|
||||||
|
"workspaceTrust",
|
||||||
|
"terminalDimensions",
|
||||||
|
"contribViewsRemote"
|
||||||
|
],
|
||||||
|
"ms-vscode.js-debug-nightly": [
|
||||||
|
"portsAttributes",
|
||||||
|
"findTextInFiles",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers"
|
||||||
|
],
|
||||||
|
"ms-vscode.lsif-browser": [
|
||||||
|
"documentFiltersExclusive"
|
||||||
|
],
|
||||||
|
"GitHub.vscode-pull-request-github": [
|
||||||
|
"tokenInformation"
|
||||||
|
],
|
||||||
|
"GitHub.copilot": [
|
||||||
|
"inlineCompletions",
|
||||||
|
"textDocumentNotebook"
|
||||||
|
],
|
||||||
|
"GitHub.copilot-nightly": [
|
||||||
|
"inlineCompletions",
|
||||||
|
"textDocumentNotebook"
|
||||||
|
],
|
||||||
|
"GitHub.remotehub": [
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"contribViewsWelcome",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers",
|
||||||
|
"scmSelectedProvider",
|
||||||
|
"scmValidation",
|
||||||
|
"textSearchProvider",
|
||||||
|
"timeline",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"GitHub.remotehub-insiders": [
|
||||||
|
"contribRemoteHelp",
|
||||||
|
"contribMenuBarHome",
|
||||||
|
"contribViewsRemote",
|
||||||
|
"contribViewsWelcome",
|
||||||
|
"documentFiltersExclusive",
|
||||||
|
"extensionRuntime",
|
||||||
|
"fileSearchProvider",
|
||||||
|
"quickPickSortByLabel",
|
||||||
|
"workspaceTrust",
|
||||||
|
"resolvers",
|
||||||
|
"scmSelectedProvider",
|
||||||
|
"scmValidation",
|
||||||
|
"textSearchProvider",
|
||||||
|
"timeline",
|
||||||
|
"notebookEditor"
|
||||||
|
],
|
||||||
|
"ms-python.gather": [
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookCellExecutionState"
|
||||||
|
],
|
||||||
|
"ms-python.vscode-pylance": [
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookCellExecutionState"
|
||||||
|
],
|
||||||
|
"ms-toolsai.jupyter": [
|
||||||
|
"notebookConcatTextDocument",
|
||||||
|
"notebookControllerKind",
|
||||||
|
"notebookDebugOptions",
|
||||||
|
"notebookDeprecated",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditorDecorationType",
|
||||||
|
"notebookEditorEdit",
|
||||||
|
"notebookMessaging",
|
||||||
|
"notebookMime",
|
||||||
|
"notebookCellExecutionState",
|
||||||
|
"portsAttributes",
|
||||||
|
"textDocumentNotebook",
|
||||||
|
"quickPickSortByLabel"
|
||||||
|
],
|
||||||
|
"dbaeumer.vscode-eslint": [
|
||||||
|
"tabs",
|
||||||
|
"notebookDocumentEvents",
|
||||||
|
"notebookEditor",
|
||||||
|
"notebookCellExecutionState"
|
||||||
|
],
|
||||||
|
"ms-vscode.azure-sphere-tools-ui": [
|
||||||
|
"resolvers"
|
||||||
|
],
|
||||||
|
"ms-azuretools.vscode-azureappservice": [
|
||||||
|
"terminalDataWriteEvent"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionKind": {
|
||||||
|
"Shan.code-settings-sync": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"shalldie.background": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"techer.open-in-browser": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"CoenraadS.bracket-pair-colorizer-2": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"CoenraadS.bracket-pair-colorizer": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"hiro-sun.vscode-emacs": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"hnw.vscode-auto-open-markdown-preview": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"wayou.vscode-todo-highlight": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"aaron-bond.better-comments": [
|
||||||
|
"ui",
|
||||||
|
"workspace"
|
||||||
|
],
|
||||||
|
"vscodevim.vim": [
|
||||||
|
"ui"
|
||||||
|
],
|
||||||
|
"ollyhayes.colmak-vim": [
|
||||||
|
"ui"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionPointExtensionKind": {
|
||||||
|
"typescriptServerPlugins": [
|
||||||
|
"workspace"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionSyncedKeys": {
|
||||||
|
"ritwickdey.liveserver": [
|
||||||
|
"liveServer.setup.version"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"extensionVirtualWorkspacesSupport": {
|
||||||
|
"esbenp.prettier-vscode": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"msjsdiag.debugger-for-chrome": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"redhat.java": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"HookyQR.beautify": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ritwickdey.LiveServer": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"VisualStudioExptTeam.vscodeintellicode": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"octref.vetur": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"formulahendry.code-runner": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"xdebug.php-debug": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ms-mssql.mssql": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"christian-kohler.path-intellisense": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"eg2.tslint": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"eg2.vscode-npm-script": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"donjayamanne.githistory": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"Zignd.html-css-class-completion": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"christian-kohler.npm-intellisense": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"EditorConfig.EditorConfig": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"austin.code-gnu-global": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"johnpapa.Angular2": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ms-vscode.vscode-typescript-tslint-plugin": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"DotJoshJohnson.xml": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"techer.open-in-browser": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"tht13.python": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"bmewburn.vscode-intelephense-client": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"Angular.ng-template": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"xdebug.php-pack": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"dbaeumer.jshint": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"yzhang.markdown-all-in-one": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"Dart-Code.flutter": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"streetsidesoftware.code-spell-checker": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"rebornix.Ruby": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ms-vscode.sublime-keybindings": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"mitaki28.vscode-clang": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"steoates.autoimport": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"donjayamanne.python-extension-pack": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"shd101wyy.markdown-preview-enhanced": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"mikestead.dotenv": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"pranaygp.vscode-css-peek": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"ikappas.phpcs": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"platformio.platformio-ide": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"jchannon.csharpextensions": {
|
||||||
|
"default": false
|
||||||
|
},
|
||||||
|
"gruntfuggly.todo-tree": {
|
||||||
|
"default": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,7 +2,6 @@ DEFAULT_TRUE="'default': true"
|
|||||||
DEFAULT_FALSE="'default': false"
|
DEFAULT_FALSE="'default': false"
|
||||||
DEFAULT_ON="'default': TelemetryConfiguration.ON"
|
DEFAULT_ON="'default': TelemetryConfiguration.ON"
|
||||||
DEFAULT_OFF="'default': TelemetryConfiguration.OFF"
|
DEFAULT_OFF="'default': TelemetryConfiguration.OFF"
|
||||||
TELEMETRY_ENABLE="'telemetry.enableTelemetry':"
|
|
||||||
TELEMETRY_CRASH_REPORTER="'telemetry.enableCrashReporter':"
|
TELEMETRY_CRASH_REPORTER="'telemetry.enableCrashReporter':"
|
||||||
TELEMETRY_CONFIGURATION=" TelemetryConfiguration.ON"
|
TELEMETRY_CONFIGURATION=" TelemetryConfiguration.ON"
|
||||||
|
|
||||||
@@ -39,13 +38,12 @@ update_setting () {
|
|||||||
# construct line-aware replacement string
|
# construct line-aware replacement string
|
||||||
if [[ $line == *"$DEFAULT_TRUE"* ]]; then
|
if [[ $line == *"$DEFAULT_TRUE"* ]]; then
|
||||||
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_TRUE}/${DEFAULT_FALSE}/"
|
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_TRUE}/${DEFAULT_FALSE}/"
|
||||||
else
|
else
|
||||||
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_ON}/${DEFAULT_OFF}/"
|
local DEFAULT_TRUE_TO_FALSE="${LINE_NUM}s/${DEFAULT_ON}/${DEFAULT_OFF}/"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
replace "$DEFAULT_TRUE_TO_FALSE" $FILENAME
|
replace "$DEFAULT_TRUE_TO_FALSE" $FILENAME
|
||||||
}
|
}
|
||||||
|
|
||||||
update_setting "$TELEMETRY_ENABLE" src/vs/platform/telemetry/common/telemetryService.ts
|
|
||||||
update_setting "$TELEMETRY_CRASH_REPORTER" src/vs/workbench/electron-sandbox/desktop.contribution.ts
|
update_setting "$TELEMETRY_CRASH_REPORTER" src/vs/workbench/electron-sandbox/desktop.contribution.ts
|
||||||
update_setting "$TELEMETRY_CONFIGURATION" src/vs/platform/telemetry/common/telemetryService.ts
|
update_setting "$TELEMETRY_CONFIGURATION" src/vs/platform/telemetry/common/telemetryService.ts
|
||||||
|
|||||||
Reference in New Issue
Block a user