Skip to content

Commit

Permalink
Update Changelog. Format package.json (#5743)
Browse files Browse the repository at this point in the history
  • Loading branch information
Colengms authored Jul 8, 2020
1 parent af8ea7c commit 196510a
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 13 deletions.
15 changes: 14 additions & 1 deletion Extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
# C/C++ for Visual Studio Code Change Log

## Version 0.29.0-insiders2: July 1, 2020
## Version 0.29.0-insiders2: July 8, 2020
### New Features
* Added support for LogMessage Breakpoints for debug type `cppdbg`. [#1013](https://github.com/microsoft/MIEngine/pull/1013)
* Switch to using the VS Code Semantic Tokens API for semantic colorization. [PR #5401](https://github.com/microsoft/vscode-cpptools/pull/5401)

### Enhancements
* Automatically add `"${default}"` to the default `includePath` in `c_cpp_properties.json` if `C_Cpp.default.includePath` is set. [#3733](https://github.com/microsoft/vscode-cpptools/issues/3733)
* Add `C_Cpp.simplifyStructuredComments` setting. [#5706](https://github.com/microsoft/vscode-cpptools/issues/5706)
* Add configuration provider logging to `C/C++: Log Diagnostics`. [#4826](https://github.com/microsoft/vscode-cpptools/issues/4826)

### Bug Fixes
* Ignore "screen size is bogus" error when debugging. [PR #5669](https://github.com/microsoft/vscode-cpptools/pull/5669)
* nukoyluoglu (@nukoyluoglu)
* Fix `compile_commands.json` sometimes not updating. [#5687](https://github.com/microsoft/vscode-cpptools/issues/5687)
* Add msys2 clang compilers to the compiler search list (previously only gcc was handled). [#5697](https://github.com/microsoft/vscode-cpptools/issues/5697)
* Fix extension getting stuck when an "@" response file that doesn't end with ".rsp" is used in `compilerArgs`. [#5731](https://github.com/microsoft/vscode-cpptools/issues/5731)
* Fix forced includes not handled properly when parsed as compiler args. [#5738](https://github.com/microsoft/vscode-cpptools/issues/5738)

## Version 0.29.0-insiders: June 24, 2020
### New Features
Expand Down
48 changes: 36 additions & 12 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1632,18 +1632,42 @@
"semanticTokenScopes": [
{
"scopes": {
"referenceType": [ "entity.name.type.class.reference" ],
"cliProperty": [ "variable.other.property.cli" ],
"genericType": [ "entity.name.type.class.generic" ],
"valueType": [ "entity.name.type.class.value" ],
"templateFunction": [ "entity.name.function.templated" ],
"templateType": [ "entity.name.type.class.templated" ],
"operatorOverload": [ "entity.name.function.operator" ],
"memberOperatorOverload": [ "entity.name.function.operator.member" ],
"newOperator": [ "keyword.operator.new" ],
"numberLiteral": [ "entity.name.operator.custom-literal.number" ],
"customLiteral": [ "entity.name.operator.custom-literal" ],
"stringLiteral": [ "entity.name.operator.custom-literal.string" ]
"referenceType": [
"entity.name.type.class.reference"
],
"cliProperty": [
"variable.other.property.cli"
],
"genericType": [
"entity.name.type.class.generic"
],
"valueType": [
"entity.name.type.class.value"
],
"templateFunction": [
"entity.name.function.templated"
],
"templateType": [
"entity.name.type.class.templated"
],
"operatorOverload": [
"entity.name.function.operator"
],
"memberOperatorOverload": [
"entity.name.function.operator.member"
],
"newOperator": [
"keyword.operator.new"
],
"numberLiteral": [
"entity.name.operator.custom-literal.number"
],
"customLiteral": [
"entity.name.operator.custom-literal"
],
"stringLiteral": [
"entity.name.operator.custom-literal.string"
]
}
}
]
Expand Down

0 comments on commit 196510a

Please sign in to comment.