Skip to content
This repository has been archived by the owner on Dec 6, 2022. It is now read-only.

Commit

Permalink
3.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens committed Aug 16, 2017
1 parent e216c45 commit a742800
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"protocol": "inspector",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeArgs": [
"--preserve-symlinks"
],
"program": "${workspaceRoot}/out/bundle.js",
// "runtimeExecutable": "/Users/roblou/.nvm/versions/node/v6.5.0/bin/node",
"stopOnEntry": false,
Expand Down
3 changes: 1 addition & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"group": {
"kind": "build",
"isDefault": true
},
"isBackground": true
}
}
]
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.1.8
* Fix for old runtimes that don't support setAsyncCallStackDepth - [Microsoft/vscode-chrome-debug-core#226](https://github.com/microsoft/vscode-chrome-debug-core/issues/226)
* Download sourcemaps referenced with file:/// properly - [Microsoft/vscode-chrome-debug-core#205](https://github.com/microsoft/vscode-chrome-debug-core/issues/205)
* Fix errors when stepping too quickly - [Microsoft/vscode#27696](https://github.com/Microsoft/vscode/issues/27696)
* Fix some values not formatted correctly in the debug console - [Microsoft/vscode#32064](https://github.com/Microsoft/vscode/issues/32064)

## 3.1.7
* Fix hover on variables defined in async functions using TS transpilation - [Microsoft/vscode#31469](https://github.com/Microsoft/vscode/issues/31469)
* Decrease extension package size
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "3.1.7",
"version": "3.1.8",
"icon": "images/icon.png",
"description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
"author": {
Expand All @@ -21,7 +21,7 @@
],
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode-chrome-debug-core": "3.16.4",
"vscode-chrome-debug-core": "3.16.5",
"vscode-debugadapter": "^1.22.0"
},
"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion testapp/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "0.1.0",
"configurations": [
{
"debugServer": 4712,
// "debugServer": 4712,
"name": "test chrome",
"type": "chrome",
"request": "launch",
Expand All @@ -14,6 +14,7 @@
},
// "webRoot": "${workspaceRoot}/wwwroot",
"showAsyncStacks": true,
// "runtimeExecutable": "/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary",
"disableNetworkCache": true,
"trace": true
},
Expand Down

0 comments on commit a742800

Please sign in to comment.