mirror of
https://github.com/coder/code-server.git
synced 2026-02-07 12:59:46 -06:00
-
v4.1.0 Stable
released this
2022-03-03 14:46:17 -06:00 | 4 commits to v4.1.0 since this releasev4.1.0
Code 1.63.0
Upgrading is as easy as installing the new version over the old one. code-server
maintains all user data in ~/.local/share/code-server so that it is preserved in between
installations.Added
- Support for injecting GitHub token into Code so extensions can make use of it.
This can be done with theGITHUB_TOKENenvironment variable orgithub-auth
in the config file. - New flag
--socket-modeallows setting the mode (file permissions) of the
socket created when using--socket. - The version of Code bundled with code-server now appears when using the
--versionflag. For example:4.0.2 5cdfe74686aa73e023f8354a9a6014eb30caa7dd with Code 1.63.0.
If you have been parsing this flag for the version you might want to use
--version --jsoninstead as doing that will be more stable.
Changed
- The workspace or folder passed on the CLI will now use the same redirect
method that the last opened workspace or folder uses. This means if you use
something likecode-server /path/to/diryou will now get a query parameter
added (like so:my-domain.tld?folder=/path/to/dir), making it easier to edit
by hand and making it consistent with the last opened and menu open behaviors. - The folder/workspace query parameter no longer has encoded slashes, making
them more readable and editable by hand. This was only affecting the last
opened behavior, not opens from the menu.
Fixed
- Fix web sockets not connecting when using
--cert. - Prevent workspace state collisions when opening a workspace that shares the
same file path with another workspace on a different machine that shares the
same domain. This was causing files opened in one workspace to be "re-"opened
in the other workspace when the other workspace is opened. - Pin the Express version which should make installing from npm work again.
- Propagate signals to code-server in the Docker image which means it should
stop more quickly and gracefully. - Fix missing argon binaries in the standalone releases on arm machines.
Downloads
- Source Code (ZIP)
- Source Code (TAR.GZ)
-
code-server-4.1.0-amd64.rpm
212 MiB
-
code-server-4.1.0-arm64.rpm
210 MiB
-
code-server-4.1.0-armhfp.rpm
186 MiB
-
code-server-4.1.0-linux-amd64.tar.gz
181 MiB
-
code-server-4.1.0-linux-arm64.tar.gz
178 MiB
-
code-server-4.1.0-linux-armv7l.tar.gz
157 MiB
-
code-server-4.1.0-macos-amd64.tar.gz
175 MiB
-
code-server_4.1.0_amd64.deb
212 MiB
-
code-server_4.1.0_arm64.deb
210 MiB
-
code-server_4.1.0_armhf.deb
186 MiB
- Support for injecting GitHub token into Code so extensions can make use of it.