Removes RemoteHub

This commit is contained in:
Eric Amodio 2021-06-02 19:22:16 -04:00
parent 0f2f7c7f04
commit 8b4bc01166
3 changed files with 7 additions and 39 deletions

View file

@ -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": [
{
@ -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"
}
}
]
}

View file

@ -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'
],
});
}

View file

@ -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`;