Skip to content

Commit 717e24b

Browse files
committed
Changes to only show the welcome on major version release
1 parent e7ce9a0 commit 717e24b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ async function showWelcomePage(version: string, previousVersion: string | undefi
293293
return;
294294
}
295295

296-
if (Container.config.showWhatsNewAfterUpgrades) {
296+
if (Container.config.showWhatsNewAfterUpgrades && major !== prevMajor) {
297297
await commands.executeCommand(Commands.ShowWelcomePage);
298298
}
299299
else {

0 commit comments

Comments
 (0)