Skip to content

Commit 92384bf

Browse files
authored
Merge pull request #7812 from microsoft/main
Merge for 1.5.1
2 parents 1405554 + bbe5c42 commit 92384bf

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

Extension/CHANGELOG.md

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

3+
## Version 1.5.1: July 9, 2021
4+
### Bug Fixes
5+
* cppvsdbg Debugging becomes no-op between 1.4.1 and 1.5.0 [#7808](https://github.com/microsoft/vscode-cpptools/issues/7808)
6+
37
## Version 1.5.0: July 8, 2021
48
### New Feature
59
* Add the "Inline macro" code action. [#4183](https://github.com/microsoft/vscode-cpptools/issues/4183)

Extension/package.json

Lines changed: 5 additions & 6 deletions
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.5.0-main",
5+
"version": "1.5.1-main",
66
"publisher": "ms-vscode",
77
"icon": "LanguageCCPP_color_128x.png",
88
"readme": "README.md",
@@ -54,7 +54,6 @@
5454
"id": "cppWelcome",
5555
"title": "Get Started with C++ Development",
5656
"description": "Dive into VS Code's rich C++ development experience.",
57-
"primary": true,
5857
"when": "false",
5958
"steps": [
6059
{
@@ -3107,7 +3106,7 @@
31073106
},
31083107
{
31093108
"description": "Visual Studio Windows Debugger",
3110-
"url": "https://go.microsoft.com/fwlink/?linkid=2167487",
3109+
"url": "https://go.microsoft.com/fwlink/?linkid=2167539",
31113110
"platforms": [
31123111
"win32"
31133112
],
@@ -3118,11 +3117,11 @@
31183117
"binaries": [
31193118
"./debugAdapters/vsdbg/bin/vsdbg.exe"
31203119
],
3121-
"integrity": "BACAD3BC69C548FA5CEC0B15109C8628CB45D0F622F1F6C635A23C29B0B042E1"
3120+
"integrity": "3E71A1FDD78FBD9FD46ADEE0DF1283349363078B273CAE765978ACF1BA9C2DB1"
31223121
},
31233122
{
31243123
"description": "Visual Studio Windows ARM64 Debugger",
3125-
"url": "https://go.microsoft.com/fwlink/?linkid=2167488",
3124+
"url": "https://go.microsoft.com/fwlink/?linkid=2167648",
31263125
"platforms": [
31273126
"win32"
31283127
],
@@ -3132,7 +3131,7 @@
31323131
"binaries": [
31333132
"./debugAdapters/vsdbg/bin/vsdbg.exe"
31343133
],
3135-
"integrity": "64325BABDC9B51E7D51111788083BE91C3CC36DEC80145687D9AB6F988F9071F"
3134+
"integrity": "698BA3D45B925F998AACE9ED387ADE4927FFE569860408570FD074DD0CD56252"
31363135
}
31373136
]
31383137
}

Extension/src/nativeStrings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,5 +229,8 @@
229229
"invoking_nvcc": "Invoking nvcc with command line: {0}",
230230
"nvcc_host_compile_command_not_found": "Unable to find host compile command in output of nvcc.",
231231
"unable_to_locate_forced_include": "Unable to locate forced include: {0}",
232-
"inline_macro": "Inline macro"
232+
"inline_macro": {
233+
"text": "Inline macro",
234+
"hint": "'Inline' is a command and not an adjective, i.e. like 'Expand macro'."
235+
}
233236
}

0 commit comments

Comments
 (0)