Skip to content

Commit 42698a8

Browse files
committed
Update changelog.md and merge fix for #1640.
2 parents 605adb1 + 5fb96a6 commit 42698a8

File tree

3 files changed

+32
-22
lines changed

3 files changed

+32
-22
lines changed

Extension/.vscode/launch.json

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,30 @@
77
"type": "extensionHost",
88
"request": "launch",
99
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
10+
"args": [
11+
"--extensionDevelopmentPath=${workspaceFolder}"
12+
],
1113
"stopOnEntry": false,
1214
"sourceMaps": true,
13-
"outFiles": ["${workspaceRoot}/out/src"],
15+
"outFiles": [
16+
"${workspaceFolder}/out/**/*.js"
17+
],
1418
"preLaunchTask": "npm"
1519
},
1620
{
1721
"name": "Launch Tests",
1822
"type": "extensionHost",
1923
"request": "launch",
2024
"runtimeExecutable": "${execPath}",
21-
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test" ],
25+
"args": [
26+
"--extensionDevelopmentPath=${workspaceFolder}",
27+
"--extensionTestsPath=${workspaceFolder}/out/test"
28+
],
2229
"stopOnEntry": false,
2330
"sourceMaps": true,
24-
"outFiles": ["${workspaceRoot}/out/test"],
31+
"outFiles": [
32+
"${workspaceFolder}/out/test/**/*.js"
33+
],
2534
"preLaunchTask": "npm"
2635
},
2736
{
@@ -31,20 +40,20 @@
3140
"port": 5858
3241
},
3342
{
34-
"name": "Launch Integration Tests",
35-
"type": "extensionHost",
36-
"request": "launch",
37-
"runtimeExecutable": "${execPath}",
38-
"args": [
39-
"${workspaceRoot}/test/integrationTests/testAssets/SimpleCppProject",
40-
"--extensionDevelopmentPath=${workspaceRoot}",
41-
"--extensionTestsPath=${workspaceRoot}/out/test/integrationTests"
42-
],
43-
"stopOnEntry": false,
44-
"sourceMaps": true,
45-
"outFiles": [
46-
"${workspaceRoot}/out/test/**/*.js"
47-
]
48-
},
43+
"name": "Launch Integration Tests",
44+
"type": "extensionHost",
45+
"request": "launch",
46+
"runtimeExecutable": "${execPath}",
47+
"args": [
48+
"${workspaceFolder}/test/integrationTests/testAssets/SimpleCppProject",
49+
"--extensionDevelopmentPath=${workspaceFolder}",
50+
"--extensionTestsPath=${workspaceFolder}/out/test/integrationTests"
51+
],
52+
"stopOnEntry": false,
53+
"sourceMaps": true,
54+
"outFiles": [
55+
"${workspaceFolder}/out/test/**/*.js"
56+
]
57+
},
4958
]
50-
}
59+
}

Extension/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# C/C++ for Visual Studio Code Change Log
22

3-
## Version 0.16.0: March 15, 2018
3+
## Version 0.16.0-insiders: March 8, 2018
44
* Enable autocomplete for local and global scopes. [#13](https://github.com/Microsoft/vscode-cpptools/issues/13)
55
* Add a setting to define multiline comment patterns: `C_Cpp.commentContinuationPatterns`. [#1100](https://github.com/Microsoft/vscode-cpptools/issues/1100), [#1539](https://github.com/Microsoft/vscode-cpptools/issues/1539)
66
* Add a setting to disable inactive region highlighting: `C_Cpp.dimInactiveRegions`. [#1592](https://github.com/Microsoft/vscode-cpptools/issues/1592)
77
* Add `forcedInclude` configuration setting. [#852](https://github.com/Microsoft/vscode-cpptools/issues/852)
88
* Add `compilerPath`, `cStandard`, and `cppStandard` configuration settings, and query gcc/clang-based compilers for default defines. [#1293](https://github.com/Microsoft/vscode-cpptools/issues/1293), [#1251](https://github.com/Microsoft/vscode-cpptools/issues/1251), [#1448](https://github.com/Microsoft/vscode-cpptools/issues/1448), [#1465](https://github.com/Microsoft/vscode-cpptools/issues/1465), [#1484](https://github.com/Microsoft/vscode-cpptools/issues/1484)
99
* Fix text being temporarily gray when an inactive region is deleted. [Microsoft/vscode#44872](https://github.com/Microsoft/vscode/issues/44872)
1010
* Add support for `${workspaceFolder}` variable in **c_cpp_properties.json**. [#1392](https://github.com/Microsoft/vscode-cpptools/issues/1392)
11+
* Fix debugging being delayed (by cpptools.json downloading). [#1640](https://github.com/Microsoft/vscode-cpptools/issues/1640)
1112

1213
## Version 0.15.0: February 15, 2018
1314
* Add colorization for inactive regions. [#1466](https://github.com/Microsoft/vscode-cpptools/issues/1466)

Extension/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ async function finalizeExtensionActivation(): Promise<void> {
282282

283283
// Redownload cpptools.json after activation so it's not blocked.
284284
// It'll be used after the extension reloads.
285-
return cpptoolsJsonUtils.downloadCpptoolsJsonPkg();
285+
cpptoolsJsonUtils.downloadCpptoolsJsonPkg();
286286
}
287287

288288
function rewriteManifest(): Promise<void> {

0 commit comments

Comments
 (0)