Skip to content

Commit 5f94d5a

Browse files
committed
Release v3.3.1
This release fixes bugs introduced with the release of v3.3.0 - We've reverted to VS Code 1.45.1 due to bugs in 1.46 #1667 - Accessing code-server from a web browser on Windows has been fixed #1642 - Search in project has been fixed #1665 - The glibc requirement on static releases has been lowered to v2.19 #1656
1 parent d6b1d0c commit 5f94d5a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ For a full setup and walkthrough, please see [./doc/guide.md](./doc/guide.md).
1818
### Debian, Ubuntu
1919

2020
```bash
21-
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server_3.3.0_amd64.deb
22-
sudo dpkg -i code-server_3.3.0_amd64.deb
21+
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb
22+
sudo dpkg -i code-server_3.3.1_amd64.deb
2323
systemctl --user enable --now code-server
2424
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
2525
```
2626

2727
### Fedora, Red Hat, SUSE
2828

2929
```bash
30-
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-amd64.rpm
31-
sudo yum install -y code-server-3.3.0-amd64.rpm
30+
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-amd64.rpm
31+
sudo yum install -y code-server-3.3.1-amd64.rpm
3232
systemctl --user enable --now code-server
3333
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
3434
```
@@ -84,10 +84,10 @@ Add the code-server `bin` directory to your `$PATH` to easily execute `code-serv
8484
Here is an example script for installing and using a static `code-server` release on Linux:
8585

8686
```bash
87-
curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server-3.3.0-linux-amd64.tar.gz \
87+
curl -sSL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server-3.3.1-linux-amd64.tar.gz \
8888
| sudo tar -C /usr/local -xz
89-
sudo mv /usr/local/code-server-3.3.0-linux-amd64 /usr/local/code-server-3.3.0
90-
PATH="/usr/local/code-server-3.3.0/bin:$PATH"
89+
sudo mv /usr/local/code-server-3.3.1-linux-amd64 /usr/local/code-server-3.3.1
90+
PATH="/usr/local/code-server-3.3.1/bin:$PATH"
9191
code-server
9292
# Now visit http://127.0.0.1:8080. Your password is in ~/.config/code-server/config.yaml
9393
```

doc/guide.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ SSH into your instance and run the appropriate commands documented in [README.md
8282
Assuming Debian:
8383

8484
```bash
85-
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.0/code-server_3.3.0_amd64.deb
86-
sudo dpkg -i code-server_3.3.0_amd64.deb
85+
curl -sSOL https://github.com/cdr/code-server/releases/download/v3.3.1/code-server_3.3.1_amd64.deb
86+
sudo dpkg -i code-server_3.3.1_amd64.deb
8787
systemctl --user enable --now code-server
8888
# Now code-server is running at http://127.0.0.1:8080
8989
# Your password is in ~/.config/code-server/config.yaml

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "code-server",
33
"license": "MIT",
4-
"version": "3.3.0",
4+
"version": "3.3.1",
55
"description": "Run VS Code on a remote server.",
66
"homepage": "https://github.com/cdr/code-server",
77
"bugs": {

0 commit comments

Comments
 (0)