Browse Source

Changes to only show the welcome on major version release

main
Eric Amodio 6 years ago
parent
commit
717e24b71d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/extension.ts

+ 1
- 1
src/extension.ts View File

@ -293,7 +293,7 @@ async function showWelcomePage(version: string, previousVersion: string | undefi
return;
}
if (Container.config.showWhatsNewAfterUpgrades) {
if (Container.config.showWhatsNewAfterUpgrades && major !== prevMajor) {
await commands.executeCommand(Commands.ShowWelcomePage);
}
else {

Loading…
Cancel
Save