diff --git a/.gitignore b/.gitignore
index d2ee77a3..ffaa56b4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,4 +4,5 @@ dist
out
.DS_Store
release
-.cache
\ No newline at end of file
+.vscode
+.cache
diff --git a/.travis.yml b/.travis.yml
index 158ad64f..4f9878df 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,7 +2,7 @@ language: node_js
node_js:
- 8.15.0
env:
- - VSCODE_VERSION="1.33.0" MAJOR_VERSION="1" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"
+ - VSCODE_VERSION="1.33.1" MAJOR_VERSION="1" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"
matrix:
include:
- os: linux
diff --git a/Dockerfile b/Dockerfile
index 8edaf8a9..05d04022 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -24,7 +24,10 @@ RUN apt-get update && apt-get install -y \
git \
locales \
sudo \
- dumb-init
+ dumb-init \
+ vim \
+ curl \
+ wget
RUN locale-gen en_US.UTF-8
# We unfortunately cannot use update-locale because docker will not use the env variables
diff --git a/README.md b/README.md
index 00b82faa..547c336c 100644
--- a/README.md
+++ b/README.md
@@ -23,10 +23,6 @@ docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/project" codercom/c
## Getting Started
-### Hosted
-
-[Try `code-server` now](https://coder.com/signup) for free at coder.com.
-
### Docker
See docker oneliner mentioned above. Dockerfile is at [/Dockerfile](/Dockerfile).
diff --git a/build/tasks.ts b/build/tasks.ts
index b43316e1..3d7a563a 100644
--- a/build/tasks.ts
+++ b/build/tasks.ts
@@ -12,7 +12,7 @@ const libPath = path.join(__dirname, "../lib");
const vscodePath = path.join(libPath, "vscode");
const defaultExtensionsPath = path.join(libPath, "extensions");
const pkgsPath = path.join(__dirname, "../packages");
-const vscodeVersion = process.env.VSCODE_VERSION || "1.33.0";
+const vscodeVersion = process.env.VSCODE_VERSION || "1.33.1";
const vsSourceUrl = `https://codesrv-ci.cdr.sh/vstar-${vscodeVersion}.tar.gz`;
const buildServerBinary = register("build:server:binary", async (runner) => {
diff --git a/doc/admin/install/digitalocean.md b/doc/admin/install/digitalocean.md
index 1a83d7bd..1a1b7dd5 100644
--- a/doc/admin/install/digitalocean.md
+++ b/doc/admin/install/digitalocean.md
@@ -39,7 +39,7 @@ If you're just starting out, we recommend [installing code-server locally](../..
> To ensure the connection between you and your server is encrypted view our guide on [securing your setup](../../security/ssl.md)
- Finally start the code-server
```
- sudo ./code-server-linux -p 80
+ sudo ./code-server -p 80
```
> For instructions on how to keep the server running after you end your SSH session please checkout [how to use systemd](https://www.linode.com/docs/quick-answers/linux/start-service-at-boot/) to start linux based services if they are killed
- When you visit the public IP for your Digital Ocean instance, you will be greeted with this page. Code-server is using a self-signed SSL certificate for easy setup. To proceed to the IDE, click **"Advanced"**
diff --git a/doc/self-hosted/index.md b/doc/self-hosted/index.md
index 8626599c..c3ee6a99 100644
--- a/doc/self-hosted/index.md
+++ b/doc/self-hosted/index.md
@@ -62,7 +62,7 @@ OPTIONS
> Example: `code-server -h 127.0.0.1`
### Open
- You can have the server automatically open the VS Code in your browser on startup by using the `code server -o` or `code-server --open` flags
+ You can have the server automatically open the VS Code in your browser on startup by using the `code-server -o` or `code-server --open` flags
### Port
By default, code-server will use `8443` as its port. This can be changed by using `code-server -p` or `code-server --port=` followed by the port you want to use.
diff --git a/packages/app/browser/src/app.html b/packages/app/browser/src/app.html
index 99e23733..dadd6d54 100644
--- a/packages/app/browser/src/app.html
+++ b/packages/app/browser/src/app.html
@@ -7,22 +7,24 @@