chore: Remove firstInstall message

This commit is contained in:
Mattia Astorino 2020-01-06 17:45:44 +01:00
parent a2b2127684
commit e112117866
No known key found for this signature in database
GPG key ID: CDFA82D8B1132C65

View file

@ -13,11 +13,6 @@ export async function activate(context: ExtensionContext): Promise<void> {
const releaseNotesView = new ReleaseNotesWebview(context);
const installationType = extensionManager.getInstallationType();
// TODO: BEFORE RELEASE add new message for new install because with the refactor also updates will be considered as new install, for the first time
if (installationType.firstInstall) {
await installationMessage();
}
if ((installationType.firstInstall || installationType.update) && await changelogManager.askShowChangelog()) {
await releaseNotesView.show();
}