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
Copy file name to clipboardExpand all lines: package.json
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,18 @@
123
123
"viewsWelcome": [
124
124
{
125
125
"view": "vscode-task.tasks",
126
-
"contents": "No Taskfile found in this workspace. Click the button below to get started and initialize a new Taskfile.\n[Initialize Taskfile](command:vscode-task.init)\nTo learn more about how to use Task [read our docs](https://taskfile.dev)."
126
+
"contents": "Task not installed. Click the button below to install it.\n[Install Task](command:vscode-task.openInstallation)\nTo learn more about how to use Task [read our docs](https://taskfile.dev).",
127
+
"when": "vscode-task:status == 'notInstalled'"
128
+
},
129
+
{
130
+
"view": "vscode-task.tasks",
131
+
"contents": "Task is out of date. Click the button below to update it.\n[Update Task](command:vscode-task.openInstallation)\nTo learn more about how to use Task [read our docs](https://taskfile.dev).",
132
+
"when": "vscode-task:status == 'outOfDate'"
133
+
},
134
+
{
135
+
"view": "vscode-task.tasks",
136
+
"contents": "No Taskfile found in this workspace. Click the button below to get started and initialize a new Taskfile.\n[Initialize Taskfile](command:vscode-task.init)\nTo learn more about how to use Task [read our docs](https://taskfile.dev).",
vscode.window.showErrorMessage(`Task v${minimumRequiredVersion} is required to run this extension. Your current version is v${version}.`,"Update").then(this.buttonCallback);
61
-
returnresolve();
61
+
returnresolve("outOfDate");
62
62
}
63
63
64
64
// If the current version is older than the minimum recommended version, show a warning
vscode.window.showWarningMessage(`Task v${minimumRecommendedVersion} is recommended to run this extension. Your current version is v${version} which doesn't support some features.`,"Update").then(this.buttonCallback);
67
-
returnresolve();
67
+
returnresolve("ready");
68
68
}
69
69
70
70
// If a newer version is available, show a message
0 commit comments