Skip to content

Commit 9246c8b

Browse files
Remove the release notes functionality (#60)
* Remove the release notes functionality * Remove contribution points * Remove getter for config
1 parent 24ad108 commit 9246c8b

File tree

4 files changed

+0
-369
lines changed

4 files changed

+0
-369
lines changed

package.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
"onCommand:gitpod.syncProvider.remove",
3939
"onCommand:gitpod.exportLogs",
4040
"onCommand:gitpod.api.autoTunnel",
41-
"onCommand:gitpod.showReleaseNotes",
4241
"onCommand:gitpod.installLocalExtensions",
4342
"onAuthenticationRequest:gitpod",
4443
"onUri",
@@ -61,12 +60,6 @@
6160
"default": "https://gitpod.io/",
6261
"scope": "application"
6362
},
64-
"gitpod.showReleaseNotes": {
65-
"type": "boolean",
66-
"description": "Show the Gitpod Changelog whenever a new one comes out.",
67-
"default": true,
68-
"scope": "application"
69-
},
7063
"gitpod.remote.useLocalApp": {
7164
"type": "boolean",
7265
"description": "Use the local companion app to connect to a remote workspace.\nWarning: Connecting to a remote workspace using local companion app will be removed in the near future.",
@@ -114,11 +107,6 @@
114107
"category": "Gitpod",
115108
"title": "Export all logs"
116109
},
117-
{
118-
"command": "gitpod.showReleaseNotes",
119-
"category": "Gitpod",
120-
"title": "Show Release Notes"
121-
},
122110
{
123111
"command": "gitpod.installLocalExtensions",
124112
"title": "Gitpod: Install Local Extensions...",

src/configuration.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ function getGitpodHost() {
1515
return vscode.workspace.getConfiguration('gitpod').get<string>('host', 'https://gitpod.io/');
1616
}
1717

18-
function getShowReleaseNotes() {
19-
return vscode.workspace.getConfiguration('gitpod').get<boolean>('showReleaseNotes', true);
20-
}
21-
2218
function getUseLocalApp(useLocalSSHServer?: boolean) {
2319
if (useLocalSSHServer) {
2420
return false;
@@ -57,7 +53,6 @@ function getDaemonLogPath(): string {
5753

5854
export const Configuration = {
5955
getGitpodHost,
60-
getShowReleaseNotes,
6156
getUseLocalApp,
6257
getLocalSSHServerPort,
6358
getLocalSshIpcPort,

src/extension.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import GitpodAuthenticationProvider from './authentication/authentication';
1010
import { ExperimentalSettings } from './experiments';
1111
import GitpodServer from './authentication/gitpodServer';
1212
import { NotificationService } from './services/notificationService';
13-
import { ReleaseNotes } from './releaseNotes';
1413
import { RemoteConnector } from './remoteConnector';
1514
import { SettingsSync } from './settingsSync';
1615
import { TelemetryService } from './services/telemetryService';
@@ -49,9 +48,6 @@ export async function activate(context: vscode.ExtensionContext) {
4948
let remoteConnectionInfo: { remoteAuthority: string; connectionInfo: SSHConnectionParams } | undefined;
5049
let success = false;
5150
try {
52-
// sync between machines
53-
context.globalState.setKeysForSync([ReleaseNotes.RELEASE_NOTES_LAST_READ_KEY]);
54-
5551
logger = vscode.window.createOutputChannel('Gitpod', { log: true });
5652
context.subscriptions.push(logger);
5753

@@ -103,8 +99,6 @@ export async function activate(context: vscode.ExtensionContext) {
10399
}
104100
}));
105101

106-
context.subscriptions.push(new ReleaseNotes(context, commandManager, logger));
107-
108102
// Register global commands
109103
commandManager.register(new SignInCommand(sessionService));
110104
commandManager.register(new ExportLogsCommand(context.logUri, notificationService, telemetryService, logger, hostService));

0 commit comments

Comments
 (0)