Remove empty sections in 1.87 release notes

This commit is contained in:
Nick Trogh 2024-02-26 22:06:49 +01:00
Родитель 375e6661a0
Коммит 97603db637
2 изменённых файлов: 7 добавлений и 23 удалений

Просмотреть файл

@ -49,14 +49,14 @@ The commands **Help: List Signal Sounds** and **Help: List Signal Announcements*
Before:
```
```json
"audioCues.clear": "on | auto | off"
"accessibility.alert.clear": true | false
```
After:
```
```json
"accessibility.signals.clear": {
"sound": "auto | on | off",
"announcement" (optional): "auto | off"
@ -172,11 +172,6 @@ VS Code supports a new addition to the Debug Adapter Protocol (DAP) that allows
![Breakpoint context menu now has a 'Edit Mode...' option to change the breakpoint mode.](./images/1_87/bp-modes.png)
## Testing
## Languages
## Remote Development
The [Remote Development extensions](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.vscode-remote-extensionpack), allow you to use a [Dev Container](https://code.visualstudio.com/docs/devcontainers/containers), remote machine via SSH or [Remote Tunnels](https://code.visualstudio.com/docs/remote/tunnels), or the [Windows Subsystem for Linux](https://learn.microsoft.com/windows/wsl) (WSL) as a full-featured development environment.
@ -351,11 +346,11 @@ You can now reference test configuration files in your `launch.json` configurati
```diff
{
"type": "extensionHost",
"request": "launch",
"name": "My extension tests",
+ "testConfiguration": "${workspaceFolder}/.vscode-test.js",
- "args": ["--extensionDevelopmentPath=${workspaceFolder}"]
"type": "extensionHost",
"request": "launch",
"name": "My extension tests",
+ "testConfiguration": "${workspaceFolder}/.vscode-test.js",
- "args": ["--extensionDevelopmentPath=${workspaceFolder}"]
},
```
@ -434,9 +429,6 @@ You can review the new API [here](https://github.com/microsoft/vscode/blob/main/
This API allows extensions to provide name suggestions when user wants to rename a symbol.
## Engineering
## Notable fixes
* [184046](https://github.com/microsoft/vscode/issues/184046) Links sometimes stop working completely in terminals

Просмотреть файл

@ -1,7 +1,5 @@
# February 2024 (version 1.87)
## Core
## Dev Containers
### GitHub Copilot Chat suggested templates and features
@ -13,9 +11,3 @@ When adding Dev Container configuration files to a workspace folder (`F1` > `Dev
![GitHub Copilot Chat feature suggestion](images/1_87/devcontainer-copilot-features.png)
You need the [Dev Containers](https://code.visualstudio.com/docs/devcontainers/containers) and the [GitHub Copilot Chat](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot-chat) extension installed to enable this functionality.
## Tunnels
## SSH
## WSL