Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added:

- Command: Added `Start with Options...` to launch Dev Proxy with interactive prompts for CLI settings
- Install: Added automated install and upgrade support for Linux using official setup scripts
- Notification: Detect outdated Dev Proxy config files in workspace and show warning when schema versions don't match installed version
- Command: `dev-proxy-toolkit.upgrade-configs` - Upgrade config files with Copilot Chat using Dev Proxy MCP tools
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Control Dev Proxy directly from VS Code via the Command Palette (`Cmd+Shift+P` /
| Command | When Available |
|---------|----------------|
| Start | Dev Proxy not running |
| Start with Options... | Dev Proxy not running |
| Stop | Dev Proxy running |
| Restart | Dev Proxy running |
| Raise mock request | Dev Proxy running |
Expand Down
12 changes: 12 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@
"icon": "$(debug-start)",
"enablement": "!isDevProxyRunning"
},
{
"command": "dev-proxy-toolkit.start-with-options",
"title": "Start with Options...",
"category": "Dev Proxy Toolkit",
"icon": "$(debug-alt)",
"enablement": "!isDevProxyRunning"
},
{
"command": "dev-proxy-toolkit.stop",
"title": "Stop",
Expand Down Expand Up @@ -120,6 +127,11 @@
"group": "navigation@1",
"when": "!activeEditorIsDirty && isDevProxyConfigFile && !isDevProxyRunning"
},
{
"command": "dev-proxy-toolkit.start-with-options",
"group": "navigation@2",
"when": "!activeEditorIsDirty && isDevProxyConfigFile && !isDevProxyRunning"
},
{
"command": "dev-proxy-toolkit.stop",
"group": "navigation@2",
Expand Down
Loading