Skip to content

Commit c2bfef3

Browse files
committed
Merge pull request #93 from PowerShell/release/0.4.0
Release 0.4.0
2 parents b32b396 + 39715c1 commit c2bfef3

File tree

6 files changed

+61
-56
lines changed

6 files changed

+61
-56
lines changed

.vscodeignore

-30
Original file line numberDiff line numberDiff line change
@@ -7,33 +7,3 @@ build/**
77
bin/EditorServices.log
88
bin/DebugAdapter.log
99
bin/*.vshost.*
10-
node_modules/.bin/**
11-
node_modules/amdefine/**
12-
node_modules/balanced-match/**
13-
node_modules/brace-expansion/**
14-
node_modules/commander/**
15-
node_modules/concat-map/**
16-
node_modules/debug/**
17-
node_modules/diff/**
18-
node_modules/escape-string-regexp/**
19-
node_modules/glob/**
20-
node_modules/graceful-fs/**
21-
node_modules/growl/**
22-
node_modules/inflight/**
23-
node_modules/inherits/**
24-
node_modules/jade/**
25-
node_modules/lru-cache/**
26-
node_modules/minimatch/**
27-
node_modules/minimist/**
28-
node_modules/mkdirp/**
29-
node_modules/mocha/**
30-
node_modules/ms/**
31-
node_modules/once/**
32-
node_modules/path-is-absolute/**
33-
node_modules/sigmund/**
34-
node_modules/source-map/**
35-
node_modules/source-map-support/**
36-
node_modules/supports-color/**
37-
node_modules/typescript/**
38-
node_modules/vscode/**
39-
node_modules/wrappy/**

CHANGELOG.md

+47-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
# vscode-powershell Release History
22

3+
## 0.4.0
4+
### Monday, February 8, 2016
5+
6+
#### Debugging improvements
7+
8+
[@rkeithhill](https://github.com/rkeithhill) spent a lot of time polishing the script debugging experience for this release:
9+
10+
- You can now pass arguments to scripts in the debugger with the `args` parameter in launch.json
11+
- You can also run your script with the 32-bit debugger by changing the `type` parameter in launch.json to "PowerShell x86" (also thanks to [@adamdriscoll](https://github.com/adamdriscoll)!)
12+
- The new default PowerShell debugger configuration now launches the active file in the editor
13+
- You can also set the working directory where the script is run by setting the `cwd` parameter in launch.json to an absolute path. If you need a workspace relative path, use ${workspaceRoot} to create an absolute path e.g. `"${workspaceRoot}/modules/foo.psm1"`.
14+
15+
We recommend deleting any existing `launch.json` file you're using so that a new one will
16+
be generated with the new defaults.
17+
18+
#### Console improvements
19+
20+
- Improved PowerShell console output formatting and performance
21+
- The console prompt is now displayed after a command is executed
22+
- Command execution errors are now displayed correctly in more cases
23+
- Console output now wraps at 120 characters instead of 80 characters
24+
25+
- Added choice and input prompt support
26+
- When executing code using the 'Run Selection' command, choice and input prompts appear as VS Code UI popups
27+
- When executing code in the debugger, choice and input prompts appear in the Debug Console
28+
29+
#### New commands
30+
31+
- "Find/Install PowerShell modules from the gallery" (`Ctrl+K Ctrl+F`): Enables you to find and install modules from the PowerShell Gallery (thanks [@dfinke](https://github.com/dfinke)!)
32+
- "Open current file in PowerShell ISE" (`Ctrl+Shift+i`): Opens the current file in the PowerShell ISE (thanks [@janegilring](https://github.com/janegilring)!)
33+
34+
#### Editor improvements
35+
36+
- Path auto-completion lists show just the current directory's contents instead of the full path (which had resulted in clipped text)
37+
- Parameter auto-completion lists are now sorted in the same order as they are in PowerShell ISE where command-specific parameters preceed the common parameters
38+
- Parameter auto-completion lists show the parameter type
39+
- Command auto-completion lists show the resolved command for aliases and the path for executables
40+
- Many improvements to the PowerShell snippets, more clearly separating functional and example snippets (all of the latter are prefixed with `ex-`)
41+
- Added some additional example script files in the `examples` folder
42+
43+
#### New configuration settings
44+
45+
- `powershell.developer.editorServicesLogLevel`: configures the logging verbosity for PowerShell Editor Services. The default log level will now write less logs, improving overall performance
46+
347
## 0.3.1
448
### Thursday, December 17, 2015
549

@@ -13,9 +57,9 @@
1357
- New "Auto" scope which shows only the variables defined within the current scope
1458
- Greatly improved representation of variable values, especially for dictionaries and
1559
objects that implement the ToString() method
16-
- Added new "Expand Alias" command which resolves command aliases used in a file or
60+
- Added new "Expand Alias" command which resolves command aliases used in a file or
1761
selection and updates the source text with the resolved command names
18-
- Reduced default Script Analyzer rules to a minimal list
62+
- Reduced default Script Analyzer rules to a minimal list
1963
- Fixed a wide array of completion text replacement bugs
2064
- Improved extension upgrade experience
2165

@@ -41,4 +85,4 @@ Initial release with the following features:
4185
- Go to Definition of cmdlets and variables
4286
- Find References of cmdlets and variables
4387
- Document and workspace symbol discovery
44-
- Local script debugging and basic interactive console support
88+
- Local script debugging and basic interactive console support

LICENSE.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
Windows PowerShell for Visual Studio Code 0.1.0
1+
PowerShell for Visual Studio Code
2+
23
Copyright (c) Microsoft Corporation
34

4-
All rights reserved.
5+
All rights reserved.
56

67
MIT License
78

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@ code (Get-ChildItem $Home\.vscode\extensions\ms-vscode.PowerShell-*\examples)[-1
3838
Check out the [development documentation](docs/development.md) for more details
3939
on how to contribute to this extension!
4040

41+
## Maintainers
42+
43+
- [David Wilson](https://github.com/daviwil) - [@daviwil](http://twitter.com/daviwil)
44+
- [Keith Hill](https://github.com/rkeithhill) - [@r_keith_hill](http://twitter.com/r_keith_hill)
45+
4146
## License
4247

4348
This extension is [licensed under the MIT License](LICENSE.txt). Please see the

Third Party Notices.txt

+3-18
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This file is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Microsoft product. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise.
1+
This file is based on or incorporates material from the projects listed below (Third Party IP). The original copyright notice and the license under which Microsoft received such Third Party IP, are set forth below. Such licenses and notices are provided for informational purposes only. Microsoft licenses the Third Party IP to you under the licensing terms for the Microsoft product. Microsoft reserves all other rights not expressly granted under this agreement, whether by implication, estoppel or otherwise.
22

33
---
44

@@ -7,24 +7,9 @@ Json.NET
77
Copyright (c) 2007 James Newton-King
88
Provided for Informational Purposes Only
99

10-
MIT License
10+
MIT License
1111

12-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
13-
14-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
15-
16-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
17-
18-
---
19-
20-
AsyncEx
21-
22-
Copyright (c) 2014 StephenCleary
23-
Provided for Informational Purposes Only
24-
25-
MIT License
26-
27-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2813

2914
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3015

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "PowerShell",
33
"displayName": "PowerShell",
4-
"version": "0.3.1",
4+
"version": "0.4.0",
55
"publisher": "ms-vscode",
66
"description": "Develop PowerShell scripts in Visual Studio Code!",
77
"engines": {
8-
"vscode": "^0.10.7"
8+
"vscode": "^0.10.8"
99
},
1010
"license": "SEE LICENSE IN LICENSE.txt",
1111
"homepage": "https://github.com/PowerShell/vscode-powershell/blob/master/README.md",
@@ -62,7 +62,7 @@
6262
},
6363
{
6464
"command": "PowerShell.OpenInISE",
65-
"key": "ctrl+alt+i",
65+
"key": "ctrl+shift+i",
6666
"when": "editorTextFocus && editorLangId == 'powershell'"
6767
},
6868
{

0 commit comments

Comments
 (0)