diff --git a/remote-release-notes/v1_41.md b/remote-release-notes/v1_41.md index caa4607dd..a3ecc67ec 100644 --- a/remote-release-notes/v1_41.md +++ b/remote-release-notes/v1_41.md @@ -2,21 +2,6 @@ ## VS Code Remote Core -### Multi extensionKind support - -VS Code now supports running extensions defined with multiple extension kinds. - -The following table shows given the extension with extensionKind(s), where VS Code enables/installs the extension. - -| Extension Kind \ Location | Local (Only) | Remote (Only) | Both | -| :--- | :----: | :----: | :--- | -| ["ui"] | ✅ | ❌ | ✅ (Local) | -| ["workspace"] | ❌ | ✅ | ✅ (Remote) | -| ["ui", "workspace"] | ✅ | ✅ | ✅ (Local) | -| ["workspace", "ui"] | ✅ | ✅ | ✅ (Remote) | - -Please see the [documentation](https://code.visualstudio.com/api/advanced-topics/remote-extensions#incorrect-execution-location) for more information. - ### Download extensions locally You can now configure VS Code to download extensions always locally while installing extensions in a remote window. To enable this, use setting `remote.downloadExtensionsLocally`. @@ -92,4 +77,21 @@ There is a new property `"updateRemoteUserUID"` in the `devcontainer.json ` whic ### Improved provisioning and startup performance -Performance is improved for several scenarios: Creating new containers, reusing existing ones and when the VS Code window is reloaded. (See [here](https://github.com/microsoft/vscode-remote-release/issues/1823#issuecomment-557157018) for sample measurements.) \ No newline at end of file +Performance is improved for several scenarios: Creating new containers, reusing existing ones and when the VS Code window is reloaded. (See [here](https://github.com/microsoft/vscode-remote-release/issues/1823#issuecomment-557157018) for sample measurements.) + +## Remote Extension authoring + +### Multi extensionKind support + +VS Code now supports running extensions defined with multiple extension kinds. + +The following table shows given the extension with extensionKind(s), where VS Code enables/installs the extension. + +| Extension Kind \ Location | Local (Only) | Remote (Only) | Both | +| :--- | :----: | :----: | :--- | +| ["ui"] | ✅ | ❌ | ✅ (Local) | +| ["workspace"] | ❌ | ✅ | ✅ (Remote) | +| ["ui", "workspace"] | ✅ | ✅ | ✅ (Local) | +| ["workspace", "ui"] | ✅ | ✅ | ✅ (Remote) | + +Please see the [documentation](https://code.visualstudio.com/api/advanced-topics/remote-extensions#incorrect-execution-location) for more information. \ No newline at end of file