Skip to content

Commit

Permalink
Removes RemoteHub
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Amodio committed Jun 3, 2021
1 parent 0f2f7c7 commit 8b4bc01
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 39 deletions.
38 changes: 3 additions & 35 deletions product.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"extensionAllowedProposedApi": [
"ms-vscode.vscode-js-profile-flame",
"ms-vscode.vscode-js-profile-table",
"ms-vscode.github-browser",
"ms-vscode.github-richnav",
"ms-vscode.remotehub",
"ms-vscode.remotehub-insiders"
"ms-vscode.remotehub-insiders",
"GitHub.remotehub",
"GitHub.remotehub-insiders"
],
"builtInExtensions": [
{
Expand Down Expand Up @@ -121,38 +121,6 @@
},
"publisherDisplayName": "Microsoft"
}
},
{
"name": "ms-vscode.remotehub",
"version": "0.5.4",
"repo": "https://github.com/microsoft/vscode-remotehub",
"metadata": {
"id": "ed0ffe1d-36f0-49a0-bafe-da68355eb33a",
"publisherId": {
"publisherId": "5f5636e7-69ed-4afe-b5d6-8d231fb3d3ee",
"publisherName": "ms-vscode",
"displayName": "Microsoft",
"flags": "verified"
},
"publisherDisplayName": "Microsoft"
}
}
],
"webBuiltInExtensions": [
{
"name": "ms-vscode.remotehub",
"version": "0.5.4",
"repo": "https://github.com/microsoft/vscode-remotehub",
"metadata": {
"id": "ed0ffe1d-36f0-49a0-bafe-da68355eb33a",
"publisherId": {
"publisherId": "5f5636e7-69ed-4afe-b5d6-8d231fb3d3ee",
"publisherName": "ms-vscode",
"displayName": "Microsoft",
"flags": "verified"
},
"publisherDisplayName": "Microsoft"
}
}
]
}
6 changes: 3 additions & 3 deletions src/vs/platform/product/common/product.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ else {
extensionAllowedProposedApi: [
'ms-vscode.vscode-js-profile-flame',
'ms-vscode.vscode-js-profile-table',
'ms-vscode.github-browser',
'ms-vscode.github-richnav',
'ms-vscode.remotehub',
'ms-vscode.remotehub-insiders'
'ms-vscode.remotehub-insiders',
'GitHub.remotehub',
'GitHub.remotehub-insiders'
],
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface IAccountUsage {
lastUsed: number;
}

const VSO_ALLOWED_EXTENSIONS = ['github.vscode-pull-request-github', 'github.vscode-pull-request-github-insiders', 'vscode.git', 'ms-vsonline.vsonline', 'vscode.github-browser', 'ms-vscode.github-browser', 'ms-vscode.remotehub', 'ms-vscode.remotehub-insiders', 'github.codespaces'];
const VSO_ALLOWED_EXTENSIONS = ['github.vscode-pull-request-github', 'github.vscode-pull-request-github-insiders', 'vscode.git', 'ms-vsonline.vsonline', 'ms-vscode.remotehub', 'ms-vscode.remotehub-insiders', 'github.remotehub', 'github.remotehub-insiders', 'github.codespaces'];

export function readAccountUsages(storageService: IStorageService, providerId: string, accountName: string,): IAccountUsage[] {
const accountKey = `${providerId}-${accountName}-usages`;
Expand Down

0 comments on commit 8b4bc01

Please sign in to comment.