From 58b0a9f6131891ce528e4fb453ca12acf93711e1 Mon Sep 17 00:00:00 2001 From: Rob Lourens Date: Fri, 1 Sep 2017 14:50:56 -0700 Subject: [PATCH] 3.2.1 --- CHANGELOG.md | 3 +++ package.json | 5 +++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3205d4d..2b23ac61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.2.1 +* Fix pause overlay on Chrome window - [#486](https://github.com/Microsoft/vscode-chrome-debug/issues/486) + ## 3.2.0 * Support 'Command Line API' in the console - commands like `$_` and `$(selector)` will now work. * Wait for sourcemaps to finish loading before resolving sourcemaps in stack traces. diff --git a/package.json b/package.json index 52470dd9..fe2a493e 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "debugger-for-chrome", "displayName": "Debugger for Chrome", - "version": "3.2.0", + "version": "3.2.1", "icon": "images/icon.png", "description": "Debug your JavaScript code in the Chrome browser, or any other target that supports the Chrome Debugger protocol.", "author": { @@ -21,7 +21,7 @@ ], "license": "SEE LICENSE IN LICENSE.txt", "dependencies": { - "vscode-chrome-debug-core": "3.17.0", + "vscode-chrome-debug-core": "3.17.1", "vscode-debugadapter": "^1.22.0" }, "devDependencies": { @@ -62,6 +62,7 @@ "watch:debugadapter": "webpack -w", "watch:test": "tsc -p test/tsconfig.json -w", "watch:outOfBundle": "tsc -p outOfBundle/tsconfig.json -w", + "start": "node out/bundle.js --server=4712", "test": "mocha --timeout 20000 -s 2000 -u tdd --colors \"./out/test/*.test.js\"", "intTest": "mocha --timeout 20000 -s 3500 -u tdd --colors --reporter node_modules/vscode-chrome-debug-core-testsupport/out/loggingReporter.js ./out/test/int/*.test.js", "lint": "tslint -t verbose \"src/**/*.ts\"",