input
This commit is contained in:
Родитель
3be4e15fe1
Коммит
5203290d96
|
@ -36,6 +36,7 @@ If you find issues or have suggestions, you can enter them in the [VS Code repos
|
|||
|
||||
- [100255](https://github.com/microsoft/vscode/issues/100255): Moving a file should load the model directly with the contents it had before
|
||||
- [43819](https://github.com/microsoft/vscode/issues/43819): Windows: when deleting a folder with files that are in use, then there is no error message shown
|
||||
- [108211](https://github.com/microsoft/vscode/issues/108211): Pinned tabs need more prominence
|
||||
|
||||
## Thank you
|
||||
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:96ff16957a9f6e3c5d904306230d9fc7b0ef956bb0647c297c1f9aa7d8994646
|
||||
size 21781
|
|
@ -9,3 +9,19 @@
|
|||
Currently, if you close a Github Codespace, or even if you just reload the tab, any terminal processes that you had running will be shut down. This month, we gave VS Code the ability to persist your terminals and reconnect to them when you reopen the Codespace. Besides Codespaces, this same ability applies to all flavors of VS Code Remote - your terminals will be persisted and reconnected to across sessions.
|
||||
|
||||
We try as best we can to only connect to a terminal from one window. If a window disconnects, its terminal sessions are considered "orphaned" and will be kept alive for up to 3 hours. The next client that connects will reconnect to those terminal sessions. In some cases, it is not clear to the server whether a client has disconnected. So when a client may still be connected, the server will ping that client to ask whether it is still using a terminal, with a timeout of 4 seconds. So it can take up to 4 seconds for a terminal to be adopted by a new client.
|
||||
|
||||
## Visual Studio Code Web
|
||||
|
||||
### CDN
|
||||
|
||||
We now host the workbench web bits and built in extensions on a CDN: `https://vscodeweb.azureedge.net/<quality>/<commit>`.
|
||||
|
||||
### Workspace Notification
|
||||
|
||||
If you open a folder that contains `.code-workspace` files top level, you now see a notification asking to open it. This was always the case in VSCode for desktop and will now work in web too.
|
||||
|
||||
![Workspace Notification](images/1_51/open-workspace.png)
|
||||
|
||||
### Workbench Dispose Embedder API
|
||||
|
||||
New API was added to `dispose` a workbench that is created. This should only be used in case a Codespace is suspended and will remove any `beforeunload` listener that could show a confirmation dialog when navigating away from the page. Since the user has th reload the page anyway, this allows to reduce prompts during this flow.
|
Загрузка…
Ссылка в новой задаче