From 3b467dec95d049cb2a4138300154eee2487d3db0 Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 6 Jun 2024 15:05:12 -0800 Subject: [PATCH] Update changelog for 1.90.0 --- CHANGELOG.md | 19 +++++++++++++++++++ install.sh | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a0e9cfb9..0df29ba4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/install.sh b/install.sh index 5cbd8222b..0a17cd9d2 100755 --- a/install.sh +++ b/install.sh @@ -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