Skip to content

Commit c44c50b

Browse files
authored
Fix loc strings. (#4324)
* Fix loc strings. * Update changelog.
1 parent e2fabf9 commit c44c50b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Extension/CHANGELOG.md

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

3-
## Version 0.26.0-insiders: September 24, 2019
3+
## Version 0.26.0-insiders: September 30, 2019
44
### New Features
55
* Add localization support (translated text) via `Configure Display Language`. [#7](https://github.com/microsoft/vscode-cpptools/issues/7)
66
* Add `Rename Symbol` with a pending rename UI. [#296](https://github.com/microsoft/vscode-cpptools/issues/296), [PR #4277](https://github.com/microsoft/vscode-cpptools/pull/4277)
@@ -22,6 +22,10 @@
2222
* Fix parsing of `__has_include` (and other system macros) with gcc. [#4193](https://github.com/microsoft/vscode-cpptools/issues/4193)
2323
* Fix tag parse database not getting updated after changes occur to unopened files in the workspace. [#4211](https://github.com/microsoft/vscode-cpptools/issues/4211)
2424
* Fix `files.exclude` ending with `/` being treated like a per-file exclude (which aren't enabled by default). [#4262](https://github.com/microsoft/vscode-cpptools/issues/4262)
25+
* Fix `Find All References` incorrect results for string and comment references. [#4279](https://github.com/microsoft/vscode-cpptools/issues/4279)
26+
* Fix `Find All References` giving `Not a Reference` for constructors of templated classes. [#4345](https://github.com/microsoft/vscode-cpptools/issues/4345)
27+
* Fix squiggles appearing after a multi-edit replace or rename. [#4351](https://github.com/microsoft/vscode-cpptools/issues/4351)
28+
* Fix `gcc-x86` and `clang-x86` modes. [#4353](https://github.com/microsoft/vscode-cpptools/issues/4353)
2529

2630
## Version 0.25.1: August 28, 2019
2731
### Bug Fixes

Extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1624,9 +1624,9 @@
16241624
},
16251625
"scripts": {
16261626
"vscode:prepublish": "yarn run compile",
1627-
"compile": "yarn run precompile && webpack --mode production --vscode-nls",
1627+
"compile": "yarn run precompile && yarn run translations-generate && webpack --mode production --vscode-nls",
16281628
"compile-dev": "yarn run precompile && webpack --mode development",
1629-
"compile-watch": "yarn run precompile && webpack --mode production --vscode-nls --watch --info-verbosity verbose",
1629+
"compile-watch": "yarn run precompile && yarn run translations-generate && webpack --mode production --vscode-nls --watch --info-verbosity verbose",
16301630
"compile-dev-watch": "yarn run precompile && webpack --mode development --watch --info-verbosity verbose",
16311631
"precompile": "node ./tools/prepublish.js && gulp generate-native-strings",
16321632
"generateOptionsSchema": "node ./tools/prepublish.js && node ./out/tools/generateOptionsSchema.js",

0 commit comments

Comments
 (0)