Skip to content

Commit 9b00935

Browse files
committed
Removes release notes from update notification
1 parent 95b907e commit 9b00935

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/messages.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class Messages {
9595
}
9696

9797
static async showWhatsNewMessage(version: string) {
98-
const actions: MessageItem[] = [{ title: "What's New" }, { title: 'Release Notes' }, { title: '❤' }];
98+
const actions: MessageItem[] = [{ title: "What's New" }, { title: '❤ Sponsor' }];
9999

100100
const result = await Messages.showMessage(
101101
'info',
@@ -109,8 +109,6 @@ export class Messages {
109109
if (result === actions[0]) {
110110
await env.openExternal(Uri.parse('https://gitlens.amod.io/#whats-new'));
111111
} else if (result === actions[1]) {
112-
await env.openExternal(Uri.parse('https://github.com/eamodio/vscode-gitlens/blob/main/CHANGELOG.md'));
113-
} else if (result === actions[2]) {
114112
await env.openExternal(Uri.parse('https://gitlens.amod.io/#sponsor'));
115113
}
116114
}

0 commit comments

Comments
 (0)