This commit is contained in:
Rob Lourens 2017-01-30 21:36:10 -08:00
Родитель 05962d185e
Коммит 0c8335e1f8
2 изменённых файлов: 12 добавлений и 20 удалений

Просмотреть файл

@ -1,3 +1,13 @@
## 2.5.0
* Resolving sourcemaps from https, thanks to a PR from [kanongil](https://github.com/kanongil) - [Microsoft/vscode-chrome-debug-core#151](https://github.com/Microsoft/vscode-chrome-debug-core/pull/151)
* Add the 'pathMapping' property to handle cases when 'webRoot' is not enough to map URLs to local paths, thanks to a PR from [llgcode](https://github.com/llgcode) - [Microsoft/vscode-chrome-debug-core#147](https://github.com/Microsoft/vscode-chrome-debug-core/pull/147)
* Implemented dynamic 'skipFiles' support, which you will also see in the `node2` debug adapter. Right click on a stack frame to skip it. VS Code 1.9+ only. [Microsoft/vscode-chrome-debug-core#129](https://github.com/Microsoft/vscode-chrome-debug-core/issues/129)
* Log expandable objects in the console, instead of just static string representations of objects - [Microsoft/vscode-chrome-debug-core#145](https://github.com/Microsoft/vscode-chrome-debug-core/issues/145)
* 'step in' with a watch sometimes opens empty editor and crashes adapter - [Microsoft/vscode-chrome-debug-core#148](https://github.com/Microsoft/vscode-chrome-debug-core/issues/148)
* Show skip frame status in callstack. With VS Code 1.9, skipped frames will be grayed out. - [Microsoft/vscode-chrome-debug-core#150](https://github.com/Microsoft/vscode-chrome-debug-core/issues/150)
* Add configurationSnippets for common launch config scenarios - [#336](https://github.com/Microsoft/vscode-chrome-debug/issues/336)
* Use correct sourcemaps after the page reloads - [#152](https://github.com/Microsoft/vscode-chrome-debug/issues/152)
## 2.4.2
* Enable `sourceMaps` by default. You no longer need to set `"sourceMaps": true` in your launch config, but can set it to false to disable loading sourcemaps - [#134](https://github.com/Microsoft/vscode-chrome-debug-core/issues/134)
* Fix boolean properties showing as strings - [#312](https://github.com/Microsoft/vscode-chrome-debug/issues/312)

Просмотреть файл

@ -1,7 +1,7 @@
{
"name": "debugger-for-chrome",
"displayName": "Debugger for Chrome",
"version": "2.4.3",
"version": "2.5.0",
"icon": "images/icon.png",
"description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.",
"author": {
@ -22,7 +22,7 @@
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"vscode": "^1.0.3",
"vscode-chrome-debug-core": "3.11.7",
"vscode-chrome-debug-core": "3.12.2",
"vscode-debugadapter": "^1.16.0-pre.1",
"vscode-debugprotocol": "^1.16.0-pre.1"
},
@ -48,10 +48,6 @@
"webpack": "^2.2.0-rc.1",
"webpack-fail-plugin": "^1.0.5"
},
"main": "./out/src/extension",
"activationEvents": [
"onCommand:extension.chrome-debug.addFrameToSkipFiles"
],
"scripts": {
"build": "concurrently \"npm run build:debugadapter\" \"npm run build:test\"",
"build:debugadapter": "webpack",
@ -280,20 +276,6 @@
}
}
}
],
"menus": {
"debug/callstack/context": [
{
"command": "extension.chrome-debug.toggleSkippingFile",
"group": "navigation"
}
]
},
"commands": [
{
"command": "extension.chrome-debug.toggleSkippingFile",
"title": "Toggle skipping this file"
}
]
}
}