-
Notifications
You must be signed in to change notification settings - Fork 522
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove start page in favor of walkthrough #3248
Conversation
@@ -2838,7 +2827,6 @@ | |||
{ | |||
"id": "dockerStart", | |||
"title": "%vscode-docker.walkthrough.dockerStart.title%", | |||
"when": "never", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line makes the walkthrough no-longer-an-experiment.
@@ -2997,7 +2985,6 @@ | |||
"@types/xml2js": "^0.4.8", | |||
"@typescript-eslint/eslint-plugin": "^4.28.4", | |||
"@typescript-eslint/parser": "^4.28.4", | |||
"@vscode/codicons": "^0.0.22", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Codicons package is no longer used.
}, | ||
{ | ||
"command": "vscode-docker.help.openWalkthrough", | ||
"when": "never" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's already a VSCode command to open the walkthrough so I don't see a need for this to show in the palette.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only reason we need this command defined at all is because the tree view command can't provide an argument to workbench.action.openWalkthrough
.
Fixes #3235. This removes the old start page since the walkthrough is clearly more successful and less intrusive.
I looked into replacing the tree view node for "Open Start Page" with one that would launch straight to the walkthrough, but it doesn't seem possible unfortunately.I figured it out!