Skip to content

Commit

Permalink
Remove the release notes functionality (#10)
Browse files Browse the repository at this point in the history
* Remove the release notes functionality

* Remove contribution points

* Remove from localization
  • Loading branch information
filiptronicek authored May 11, 2023
1 parent a422305 commit 1150621
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 368 deletions.
20 changes: 0 additions & 20 deletions gitpod-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,6 @@
"title": "%reportIssue%",
"enablement": "gitpod.inWorkspace == true"
},
{
"command": "gitpod.showReleaseNotes",
"title": "%showReleaseNotes%",
"enablement": "gitpod.inWorkspace == true"
},
{
"command": "gitpod.upgradeSubscription",
"title": "%upgradeSubscription%",
Expand Down Expand Up @@ -276,10 +271,6 @@
{
"command": "gitpod.reportIssue",
"group": "z_about2@40"
},
{
"command": "gitpod.showReleaseNotes",
"group": "z_about2@50"
}
],
"extension/context": [
Expand Down Expand Up @@ -454,11 +445,6 @@
"group": "remote_00_gitpod_navigation@130",
"when": "gitpod.inWorkspace == true && gitpod.workspaceOwned == true && gitpod.workspaceShared == true"
},
{
"command": "gitpod.showReleaseNotes",
"group": "remote_00_gitpod_navigation@140",
"when": "gitpod.inWorkspace == true"
},
{
"command": "gitpod.openInStable",
"group": "remote_00_gitpod_navigation@900",
Expand Down Expand Up @@ -591,12 +577,6 @@
"type": "boolean",
"description": "Control whether to prompt to open in VS Code Desktop on page load.",
"default": false
},
"gitpod.showReleaseNotes": {
"type": "boolean",
"description": "Show the Gitpod Changelog whenever a new one comes out.",
"default": true,
"scope": "application"
}
}
},
Expand Down
1 change: 0 additions & 1 deletion gitpod-web/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"openTwitter": "Gitpod: Follow us on Twitter",
"reportIssue": "Gitpod: Report Issue",
"stopWorkspace": "Gitpod: Stop Workspace",
"showReleaseNotes": "Gitpod: Show Release Notes",
"upgradeSubscription": "Gitpod: Upgrade Subscription",
"extendTimeout": "Gitpod: Extend Workspace Timeout (180m)",
"configureTimeout": "Gitpod: Configure Workspace Timeout",
Expand Down
4 changes: 1 addition & 3 deletions gitpod-web/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { PortsStatus, PortVisibility } from '@gitpod/supervisor-api-grpc/lib/sta
import type * as keytarType from 'keytar';
import fetch from 'node-fetch';
import * as vscode from 'vscode';
import { ReleaseNotes } from './releaseNotes';
import { registerWelcomeWalkthroughContribution, WELCOME_WALKTROUGH_KEY } from './welcomeWalktrough';
import { GitpodPortViewProvider } from './portViewProvider';
import { registerExtensionManagement } from './extensionManagement';
Expand All @@ -21,7 +20,7 @@ export async function activate(context: vscode.ExtensionContext) {

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

context.globalState.setKeysForSync([WELCOME_WALKTROUGH_KEY, ReleaseNotes.RELEASE_NOTES_LAST_READ_KEY]);
context.globalState.setKeysForSync([WELCOME_WALKTROUGH_KEY]);

registerCommands(gitpodContext);
registerDesktop();
Expand All @@ -39,7 +38,6 @@ export async function activate(context: vscode.ExtensionContext) {
registerIpcHookCli(gitpodContext);
registerExtensionManagement(gitpodContext);
registerWelcomeWalkthroughContribution(gitpodContext);
context.subscriptions.push(new ReleaseNotes(context, gitpodContext.logger));

await gitpodContext.active;
}
Expand Down
Loading

0 comments on commit 1150621

Please sign in to comment.