|
1 | 1 | # vscode-powershell Release History
|
2 | 2 |
|
| 3 | +## 1.1.0 |
| 4 | +### Thursday, May 18, 2017 |
| 5 | + |
| 6 | +#### New dynamic snippet for adding comment-based help ([#748](https://github.com/PowerShell/vscode-powershell/issues/748)) |
| 7 | + |
| 8 | +We've added a really cool new feature that enables you to create comment-based |
| 9 | +help blocks with ease! When you've defined a function in a PowerShell script |
| 10 | +file, you can now start typing a comment block above the function definition |
| 11 | +and it will be completed for you: |
| 12 | + |
| 13 | + |
| 14 | + |
| 15 | +This comment block works like a snippet, allowing you to tab through the fields |
| 16 | +to quickly add documentation for the parts you care about. |
| 17 | + |
| 18 | +This is a first pass for this feature and we plan to do more with it in the future. |
| 19 | +Please feel free to [file feature requests](https://git.io/v9jnL) for anything else |
| 20 | +you'd like to see! |
| 21 | + |
| 22 | +#### Breakpoints hit in the Integrated Console now activate the debugger UI ([#619](https://github.com/PowerShell/vscode-powershell/issues/619)) |
| 23 | + |
| 24 | +In previous releases it was necessary to start the "PowerShell Interactive Session" |
| 25 | +debugging configuration before you could run a command or script from the Integrated |
| 26 | +Console and hit breakpoints in the editor UI. We've just removed this limitation! |
| 27 | + |
| 28 | +Now when you set a breakpoint using `Set-PSBreakpoint` and run a script or command in the |
| 29 | +Integrated Console, the debugger UI now gets activated: |
| 30 | + |
| 31 | + |
| 32 | + |
| 33 | +Note that breakpoints set in the Integrated Console [still do not show up](https://github.com/PowerShell/vscode-powershell/issues/660) |
| 34 | +in the editor UI; this requires [changes to VS Code](https://github.com/Microsoft/vscode/issues/8642) |
| 35 | +that we'll be contributing for their next feature release. |
| 36 | + |
| 37 | +#### Improved output when loading profile scripts ([#663](https://github.com/PowerShell/vscode-powershell/issues/663) and [#689](https://github.com/PowerShell/vscode-powershell/issues/689)) |
| 38 | + |
| 39 | +We now write the errors and Write-Output calls that occur while loading profile |
| 40 | +scripts so that it's easier to diagnose issues with your profile scripts. This |
| 41 | +fix will help us identify the things missing from the Integrated Console which |
| 42 | +cause your profile scripts to fail (like the current lack of a [PrivateData object for setting console colors](https://github.com/PowerShell/vscode-powershell/issues/571)). |
| 43 | + |
| 44 | +Please feel free to [file issues](https://git.io/v9jnL) for anything that causes |
| 45 | +your profile scripts to throw errors when they get loaded! |
| 46 | + |
| 47 | +#### Other fixes and improvements |
| 48 | + |
| 49 | +- [#751](https://github.com/PowerShell/vscode-powershell/issues/751) - |
| 50 | + Removed keybinding for the "Find PowerShell Modules from the Gallery" command |
| 51 | + because it conflicts with VS Code's default "Format Selection" keybinding. |
| 52 | + |
| 53 | +- [#739](https://github.com/PowerShell/vscode-powershell/issues/739) - |
| 54 | + Fixed wording of PowerShell extension commands to have consistent capitalization. |
| 55 | + Thanks to [@AndySchneiderDev](https://github.com/AndySchneiderDev) for the |
| 56 | + contribution! |
| 57 | + |
3 | 58 | ## 1.0.0
|
4 | 59 | ### Wednesday, May 10, 2017
|
5 | 60 |
|
|
0 commit comments