Skip to content

Commit 1150621

Browse files
Remove the release notes functionality (#10)
* Remove the release notes functionality * Remove contribution points * Remove from localization
1 parent a422305 commit 1150621

File tree

4 files changed

+1
-368
lines changed

4 files changed

+1
-368
lines changed

gitpod-web/package.json

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,6 @@
8383
"title": "%reportIssue%",
8484
"enablement": "gitpod.inWorkspace == true"
8585
},
86-
{
87-
"command": "gitpod.showReleaseNotes",
88-
"title": "%showReleaseNotes%",
89-
"enablement": "gitpod.inWorkspace == true"
90-
},
9186
{
9287
"command": "gitpod.upgradeSubscription",
9388
"title": "%upgradeSubscription%",
@@ -276,10 +271,6 @@
276271
{
277272
"command": "gitpod.reportIssue",
278273
"group": "z_about2@40"
279-
},
280-
{
281-
"command": "gitpod.showReleaseNotes",
282-
"group": "z_about2@50"
283274
}
284275
],
285276
"extension/context": [
@@ -454,11 +445,6 @@
454445
"group": "remote_00_gitpod_navigation@130",
455446
"when": "gitpod.inWorkspace == true && gitpod.workspaceOwned == true && gitpod.workspaceShared == true"
456447
},
457-
{
458-
"command": "gitpod.showReleaseNotes",
459-
"group": "remote_00_gitpod_navigation@140",
460-
"when": "gitpod.inWorkspace == true"
461-
},
462448
{
463449
"command": "gitpod.openInStable",
464450
"group": "remote_00_gitpod_navigation@900",
@@ -591,12 +577,6 @@
591577
"type": "boolean",
592578
"description": "Control whether to prompt to open in VS Code Desktop on page load.",
593579
"default": false
594-
},
595-
"gitpod.showReleaseNotes": {
596-
"type": "boolean",
597-
"description": "Show the Gitpod Changelog whenever a new one comes out.",
598-
"default": true,
599-
"scope": "application"
600580
}
601581
}
602582
},

gitpod-web/package.nls.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
"openTwitter": "Gitpod: Follow us on Twitter",
2121
"reportIssue": "Gitpod: Report Issue",
2222
"stopWorkspace": "Gitpod: Stop Workspace",
23-
"showReleaseNotes": "Gitpod: Show Release Notes",
2423
"upgradeSubscription": "Gitpod: Upgrade Subscription",
2524
"extendTimeout": "Gitpod: Extend Workspace Timeout (180m)",
2625
"configureTimeout": "Gitpod: Configure Workspace Timeout",

gitpod-web/src/extension.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { PortsStatus, PortVisibility } from '@gitpod/supervisor-api-grpc/lib/sta
77
import type * as keytarType from 'keytar';
88
import fetch from 'node-fetch';
99
import * as vscode from 'vscode';
10-
import { ReleaseNotes } from './releaseNotes';
1110
import { registerWelcomeWalkthroughContribution, WELCOME_WALKTROUGH_KEY } from './welcomeWalktrough';
1211
import { GitpodPortViewProvider } from './portViewProvider';
1312
import { registerExtensionManagement } from './extensionManagement';
@@ -21,7 +20,7 @@ export async function activate(context: vscode.ExtensionContext) {
2120

2221
gitpodContext.logger.info(`Gitpod Web ${context.extension.packageJSON.commit || context.extension.packageJSON.version}`);
2322

24-
context.globalState.setKeysForSync([WELCOME_WALKTROUGH_KEY, ReleaseNotes.RELEASE_NOTES_LAST_READ_KEY]);
23+
context.globalState.setKeysForSync([WELCOME_WALKTROUGH_KEY]);
2524

2625
registerCommands(gitpodContext);
2726
registerDesktop();
@@ -39,7 +38,6 @@ export async function activate(context: vscode.ExtensionContext) {
3938
registerIpcHookCli(gitpodContext);
4039
registerExtensionManagement(gitpodContext);
4140
registerWelcomeWalkthroughContribution(gitpodContext);
42-
context.subscriptions.push(new ReleaseNotes(context, gitpodContext.logger));
4341

4442
await gitpodContext.active;
4543
}

0 commit comments

Comments
 (0)