You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.error(`Task v${minimumRequiredVersion} is required to run this extension. The current version is v${version}`);
65
-
vscode.window.showErrorMessage(`Task v${minimumRequiredVersion} is required to run this extension. The current version is v${version}.`,"Update").then(this.buttonCallback);
log.error(`Task v${minimumRequiredVersion} is required to run this extension. The current version is v${this.version}`);
68
+
vscode.window.showErrorMessage(`Task v${minimumRequiredVersion} is required to run this extension. The current version is v${this.version}.`,"Update").then(this.buttonCallback);
66
69
returnresolve("outOfDate");
67
70
}
68
71
69
72
// If a newer version is available, show a message
log.info(`A new version of Task is available. Current version: v${version}, Latest version: v${latestVersion}`);
75
-
vscode.window.showInformationMessage(`A new version of Task is available. Current version: v${version}, Latest version: v${latestVersion}`,"Update").then(this.buttonCallback);
log.info(`A new version of Task is available. Current version: v${this.version}, Latest version: v${latestVersion}`);
78
+
vscode.window.showInformationMessage(`A new version of Task is available. Current version: v${this.version}, Latest version: v${latestVersion}`,"Update").then(this.buttonCallback);
vscode.window.showWarningMessage(`Task version v${minimumRequiredVersionForSorting} is required to change the sort order. Falling back to "default".`,"Update").then(this.buttonCallback);
0 commit comments