Skip to content

Commit ef339a4

Browse files
authored
Merge branch 'main' into jureid-patch-2
2 parents 91aa923 + 75289ad commit ef339a4

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Extension/CHANGELOG.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
# C/C++ for Visual Studio Code Change Log
22

3-
## Version 1.7.0-insiders2: September 30, 2021
4-
### Bug Fixes
5-
* Reduce required version of glibc to 2.17 on Linux x64 systems. [#8192](https://github.com/microsoft/vscode-cpptools/issues/8192)
6-
7-
### Enhancements
8-
* Detect IntelliSenseMode target architecture for `cl.exe` based on its path. [#8044](https://github.com/microsoft/vscode-cpptools/issues/8044)
9-
10-
## Version 1.7.0-insiders: September 27, 2021
3+
## Version 1.7.0: October 13, 2021
114
### New Features
125
* Add a command to restart IntelliSense for a specific file. [#3727](https://github.com/microsoft/vscode-cpptools/issues/3727)
136
* Add support for macOS app bundles [#6726](https://github.com/microsoft/vscode-cpptools/issues/6726)
147
* [MIEngine#1091](https://github.com/microsoft/MIEngine/pull/1091)
158
* Add support for Go To / Peek Type Definition. [#7999](https://github.com/microsoft/vscode-cpptools/issues/7999)
169

1710
### Enhancements
11+
* Detect IntelliSenseMode target architecture for `cl.exe` based on its path. [#8044](https://github.com/microsoft/vscode-cpptools/issues/8044)
1812
* In generated build tasks, add a compiler arg to cause color to be displayed in gcc/clang output in terminal. [PR #8165](https://github.com/microsoft/vscode-cpptools/pull/8165)
13+
* Add new configuration `mergeConfigurations` that enables include paths, defines, and forced includes from c_cpp_properties.json to be merged with those provided by a configuration provider.
14+
* Thomas Willson (@willson556) [PR #8174](https://github.com/microsoft/vscode-cpptools/pull/8174)
1915

2016
### Bug Fixes
2117
* Fix an issue with signature help for overloaded constructors. [#1664](https://github.com/microsoft/vscode-cpptools/issues/1664)
@@ -39,6 +35,7 @@
3935
* Fix an issue with VC 14.0 headers not being found. [#8078](https://github.com/microsoft/vscode-cpptools/issues/8078)
4036
* Fix an issue with CUDA support with `compile_commands.json`. [#8091](https://github.com/microsoft/vscode-cpptools/issues/8091)
4137
* Fix an issue with `/kernel` arg to `cl.exe` for C files. [#8158](https://github.com/microsoft/vscode-cpptools/issues/8158)
38+
* Fix an issue where inactive regions no longer dimmed after switching between open files. [#8206](https://github.com/microsoft/vscode-cpptools/issues/8206)
4239

4340
## Version 1.6.0: August 24, 2021
4441
### New Features

Extension/gulpfile.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,10 @@ const generateLocalizedJsonSchemaFiles = () => {
549549
keyPrefix = keyPrefix.replace(/\\/g, "/");
550550
let descriptionCallback = (path, value, parent) => {
551551
if (stringTable[keyPrefix + path]) {
552-
parent.description = stringTable[keyPrefix + path];
552+
if (!parent.markdownDescription)
553+
parent.description = stringTable[keyPrefix + path];
554+
else
555+
parent.markdownDescription = stringTable[keyPrefix + path];
553556
}
554557
};
555558
traverseJson(jsonTree, descriptionCallback, "");

Extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "cpptools",
33
"displayName": "C/C++",
44
"description": "C/C++ IntelliSense, debugging, and code browsing.",
5-
"version": "1.6.0-main",
5+
"version": "1.7.0-main",
66
"publisher": "ms-vscode",
77
"icon": "LanguageCCPP_color_128x.png",
88
"readme": "README.md",

0 commit comments

Comments
 (0)