-
Notifications
You must be signed in to change notification settings - Fork 524
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ | |
"onCommand:vscode-docker.debugging.initializeForDebugging", | ||
"onCommand:vscode-docker.help", | ||
"onCommand:vscode-docker.help.reportIssue", | ||
"onCommand:vscode-docker.help.openStartPage", | ||
"onCommand:vscode-docker.help.openWalkthrough", | ||
"onCommand:vscode-docker.images.build", | ||
"onCommand:vscode-docker.images.configureExplorer", | ||
"onCommand:vscode-docker.images.inspect", | ||
|
@@ -225,6 +225,10 @@ | |
{ | ||
"command": "vscode-docker.registries.azure.runFileAsTask", | ||
"when": "isWorkspaceTrusted" | ||
}, | ||
{ | ||
"command": "vscode-docker.help.openWalkthrough", | ||
"when": "never" | ||
} | ||
], | ||
"editor/context": [ | ||
|
@@ -2299,11 +2303,6 @@ | |
"type": "string", | ||
"description": "%vscode-docker.config.docker.scaffolding.templatePath%" | ||
}, | ||
"docker.showStartPage": { | ||
"type": "boolean", | ||
"default": true, | ||
"description": "%vscode-docker.config.docker.showStartPage%" | ||
}, | ||
"docker.dockerPath": { | ||
"type": "string", | ||
"default": "docker", | ||
|
@@ -2745,8 +2744,8 @@ | |
"category": "%vscode-docker.commands.category.docker%" | ||
}, | ||
{ | ||
"command": "vscode-docker.help.openStartPage", | ||
"title": "%vscode-docker.commands.help.openStartPage%", | ||
"command": "vscode-docker.help.openWalkthrough", | ||
"title": "%vscode-docker.commands.help.openWalkthrough%", | ||
"category": "%vscode-docker.commands.category.docker%" | ||
}, | ||
{ | ||
|
@@ -2838,7 +2837,6 @@ | |
{ | ||
"id": "dockerStart", | ||
"title": "%vscode-docker.walkthrough.dockerStart.title%", | ||
"when": "never", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This line makes the walkthrough no-longer-an-experiment. |
||
"featuredFor": [ | ||
"Dockerfile", | ||
"docker-compose.yml", | ||
|
@@ -2997,7 +2995,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 commentThe reason will be displayed to describe this comment to others. Learn more. Codicons package is no longer used. |
||
"@vscode/test-electron": "^1.6.1", | ||
"copy-webpack-plugin": "^9.0.1", | ||
"eslint": "^7.24.0", | ||
|
This file was deleted.
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
.