Archived
1
0

Update changelog for 1.90.0

This commit is contained in:
Asher 2024-06-06 15:05:12 -08:00
parent 6d9530aa6b
commit 3b467dec95
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
2 changed files with 20 additions and 1 deletions

View File

@ -22,6 +22,25 @@ Code v99.99.999
## Unreleased
Code v1.90.0
## Changed
- Updated to Code 1.90.0.
- Updated Node to 20.11.1.
## Added
- Send contents to the clipboard in the integrated terminal by piping to
`code-server --stdin-to-clipboard` or `code-server -c`.
You may want to make this an alias:
```
alias xclip="code-server --stdin-to-clipboard"
echo -n "hello world" | xclip
```
## [4.89.1](https://github.com/coder/code-server/releases/tag/v4.89.1) - 2024-04-14
Code v1.89.1

View File

@ -441,7 +441,7 @@ install_npm() {
return
fi
echoerr "Please install npm to install code-server!"
echoerr "You will need at least node v18 and a few C dependencies."
echoerr "You will need at least node v20 and a few C dependencies."
echoerr "See the docs https://coder.com/docs/code-server/latest/install#npm"
exit 1