Skip to content

Commit 3d38ce8

Browse files
committed
Merge pull request #114 from PowerShell/release/0.5.0
Release 0.5.0
2 parents deb6304 + 81ed521 commit 3d38ce8

File tree

3 files changed

+43
-8
lines changed

3 files changed

+43
-8
lines changed

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# vscode-powershell Release History
22

3+
## 0.5.0
4+
### Thursday, March 10, 2016
5+
6+
#### Support for PowerShell v3 and v4
7+
8+
- Support for PowerShell v3 and v4 is now complete! Note that for this release,
9+
Script Analyzer support has been disabled for PS v3 and v4 until we implement
10+
a better strategy for integrating it as a module dependency
11+
12+
#### Debugging improvements
13+
14+
- Added support for command breakpoints.
15+
16+
Hover over the Debug workspace's 'Breakpoints' list header and click the 'Add'
17+
button then type a command name (like `Write-Output`) in the new text box that
18+
appears in the list.
19+
20+
- Added support for conditional breakpoints.
21+
22+
Right click in the breakpoint margin to the left of the code editor and click
23+
'Add conditional breakpoint' then enter a PowerShell expression in the text box
24+
that appears in the editor.
25+
26+
#### Other improvements
27+
28+
- Added a preview of a possible project template for PowerShell Gallery modules in
29+
the `examples` folder. Includes a PSake build script with Pester test, clean,
30+
build, and publish tasks. See the `examples\README.md` file for instructions.
31+
Check it out and give your feedback on GitHub!
32+
- `using 'module'` now resolves relative paths correctly, removing a syntax error that
33+
previously appeared when relative paths were used
34+
- Calling `Read-Host -AsSecureString` or `Get-Credential` from the console now shows an
35+
appropriate "not supported" error message instead of crashing the language service.
36+
Support for these commands will be added in a later release.
37+
38+
#### New configuration settings
39+
40+
- `powershell.useX86Host`: If true, causes the 32-bit language service to be used on 64-bit Windows. On 32-bit Windows this setting has no effect.
41+
342
## 0.4.1
443
### Wednesday, February 17, 2016
544

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "PowerShell",
33
"displayName": "PowerShell",
4-
"version": "0.4.1",
4+
"version": "0.5.0",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {
8-
"vscode": "^0.10.8"
8+
"vscode": "^0.10.10"
99
},
1010
"license": "SEE LICENSE IN LICENSE.txt",
1111
"homepage": "https://github.com/PowerShell/vscode-powershell/blob/master/README.md",
@@ -119,7 +119,8 @@
119119
"program": "bin/Microsoft.PowerShell.EditorServices.Host.x86.exe"
120120
},
121121
"args": [
122-
"/debugAdapter"
122+
"/debugAdapter",
123+
"/logLevel:Verbose"
123124
],
124125
"configurationAttributes": {
125126
"launch": {

src/main.ts

-5
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,6 @@ export function activate(context: vscode.ExtensionContext): void {
4646
],
4747

4848
__electricCharacterSupport: {
49-
brackets: [
50-
{ tokenType: 'delimiter.curly.ts', open: '{', close: '}', isElectric: true },
51-
{ tokenType: 'delimiter.square.ts', open: '[', close: ']', isElectric: true },
52-
{ tokenType: 'delimiter.paren.ts', open: '(', close: ')', isElectric: true }
53-
],
5449
docComment: { scope: 'comment.documentation', open: '/**', lineStart: ' * ', close: ' */' }
5550
},
5651

0 commit comments

Comments
 (0)