Archived
1
0
Commit Graph

3275 Commits

Author SHA1 Message Date
c4b620d69e Merge pull request #1592 from saxc/fix-macOS
fix macOS spelling
2020-05-01 12:15:36 -04:00
c04befac68 fix macOS 2020-05-01 17:55:38 +02:00
fd36a99a4c Update vscode patch notes and bump version 3.2.0 2020-04-29 15:22:11 -05:00
4b09746c37 Merge pull request #1574 from cdr/transformer
Remove transformer file
2020-04-29 12:45:07 -05:00
870cf4f3fe Fix yarn.lock
Things got really out of whack when trying to update dependencies
earlier.
2020-04-29 12:39:42 -05:00
1ff35f177d Remove transformer file
Also remove some unused imports that were causing build errors (they
were left over from the fix that allowed installing any extension kind).
2020-04-29 12:13:44 -05:00
f3edb1cc5f Update node to latest lts (12.16.3) and update deps 2020-04-29 11:43:13 -05:00
86dc38e69f Allow extensions of any kind
This enables vscode-icons among others.
2020-04-28 17:57:56 -05:00
a2b69c8f3f Fix inconsistencies in log flags and env var
- Fix priority to match the commented behavior.
- Ignore bogus LOG_LEVEL values.
2020-04-28 17:57:55 -05:00
4cfd7c50ad Remove unused class
I managed to lose this deletion in a merge.
2020-04-28 17:57:54 -05:00
a96606e589 Fix mention of host/port in docs 2020-04-28 18:29:25 -04:00
30aefe19b5 Update issue template to mention check against regular VS Code 2020-04-28 14:50:08 -04:00
37184f456c Merge pull request #1562 from cdr/bindaddr
Deprecate --host and --port in favour of --bind-addr
2020-04-28 14:33:38 -04:00
05456024c4 Merge pull request #1561 from cdr/ratelimit
Add basic rate limiting to login endpoint
2020-04-28 14:33:18 -04:00
5accf3fe5f Add basic rate limiting to login endpoint
Closes #1320
2020-04-28 14:21:08 -04:00
2dd27b4cb8 gitignore release-upload 2020-04-28 14:19:25 -04:00
af28885ea6 Deprecate --host and --port in favour of --bind-addr 2020-04-28 14:19:24 -04:00
f21ba53609 Merge pull request #1563 from cdr/remove-ssh
Remove SSH server
2020-04-28 14:15:54 -04:00
181e0ea6c8 Remove ssh2 dep 2020-04-28 14:04:56 -04:00
6074ca275b Fill out some missing browser environment values
Pass the user data dir to the browser environment service then derive
all the paths we can based off that path like the global storage path
which the vim extension uses to store history (otherwise it gets stored
in the working directory from when code-server was spawned).

Arguably the better solution is to use the userdata scheme but that
won't work because the vim extension ignores the VS Code API.

Fixes #1551.
2020-04-27 17:15:37 -05:00
d0d5461a67 Remove SSH server
Closes #1502
2020-04-27 09:27:45 -04:00
8608ae2f08 Merge pull request #1546 from cdr/readlink-mac
Fix code-server.sh script on macOS
2020-04-22 18:01:25 -04:00
401f08db63 Fix code-server.sh script on macOS 2020-04-22 17:49:02 -04:00
caa299b60d Update VS Code to 1.44.2 2020-04-21 14:25:27 -05:00
dcde596002 Document debugging process
Closes #1465.
2020-04-20 18:55:14 -05:00
ee14db20f1 Allow data: in CSP for font-src
Closes #1530.
2020-04-20 18:10:07 -05:00
27ba64c7e4 Improve request error handling
See #1532 for more context.

- Errored JSON requests will get back the error in JSON instead of using
  the status text. This seems better to me because it seems more correct
  to utilize the response body over hijacking the status text. The
  caller is expecting JSON anyway. Worst of all I never actually set the
  status text like I thought I did so it wasn't working to begin with.
- Allow the update error to propagate for JSON update requests. It was
  caught to show the error inline instead of an error page when using
  the update page but for JSON requests it meant there was no error and
  no error code so it looked like it succeeded.
- Make errors for failed requests to GitHub less incomprehensible.
  Previously they would just be the code which is no context at all.
2020-04-17 15:16:10 -05:00
c7753f2cf9 Update docker one liner to forward UID/GID
Closes #1425
2020-04-16 14:57:41 -04:00
974d4cb8fc Allow specifying a workspace on the command line
Fixes #1535.
2020-04-16 11:56:46 -05:00
29b6115c77 Adds dev container and docs (#1499) 2020-04-14 17:22:52 -05:00
28e91ba70c Fix domain issues when setting the cookie
Fixes #1507.
3.1.1
2020-04-13 16:14:40 -05:00
5aded14b87 Merge pull request #1453 from cdr/proxy
HTTP proxy
3.1.0
2020-04-08 12:44:29 -05:00
a288351ad4 Respond when proxy errors
Otherwise the request will just hang.
2020-04-08 11:54:18 -05:00
3b39482420 Document workspace and folder behavior
Also fixed a type issue.
2020-04-07 17:49:50 -05:00
a5c35af81b Fix encoding issues with folder and workspace params
The raw value is now passed back to VS Code so it can do the parsing
with its own URI class rather than trying to parse using Node's url
module first since that has no guarantee of working the same way. It
also lets us keep the vscode-remote bit internal to VS Code.

Removed the logic that keeps trying paths until it finds a valid one
because it seems confusing to open a path and silently get some other
path instead of an error for the one you tried to open. Now it'll just
use exactly what you specified or fail trying.

Fixes #1488. The problem here was that url.parse was encoding the spaces
then the validation failed looking for a literal %20.
2020-04-07 15:18:19 -05:00
b78bdaf46e Merge pull request #1496 from cdr/report-issue-url
Send report issues to code-server repo
2020-04-06 17:29:53 -05:00
aefef5b0e8 Send report issues to code-server repo 2020-04-06 22:23:14 +00:00
ca998240a0 Fix typo in FAQ (#1489) 2020-04-03 13:09:32 -05:00
d2a31477c7 Merge pull request #1486 from cdr/update-backup
Back up old directory when updating
2020-04-02 17:28:27 -05:00
9c6581273e Show proper error when an update fails 2020-04-02 17:20:25 -05:00
d1445a8135 Back up code-server directory when updating 2020-04-02 16:21:48 -05:00
5fc00acc39 Fix incorrect reporting that an update failed 2020-04-02 14:48:15 -05:00
363cdd02df Improve proxy documentation 2020-04-02 13:40:30 -05:00
a5d1d3b90e Move proxy logic into main HTTP server
This makes the code much more internally consistent (providers just
return payloads, include the proxy provider).
2020-04-02 13:40:29 -05:00
aaa6c279a1 Use Set for proxy domains 2020-04-02 13:40:28 -05:00
498becd11f Use route.fullPath when adding trailing slash
There's no need to specially construct the path.
2020-04-02 13:40:27 -05:00
411c61fb02 Create helper for determining if route is the root 2020-04-02 13:40:26 -05:00
74a0bacdcf Rename hxxp to isHttp 2020-04-02 13:40:25 -05:00
e7e7b0ffb7 Fix redirects through subpath proxy 2020-04-02 13:40:25 -05:00
fd339a7433 Include query parameters when proxying 2020-04-02 13:40:24 -05:00