|
1 | 1 | # vscode-powershell Release History
|
2 | 2 |
|
| 3 | +## 0.11.0 |
| 4 | +### Wednesday, March 22, 2017 |
| 5 | + |
| 6 | +#### Remotely edited files can now be saved |
| 7 | + |
| 8 | +- Added [#583](https://github.com/PowerShell/vscode-powershell/issues/583) - |
| 9 | + When you open files in a remote PowerShell session with the `psedit` command, |
| 10 | + their updated contents are now saved back to the remote machine when you save |
| 11 | + them in the editor. |
| 12 | + |
| 13 | +#### Integrated console improvements |
| 14 | + |
| 15 | +- Fixed [#533](https://github.com/PowerShell/vscode-powershell/issues/533) - |
| 16 | + The backspace key now works in the integrated console on Linux and macOS. This |
| 17 | + fix also resolves a few usability problems with the integrated console on all |
| 18 | + supported OSes. |
| 19 | + |
| 20 | +- Fixed [542](https://github.com/PowerShell/vscode-powershell/issues/542) - |
| 21 | + Get-Credential now hides keystrokes correctly on Linux and macOS. |
| 22 | + |
| 23 | +We also added some new settings ([#580](https://github.com/PowerShell/vscode-powershell/issues/580), |
| 24 | +[#588](https://github.com/PowerShell/vscode-powershell/issues/588)) to allow fine-tuning |
| 25 | +of the integrated console experience: |
| 26 | + |
| 27 | +- `powershell.startAutomatically` (default: `true`) - If true, causes PowerShell extension |
| 28 | + features to start automatically when a PowerShell file is opened. If false, the user must |
| 29 | + initiate startup using the 'PowerShell: Restart Current Session' command. IntelliSense, |
| 30 | + code navigation, integrated console, code formatting, and other features will not be |
| 31 | + enabled until the extension has been started. Most users will want to leave this |
| 32 | + setting to `true`, though it was added to save CPU cycles if you often use new VS Code |
| 33 | + instances to quickly view PowerShell files. |
| 34 | + |
| 35 | +- `powershell.integratedConsole.showOnStartup` (default: `true`) - If true, causes the |
| 36 | + integrated console to be shown automatically when the PowerShell extension is initialized. |
| 37 | + |
| 38 | +- `powershell.integratedConsole.focusConsoleOnExecute` (default: `true`) - If `true`, |
| 39 | + causes the integrated console to be focused when a script selection is run or a |
| 40 | + script file is debugged. |
| 41 | + |
| 42 | +#### Interactive debugging improvements |
| 43 | + |
| 44 | +- Added [#540](https://github.com/PowerShell/vscode-powershell/issues/540) - |
| 45 | + The scripts that you debug are now dot-sourced into the integrated console's |
| 46 | + session, allowing you to experiment with the results of your last execution. |
| 47 | + |
| 48 | +- Added [#600](https://github.com/PowerShell/vscode-powershell/issues/600) - |
| 49 | + Debugger commands like `stepInto`, `continue`, and `quit` are now available |
| 50 | + in the integrated console while debugging a script. |
| 51 | + |
| 52 | +- Fixed [#596](https://github.com/PowerShell/vscode-powershell/issues/596) - |
| 53 | + VS Code's Debug Console now warns the user when it is used while debugging |
| 54 | + a script. All command evaluation now happens through the integrated console |
| 55 | + so this message should help alleviate confusion. |
| 56 | + |
| 57 | +#### Other fixes and improvements |
| 58 | + |
| 59 | +- Fixed [#579](https://github.com/PowerShell/vscode-powershell/issues/579) - |
| 60 | + Sorting of IntelliSense results is now consistent with the PowerShell ISE |
| 61 | +- Fixed [#591](https://github.com/PowerShell/vscode-powershell/issues/591) - |
| 62 | + "Editor commands" registered with the `Register-EditorCommand` function are |
| 63 | + now sorted alphabetically by their `Name` field, causing commands to be grouped |
| 64 | + based on their source module. |
| 65 | +- Fixed [#575](https://github.com/PowerShell/vscode-powershell/issues/575) - |
| 66 | + The interactive console no longer starts up with errors in the `$Error` variable. |
| 67 | +- Fixed [#599](https://github.com/PowerShell/vscode-powershell/issues/599) - |
| 68 | + The [SSASCMDLETS module](https://msdn.microsoft.com/en-us/library/hh213141.aspx?f=255&MSPPError=-2147217396) |
| 69 | + from SQL Server Analytics Service should now load correctly in the integrated |
| 70 | + console. |
| 71 | + |
3 | 72 | ## 0.10.1
|
4 | 73 | ### Thursday, March 16, 2017
|
5 | 74 |
|
|
0 commit comments