Search is not available for this dataset
hash
string
author
int32
committer_date
string
timezone
int64
parents
string
message
string
changes
string
language
string
f7c1ebf66716e79d595ab921e20f1871be41a348
29
2019-03-12 15:45:44-05:00
18,000
['ba37a34fa24a32f16f8d4cf1fe39cbf30a5ca1d0']
Fix moving data directory across devices
[{'old_path': 'packages/protocol/src/common/util.ts', 'new_path': 'packages/protocol/src/common/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -97,22 +97,3 @@ export const parse = (arg: string): any => { // tslint:disable-line no-any\n \n \treturn arg ? convert(JSON.parse(arg)) : arg;\n };\n-\n-export cons...
TypeScript
6c8e513e715131796e35488b4b1cb5bee36cdbd4
29
2019-03-12 15:50:41-05:00
18,000
['f7c1ebf66716e79d595ab921e20f1871be41a348']
Fill remainder of graceful-fs It's just fs. Used by fs-extra.
[{'old_path': 'packages/vscode/src/fill/graceful-fs.ts', 'new_path': 'packages/vscode/src/fill/graceful-fs.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1 +1,3 @@\n export const gracefulify = (): void => undefined;\n+\n+export * from "fs";\n'}]
TypeScript
0efae1fcb674f6e4c6be9c6e71cc83a5001eeb56
91
2019-03-12 19:19:32-04:00
18,000
['7cc7aa51aa7a74db90869905920fe3ea26ffee55']
Add error message for incorrect password. Fix issue #55 (#201)
[{'old_path': 'packages/app/browser/src/app.html', 'new_path': 'packages/app/browser/src/app.html', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,8 +8,7 @@\n \n <body>\n \t<div class="login">\n-\t\t<div class="back">\n-\t\t\t<- Back </div>\n+\t\t<div class="back"> <- Back </div>\n \t\t<h4 class="title">code-serv...
TypeScript
f9448c6cd4180c3154ccfe5a7ab326d50e32b274
100
2019-03-13 14:45:52-04:00
-3,600
['0efae1fcb674f6e4c6be9c6e71cc83a5001eeb56']
[ImgBot] Optimize images (#222) *Total -- 1,393.88kb -> 908.68kb (34.81%) /doc/assets/chrome_confirm.png -- 34.10kb -> 18.95kb (44.43%) /doc/assets/server-password-modal.png -- 96.67kb -> 58.14kb (39.86%) /doc/assets/ide.png -- 984.53kb -> 603.38kb (38.71%) /doc/assets/chrome_warning.png -- 44.25kb -> 30.03kb (3...
[{'old_path': 'doc/assets/aws_ubuntu.png', 'new_path': 'doc/assets/aws_ubuntu.png', 'type': <ModificationType.MODIFY: 5>, 'diff': 'Binary files a/doc/assets/aws_ubuntu.png and b/doc/assets/aws_ubuntu.png differ\n'}, {'old_path': 'doc/assets/chrome_confirm.png', 'new_path': 'doc/assets/chrome_confirm.png', 'type': <Modi...
TypeScript
e4ff7238951f3c424c6caa06d4c23a9310063f4e
29
2019-03-13 14:04:40-05:00
18,000
['f9448c6cd4180c3154ccfe5a7ab326d50e32b274']
Fix race with watcher & stat There is a window between when the stat is made and the result makes it back to the client where a file is created or deleted and it won't be a part of that stat. To fix it, I added a new property signaling that we got some changes since starting the stat and should run the stat again bec...
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,5 @@\n diff --git a/src/vs/base/browser/browser.ts b/src/vs/base/browser/browser.ts\n-index c09210608f..66f1934539 100644\n+index c092106..66f1934 100644\n --- a/src/vs/base/browser/browse...
TypeScript
ec2d01ab400bb8cb35234ce879c98e4b71e00261
24
2019-03-13 15:12:18-04:00
14,400
['f9448c6cd4180c3154ccfe5a7ab326d50e32b274']
Add git to docker container Install git in the docker container, proposed by #203. While it is possible that issue requires further discussion, this is just a proposal pull request. If that proposal is accepted, here's the pull request.
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,9 +1,10 @@\n FROM node:8.15.0\n \n-# Install VS Code's deps. These are the only two it seems we need.\n+# Install VS Code's deps. These are the only two it seems we need. Install git for source control.\n RUN apt-...
TypeScript
3a6e27bc87ab6dcf6fb69230fc361a6d520cf439
100
2019-03-13 15:13:24-04:00
-3,600
['ec2d01ab400bb8cb35234ce879c98e4b71e00261']
Combine apt-get in final docker image and remove cache
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,9 +23,10 @@ COPY --from=0 /src/packages/server/cli-linux-x64 /usr/local/bin/code-server\n EXPOSE 8443\n RUN apt-get update && apt-get install -y \\\n \topenssl \\\n-\tnet-tools\n-RUN apt-get install -y locales &&...
TypeScript
862c94401a25204137ba17253b35fe5fbf9156c3
28
2019-03-13 15:19:38-04:00
14,400
['3a6e27bc87ab6dcf6fb69230fc361a6d520cf439']
Dockerfile: include git Closes #221 Closes #230 Closes #203
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,10 +1,9 @@\n FROM node:8.15.0\n \n-# Install VS Code's deps. These are the only two it seems we need. Install git for source control.\n+# Install VS Code's deps. These are the only two it seems we need.\n RUN apt-...
TypeScript
2e53bb669028242c27423ecdaebde86f60a0a260
70
2019-03-14 22:29:19+00:00
0
['e3d9716607e3c463736e2be9b3d610402b9665b2']
Automatically target production for client-side builds
[{'old_path': 'scripts/webpack.client.config.js', 'new_path': 'scripts/webpack.client.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,7 +7,7 @@ const HtmlWebpackPlugin = require("html-webpack-plugin");\n // const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");\n \n const root = path.join...
TypeScript
98cad8ae69471a1f5244f7c988bc84190840f796
11
2019-03-14 18:32:18-04:00
18,000
['2e53bb669028242c27423ecdaebde86f60a0a260']
Fixed a couple of typos (#243)
[]
TypeScript
633f8dcd7270f9f5f698f44d48609aa1000ab4d5
80
2019-03-14 18:32:40-04:00
0
['98cad8ae69471a1f5244f7c988bc84190840f796']
Fixing broken syntax in the run command (#238)
[]
TypeScript
400fba7f6f029ebe85defe87889b767a82110cc6
70
2019-03-15 00:48:39-04:00
14,400
['bfaadd4e51c286420e3081554e7463d50b306d45']
Fix type import not resolving properly
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -349,6 +349,14 @@ index 58ba2e5..4fb6272 100644\n @@ -774 +774 @@ function loadCommonJSModule<T>(logService: ILogService, modulePath: string, acti\n -\t\tr = require.__$__nodeRequire<T>(modulePath...
TypeScript
3b8cd0a3cdc767207b16bbf25f6200702ec24bd1
70
2019-03-15 01:24:44-04:00
14,400
['2f27b5df8cc37d047ff93bf842c856c97ad74170']
Fix docker cmd in readme
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,7 +9,7 @@\n \n Try it out:\n ```bash\n-docker run -t -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" codercom/code-server --allow-http --no-auth\n+docker run -t -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" code...
TypeScript
f6b96e377822c19efc66a23ea3df8526683e05e9
102
2019-03-15 15:32:24-04:00
18,000
['3b8cd0a3cdc767207b16bbf25f6200702ec24bd1']
Fix security links in cloud setup guides (#260)
[{'old_path': 'doc/admin/install/aws.md', 'new_path': 'doc/admin/install/aws.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -41,7 +41,7 @@ If you're just starting out, we recommend [installing code-server locally](../..\n ```\n chmod +x code-server-linux\n ```\n- > To ensure the connection between you an...
TypeScript
6749f25bbf58c8997b71d815f2ed13b2df541bcb
63
2019-03-17 22:35:29-05:00
-32,400
['f6b96e377822c19efc66a23ea3df8526683e05e9']
Doc: fix typo (#277)
[{'old_path': 'doc/admin/install/google_cloud.md', 'new_path': 'doc/admin/install/google_cloud.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -13,7 +13,7 @@ If you're just starting out, we recommend [installing code-server locally](../..\n - Choose an appropriate machine type (we recommend 2 vCPU and 7.5 GB RAM...
TypeScript
6028a8b1a89abe8557b53b4f7e0e007a1e943f14
107
2019-03-18 10:44:08-05:00
14,400
['6749f25bbf58c8997b71d815f2ed13b2df541bcb']
Add support for Kubernetes by deploying code-server. Also includes AWS (#146) example which persists data to a Persistent Volume / Claim. Signed-off-by: Steve Sloka <slokas@vmware.com>
[{'old_path': None, 'new_path': 'deployment/aws/deployment.yaml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,74 @@\n+apiVersion: v1\n+kind: Namespace\n+metadata:\n+ name: code-server\n+---\n+apiVersion: v1\n+kind: Service\n+metadata:\n+ name: code-server\n+ namespace: code-server\n+spec:\n+ ports:\n+ - por...
TypeScript
91a98b8082e03b5aa78d680f5f9cc998bc168acf
88
2019-03-18 10:45:20-05:00
-12,600
['6028a8b1a89abe8557b53b4f7e0e007a1e943f14']
Fixed documentation download links based on latest version (#130) * Fixed documentation based on latest release * Fixed google-cloud documentation steps order * Edited docs based on the latest release versions * Make docs more dynamic based on Releases * Changed ordered list to unordered list
[{'old_path': 'doc/admin/install/aws.md', 'new_path': 'doc/admin/install/aws.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -32,14 +32,26 @@ If you\'re just starting out, we recommend [installing code-server locally](../..\n ```\n >example: `ssh -i "/Users/John/Downloads/TestInstance.pem" ubuntu@ec2-3-45-67...
TypeScript
277c6cb690bb3ec9b80d04d145cf8419be87400a
70
2019-03-18 21:05:21-04:00
14,400
['91a98b8082e03b5aa78d680f5f9cc998bc168acf']
Fix failure to resolve arrays error
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -350,13 +350,16 @@ index 58ba2e5..4fb6272 100644\n -\t\tr = require.__$__nodeRequire<T>(modulePath);\n +\t\tr = (global as any).nativeNodeRequire(modulePath);\n diff --git a/src/vs/workbench/api/n...
TypeScript
ffc47054dd95a72cfac72242c1970e450f58cd0d
39
2019-03-19 12:59:50-05:00
-28,800
['21690453775629a97627d37ee8703ab5718ebe35']
update nginx config (#288) should add one line `proxy_set_header Accept-Encoding gzip; ` or you may get a `Cannot GET /` error.
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -85,6 +85,7 @@ OPTIONS\n proxy_pass http://localhost:8443/;\n proxy_set_header Upgrade $http_upgrade;\n proxy_set_header Connection upgrade;\n+ proxy_set...
TypeScript
70219d1071824768cab5fb07abb566727002d8fc
40
2019-03-20 09:24:07-05:00
-28,800
['e9e0bf7d8453d6bb5449df90da07333386b8d954']
doc: add CrOS install guide (#225) * doc: add CrOS install guide Signed-off-by: Hikari <enra@sayonika.moe> * doc: change occurences of index to install guide Signed-off-by: Hikari <enra@sayonika.moe> * doc: add penguin.linux.test as alternative endpoint Signed-off-by: Hikari <enra@sayonika.moe> * doc...
[{'old_path': 'doc/assets/cros.png', 'new_path': 'doc/assets/cros.png', 'type': <ModificationType.ADD: 1>, 'diff': 'Binary files /dev/null and b/doc/assets/cros.png differ\n'}, {'old_path': None, 'new_path': 'doc/self-hosted/cros-install.md', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,53 @@\n+# Installng co...
TypeScript
ce73bc58e5191101c2bc904333244a25ee61c86e
86
2019-03-21 09:39:34-05:00
18,000
['70219d1071824768cab5fb07abb566727002d8fc']
Capitalized first letters to be consistent (#304) In addition to capitalizing, I also reworded a sentence for improved grammar.
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@\n \n [code-server](https://coder.com) is used by developers at Azure, Google, Reddit, and more to give them access to VS Code in the browser.\n \n-## Quickstart guide\n+## Qui...
TypeScript
75435be9491494089f2b8ad9e815287894b101f8
38
2019-03-21 13:49:27-05:00
-3,600
['ce73bc58e5191101c2bc904333244a25ee61c86e']
Update index.md (#297) Added Apache reverse proxy example configuration
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -90,5 +90,29 @@ OPTIONS\n }\n ```\n \n+ ### Apache Reverse Proxy\n+ Example of https virtualhost configuration for Apache as a reverse proxy. Please also pass --allow-http on code...
TypeScript
18f395b853cb315f965ea0b2594a595b641f199f
44
2019-03-21 14:04:09-05:00
18,000
['75435be9491494089f2b8ad9e815287894b101f8']
Fix install from VSIX for TAR and ZIP formats (#245) * Fix install from VSIX for TAR and ZIP formats * Parse TAR before ZIP, when installing from VSIX
[{'old_path': 'packages/package.json', 'new_path': 'packages/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -12,6 +12,11 @@\n "xmlhttprequest": "1.8.0"\n },\n "jest": {\n+ "globals": {\n+ "ts-jest": {\n+ "diagnostics": false\n+ }\n+ },\n "moduleFileExtensions": [\n ...
TypeScript
80c19878e0c65e96c335d4270933e6d95c8a309e
53
2019-03-22 14:58:13-05:00
0
['18f395b853cb315f965ea0b2594a595b641f199f']
Add note about extensions needing to be OSS (#113) * Add note about extensions needing to be OSS * Update README.md * Update README.md
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -62,6 +62,10 @@ How to [secure your setup](/doc/security/ssl.md).\n - Electron and Chrome OS applications to bridge the gap between local<->remote.\n - Run VS Code unit tests against our builds to ensure features work ...
TypeScript
cdc40d36ff183a197423c48a74c0475d99cb2ef8
44
2019-03-22 16:58:37-05:00
18,000
['80c19878e0c65e96c335d4270933e6d95c8a309e']
Ensure workspace configPath is a valid URI object (#317)
[{'old_path': 'packages/vscode/src/workbench.ts', 'new_path': 'packages/vscode/src/workbench.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -185,7 +185,13 @@ export class Workbench {\n \t\t\t_: [],\n \t\t};\n \t\tif ((workspace as IWorkspaceIdentifier).configPath) {\n-\t\t\tconfig.workspace = workspace as IWork...
TypeScript
d16c6aeb30004e2862012dcd75592c27095996ba
29
2019-03-25 18:31:43-05:00
18,000
['cdc40d36ff183a197423c48a74c0475d99cb2ef8']
Fix port scanner when netstat isn't available - It logs the error now. - For some reason when there is an error node-netstat runs the callback twice. That resulted in us scheduling an exponentially growing number of calls which ate up all the CPU (and probably memory eventually). For now, opted to dispose when th...
[{'old_path': 'packages/server/src/portScanner.ts', 'new_path': 'packages/server/src/portScanner.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,7 @@\n //@ts-ignore\n import * as netstat from "node-netstat";\n import { Event, Emitter } from "@coder/events";\n+import { logger } from "@coder/logger";\n \n ...
TypeScript
dc2253e71862fbd557c2b6d29fa0db73b580be5f
29
2019-03-26 13:01:25-05:00
18,000
['d16c6aeb30004e2862012dcd75592c27095996ba']
Refactor evaluations (#285) * Replace evaluations with proxies and messages * Return proxies synchronously Otherwise events can be lost. * Ensure events cannot be missed * Refactor remaining fills * Use more up-to-date version of util For callbackify. * Wait for dispose to come back before removin...
[{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -33,50 +33,12 @@ const buildServerBinaryPackage = register("build:server:binary:package", async (\n \t\tthrow new Error("Cannot build binary without server bundle built");\n \t}\n \tawait buildServerBinaryCop...
TypeScript
f058f90340fd0d4b2bfd3a46ea714805415125b6
70
2019-03-26 14:52:33-04:00
14,400
['ca4b0346cb94f5ecad53c7e493e4dae33a7e822f']
Place all envs in one line
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,9 +2,7 @@ language: node_js\n node_js:\n - 8.15.0\n env:\n- - VSCODE_VERSION="1.32.0"\n- - MAJOR_VERSION="1"\n- - VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"\n+ - VSCODE_VERSION="1.32.0"...
TypeScript
1697cc32a335b0510725621be6023cf2ec7cc497
70
2019-03-26 16:21:03-04:00
14,400
['f058f90340fd0d4b2bfd3a46ea714805415125b6']
Use commander instead of oclif
[{'old_path': 'packages/server/package.json', 'new_path': 'packages/server/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,9 +10,7 @@\n \t},\n \t"dependencies": {\n \t\t"@coder/nbin": "^1.0.0",\n-\t\t"@oclif/config": "^1.10.4",\n-\t\t"@oclif/errors": "^1.2.2",\n-\t\t"@oclif/plugin-help": "^2.1.4",\...
TypeScript
83aa952de262f72e6baba9c4b822b59510fe3c61
70
2019-03-26 22:07:36-04:00
14,400
['e0d33f2399e8ca56d7dca7d659993ce0afe24fb2']
Update nbin version. Fixes extensions
[{'old_path': 'packages/server/package.json', 'new_path': 'packages/server/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,7 +9,7 @@\n \t\t"build:binary": "ts-node scripts/nbin.ts"\n \t},\n \t"dependencies": {\n-\t\t"@coder/nbin": "^1.0.3",\n+\t\t"@coder/nbin": "^1.0.4",\n \t\t"commander": "^2.19.0"...
TypeScript
def4104c5346290f549cdd37c1fb9278eddc6046
97
2019-03-27 10:23:23-05:00
-3,600
['4eb5331ddcde864e6fe73dbab955b0a720f58654']
Changed executable name (#353) code-server-luni should be only code-server
[{'old_path': 'doc/admin/install/aws.md', 'new_path': 'doc/admin/install/aws.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -56,7 +56,7 @@ If you\'re just starting out, we recommend [installing code-server locally](../..\n > To ensure the connection between you and your server is encrypted view our guide on [...
TypeScript
3331f9b28d0e784d4884f25eb3a980047b412929
18
2019-03-27 10:34:34-05:00
-46,800
['def4104c5346290f549cdd37c1fb9278eddc6046']
Update Dockerfile (#327)
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -30,4 +30,5 @@ RUN locale-gen en_US.UTF-8\n # We unfortunately cannot use update-locale because docker will not use the env variables\n # configured in /etc/default/locale so we need to set it manually.\n ENV LANG=en...
TypeScript
c7ae12c2edc777a9d5e245449f86066c225507fc
99
2019-03-27 10:35:00-05:00
-32,400
['3331f9b28d0e784d4884f25eb3a980047b412929']
Add .node-version file (#272)
[{'old_path': None, 'new_path': '.node-version', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1 @@\n+8.15.0\n'}]
TypeScript
38a0706b18dfd2cc1328410e452f2cd4f8a2a1f4
30
2019-03-27 10:36:03-05:00
-3,600
['c7ae12c2edc777a9d5e245449f86066c225507fc']
Add example with letsencrypt certificates * updated the download link * added example with letsencrypt certificates
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -71,6 +71,7 @@ OPTIONS\n ### Cert and Cert Key\n To encrypt the traffic between the browser and server use `code-server --cert=` followed by the path to your `.cer` file. Additionally,...
TypeScript
259095eae22fd7e57b920be30484929fb357e1d0
29
2019-03-27 17:04:19-05:00
18,000
['38a0706b18dfd2cc1328410e452f2cd4f8a2a1f4']
Watcher and initial load performance improvements (#357) * Set low CPU priority on watcher Fixes #247. * Batch stat and readdir calls * Fix fs.exists callbackify seems to always adds an error as the first argument. Opted to just use the promise for this one. * Batch lstat * Add maximum time for flus...
[{'old_path': 'packages/protocol/src/browser/modules/fs.ts', 'new_path': 'packages/protocol/src/browser/modules/fs.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,12 +1,42 @@\n import * as fs from "fs";\n import { callbackify } from "util";\n-import { ClientProxy } from "../../common/proxy";\n+import { Client...
TypeScript
6105bba0a46faab89d13888ea24b3fd62610a320
19
2019-03-27 17:05:23-05:00
14,400
['259095eae22fd7e57b920be30484929fb357e1d0']
Add higher quality Discord badge and add a link to the license badge. (#364) * Add higher quality Discord badge and add link to license. * Use @grant's much better version :)
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,8 +2,8 @@\n \n [!["Open Issues"](https://img.shields.io/github/issues-raw/codercom/code-server.svg)](https://github.com/codercom/code-server/issues)\n [!["Latest Release"](https://img.shields.io/github/release/coder...
TypeScript
a4cca6b759c49fe682fd6a65f26c529d1b8595c0
65
2019-03-27 17:05:44-05:00
18,000
['6105bba0a46faab89d13888ea24b3fd62610a320']
Add information about release notifications/gif (#355) * Add information about release notifications/gif * Remove unecessary space * Add smaller gif * Add even smaller gif * Trim time in new gif * Cropped a tad more * Fix weird aligning
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -57,7 +57,8 @@ How to [secure your setup](/doc/security/ssl.md).\n - Creating custom VS Code extensions and debugging them doesn't work.\n \n ### Future\n-\n+- **Stay up to date!** Get notified about new releases of co...
TypeScript
03ad2a17b2e516848064e4ec9eacff9799fc286d
29
2019-03-28 17:59:49-05:00
18,000
['a4cca6b759c49fe682fd6a65f26c529d1b8595c0']
Handle disconnects (#363) * Make proxies decide how to handle disconnects * Connect to a new terminal instance on disconnect * Use our retry for the watcher * Specify method when proxy doesn't exist * Don't error when closing/killing disconnected proxy * Specify proxy ID when a method doesn't exist *...
[{'old_path': 'packages/protocol/src/browser/client.ts', 'new_path': 'packages/protocol/src/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -134,14 +134,8 @@ export class Client {\n \t\t\tmessage.setResponse(stringify(error));\n \t\t\tthis.failEmitter.emit(message);\n \n-\t\t\tthis.eventEmitter.em...
TypeScript
91deaece4730f8e76162545195512e6b6fff98d6
29
2019-03-29 16:14:28-05:00
18,000
['03ad2a17b2e516848064e4ec9eacff9799fc286d']
Reduce frequency of port scanning
[{'old_path': 'packages/server/src/portScanner.ts', 'new_path': 'packages/server/src/portScanner.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -17,7 +17,7 @@ export interface PortScanner {\n * Will scan local ports and emit events when ports are added or removed.\n * Currently only scans TCP ports.\n */\n-e...
TypeScript
48870784230c736ede5b021e62b771fe7e377026
29
2019-03-29 18:44:04-05:00
18,000
['91deaece4730f8e76162545195512e6b6fff98d6']
Fix typescript tslint plugin tslint-language-service is the deprecated version which we don't actually even have listed in the package.json. typescript-tslint-plugin is the new version.
[{'old_path': 'tsconfig.json', 'new_path': 'tsconfig.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -14,7 +14,7 @@\n \t\t"importHelpers": true,\n \t\t"plugins": [\n \t\t\t{\n-\t\t\t\t"name": "tslint-language-service"\n+\t\t\t\t"name": "typescript-tslint-plugin"\n \t\t\t}\n \t\t],\n \t\t"paths": {\n'}]
TypeScript
3fec7f432c7aaaff2289349e3bd284d8b8252460
54
2019-03-31 13:15:33-05:00
25,200
['48870784230c736ede5b021e62b771fe7e377026']
doc: fixed name of binary to match latest release (#386)
[{'old_path': 'doc/admin/install/google_cloud.md', 'new_path': 'doc/admin/install/google_cloud.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -54,7 +54,7 @@ chmod +x code-server\n \n - Start the code-server\n ```\n-sudo ./code-server-linux -p 80\n+sudo ./code-server -p 80\n ```\n \n > For instructions on how to...
TypeScript
033ef151ca1aba78516b69a26a5dcad1dd385b9b
29
2019-04-01 13:31:34-05:00
18,000
['3fec7f432c7aaaff2289349e3bd284d8b8252460']
Improve retry Registering returns an instance that lets you retry and recover without needing to keep passing the name everywhere. Also refactored the shared process a little to make better use of the retry and downgraded stderr messages to warnings because they aren't critical.
[{'old_path': 'packages/ide/src/fill/client.ts', 'new_path': 'packages/ide/src/fill/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,7 +11,7 @@ class WebsocketConnection implements ReadWriteConnection {\n \tprivate activeSocket: WebSocket | undefined;\n \tprivate readonly messageBuffer = <Uint8Array[]>...
TypeScript
7481395353fccf332688118973fed23aa8a32ffe
85
2019-04-01 14:15:43-05:00
-10,800
['033ef151ca1aba78516b69a26a5dcad1dd385b9b']
Changed "lib" to "/lib" at .gitignore (#395)
[{'old_path': '.gitignore', 'new_path': '.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,4 @@\n-lib\n+/lib\n node_modules\n dist\n out\n'}]
TypeScript
97f5b07003e541c7561f219622d5279456416059
55
2019-04-01 15:20:39-05:00
18,000
['7481395353fccf332688118973fed23aa8a32ffe']
Fix icons on safari when using cookie authentication (#398) Cookie's are not sent with url's in -webkit-mask so we embed the svg's directly in the css.
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -42,6 +42,7 @@\n "typescript": "^3.2.2",\n "typescript-tslint-plugin": "^0.2.1",\n "uglifyjs-webpack-plugin": "^2.1.1",\n+ "url-loader": "^1.1.2",\n "util": "^0.11.1",\n "webpack": "^4.28.4...
TypeScript
3a672d725a0c1f838d54127646475cb305c851bb
29
2019-04-02 17:44:28-05:00
18,000
['f484781693eafa947054791ab2a46ca81ade2cb1']
Convert fully to protobuf (was partially JSON) (#402) * Convert fully to protobuf (was partially JSON) * Handle all floating promises * Remove stringified proto from trace logging It wasn't proving to be very useful.
[{'old_path': 'packages/protocol/src/browser/client.ts', 'new_path': 'packages/protocol/src/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,8 +5,8 @@ import { Emitter } from "@coder/events";\n import { logger, field } from "@coder/logger";\n import { ReadWriteConnection, InitData, SharedProcess...
TypeScript
dcf409aecbd7e11d270806fe9b5ab56ac860ee3b
70
2019-04-03 14:24:00-05:00
18,000
['2683b7c734f67f189079eb253b207f94c3501a01']
Improve CI caching (#416) * Adjust linux distro to ubuntu 14.04 * Cache lib directory for speedy builds * Fix path linking for default extensions * Update reset * Reset to head * Improve caching * Still run yarn in CI * Update yarn before install * Increase cache timeout * Install vscode fro...
[{'old_path': '.gitignore', 'new_path': '.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,3 +4,4 @@ dist\n out\n .DS_Store\n release\n+.cache\n\\ No newline at end of file\n'}, {'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,11 +6,12 @@ env:\n...
TypeScript
217515344e43c17d38ddb925ef6b0d3a55765ac5
65
2019-04-03 15:50:52-05:00
18,000
['dcf409aecbd7e11d270806fe9b5ab56ac860ee3b']
Add port in use message (#418) * Add clear error message if port is in use * Add bold function for text/numbers * remove unused dependency: * remove unused line break * Change logger message * Use NodeJS.ErrnoException type * Add back check for error code
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -38,6 +38,10 @@ Error.stackTraceLimit = Infinity;\n if (isCli) {\n \trequire("nbin").shimNativeFs(buildDir);\n }\n+// Makes strings or numbers bold in stdout\n+const bold = (text: stri...
TypeScript
c607015a26bb2dfde3532cb63ea6b825bb436e7e
29
2019-04-03 16:08:15-05:00
18,000
['217515344e43c17d38ddb925ef6b0d3a55765ac5']
Initialize backup service (#419) - Fixes #399 - Fixes #332
[{'old_path': 'packages/vscode/src/workbench.ts', 'new_path': 'packages/vscode/src/workbench.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,6 @@\n import * as os from "os";\n import { IProgress, INotificationHandle } from "@coder/ide";\n+import { logger } from "@coder/logger";\n import { client } from "...
TypeScript
4af84fcaf62520c6128ade8c65dc2db92c7d8877
70
2019-04-03 17:07:47-05:00
18,000
['c607015a26bb2dfde3532cb63ea6b825bb436e7e']
Add flags for customizing user data dir and extensions dir (#420) * Add flags for customizing extensions directory * Update @coder/nbin
[{'old_path': 'packages/protocol/src/browser/client.ts', 'new_path': 'packages/protocol/src/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -271,6 +271,7 @@ export class Client {\n \t\t\t\t\tworkingDirectory: init.getWorkingDirectory(),\n \t\t\t\t\tos: protoToOperatingSystem(init.getOperatingSyste...
TypeScript
e12fcd3a0d926ce70a153daf739d5273dbe7c0ca
29
2019-04-03 17:32:20-05:00
18,000
['4af84fcaf62520c6128ade8c65dc2db92c7d8877']
Fix error when shared process exits with null
[{'old_path': 'packages/server/src/vscode/sharedProcess.ts', 'new_path': 'packages/server/src/vscode/sharedProcess.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -115,8 +115,10 @@ export class SharedProcess {\n \t\tthis.activeProcess = activeProcess;\n \n \t\tawait new Promise((resolve, reject): void => {\n-\t\...
TypeScript
09a02eb9e921946118dc8a427546541e49a0bc67
29
2019-04-04 13:33:49-05:00
18,000
['2bd7281fa0303f14776d13bd5602f2a91b302dc0']
Build for production in Docker
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -13,7 +13,7 @@ COPY . .\n \n # In the future, we can use https://github.com/yarnpkg/rfcs/pull/53 to make yarn use the node_modules\n # directly which should be fast as it is slow because it populates its own cache ev...
TypeScript
3c1dfb11700c83d66cb523dbd045972be2262a60
70
2019-04-04 17:13:54-04:00
14,400
['2bd7281fa0303f14776d13bd5602f2a91b302dc0']
Update @coder/nbin. Fixes UI state saves
[{'old_path': 'packages/server/package.json', 'new_path': 'packages/server/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,7 +9,7 @@\n \t\t"build:binary": "ts-node scripts/nbin.ts"\n \t},\n \t"dependencies": {\n-\t\t"@coder/nbin": "^1.0.6",\n+\t\t"@coder/nbin": "^1.0.7",\n \t\t"commander": "^2.19.0"...
TypeScript
e73eb742088e4a6fc5dabd3e6f67e4e6d6034099
29
2019-04-04 18:24:53-05:00
18,000
['278c59b920c6bf0c6230aae1585688abc885b9cc']
Fix sending dates through the protocol Fixes #253.
[{'old_path': 'packages/protocol/src/browser/modules/fs.ts', 'new_path': 'packages/protocol/src/browser/modules/fs.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -317,17 +317,7 @@ export class FsModule {\n }\n \n class Stats implements fs.Stats {\n-\tpublic readonly atime: Date;\n-\tpublic readonly mtime: Date;...
TypeScript
15948c1af62d1bd17a1bd304d6ee6013a168ace3
40
2019-04-04 18:41:45-05:00
0
['5a1eb858a9caa254c205e4c71d6f4f5bcc436038']
feat: user-mode docker Signed-off-by: Hikari <enra@sayonika.moe>
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -17,18 +17,28 @@ RUN yarn && NODE_ENV=production yarn task build:server:binary\n \n # We deploy with ubuntu so that devs have a familiar environment.\n FROM ubuntu:18.10\n-WORKDIR /root/project\n-COPY --from=0 /src/p...
TypeScript
a95019f38d644a8aec0cd33ab176da8760ceeb2c
40
2019-04-04 18:41:45-05:00
-28,800
['15948c1af62d1bd17a1bd304d6ee6013a168ace3']
fix: slap adduser into another RUN im abusing the word slap today please help me
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -27,8 +27,9 @@ RUN apt-get update && apt-get install -y \\\n sudo \\\n \topenssl \\\n \tlocales \\\n-\tnet-tools && \\\n-\tadduser --disabled-password --ingroup sudo --gecos \'\' coder && \\\n+\tnet-tools;\n+\t\n...
TypeScript
ebac84899e71d04a313f9ce1f94dfe9171aae249
28
2019-04-04 18:41:45-05:00
18,000
['0b7a090a7372394624de55c2bf34bd2a805657a4']
Significantly improve the Dockerfile - Adds dumb-init so closes #403, closes #361, closes #383 - User mode docker so closes #192, closes #65 - Uses latest docker ubuntu instead of 18.10 which is the rolling tag so closes #404 Thanks to @RichardMcSorley and @sr229
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -16,17 +16,30 @@ COPY . .\n RUN yarn && NODE_ENV=production yarn task build:server:binary\n \n # We deploy with ubuntu so that devs have a familiar environment.\n-FROM ubuntu:18.10\n+FROM ubuntu:18.04\n \n RUN apt-ge...
TypeScript
a1136b3a02caaff67a86662e837864e0548540b6
29
2019-04-05 18:49:29-05:00
18,000
['4dd74b31b906bd706c2f97256295e3aa928ff9d4']
Update VS Code to 1.33.0 (#445) * Update VS Code to 1.33.0 * Fix slow file tree * Fix WindowsService fill * Provide `off` on event listeners * Fix webview * Fix double title bar and missing preferences on Mac * Bump VS Code version in Travis config * Fix black dialog text (again) * Fix shared p...
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@ language: node_js\n node_js:\n - 8.15.0\n env:\n- - VSCODE_VERSION="1.32.0" MAJOR_VERSION="1" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"\n+ - VSCODE_VERSION="1.33.0" MAJOR_VERSI...
TypeScript
6361635b55e056cb03ed41bbe7f4eb922bc9c26f
29
2019-04-08 11:03:33-05:00
18,000
['d2da4cfc437734e3555c15cf4043f6208ee21fcb']
Move backup service init to the shared process Since this is where it attempts to read it, this should solve the JSON errors for good.
[{'old_path': 'packages/vscode/src/workbench.ts', 'new_path': 'packages/vscode/src/workbench.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,8 +29,6 @@ import { LogLevel } from "vs/platform/log/common/log";\n import { RawContextKey, IContextKeyService } from "vs/platform/contextkey/common/contextkey";\n impo...
TypeScript
bbd8b27fc7b0e8bbcdc000744638d9a5ff768b6a
29
2019-04-08 11:15:25-05:00
18,000
['6361635b55e056cb03ed41bbe7f4eb922bc9c26f']
Explicitly mention if netstat isn't installed; downgrade to warning
[{'old_path': 'packages/server/src/portScanner.ts', 'new_path': 'packages/server/src/portScanner.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -79,7 +79,11 @@ export const createPortScanner = (scanInterval: number = 5000): PortScanner => {\n \t\tlogger.trace("scanning ports");\n \t\tscan((error) => {\n \t\t\ti...
TypeScript
3fae68bbab45fa99e491a48d2de647cec0a69d35
70
2019-04-09 12:24:53-04:00
14,400
['a2f20aa25c3a7ab30d386318d8c02d6a97f8b312']
Add storage save to ide-api
[{'old_path': 'packages/ide-api/api.d.ts', 'new_path': 'packages/ide-api/api.d.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -136,12 +136,17 @@ interface ICommandRegistry {\n \tregisterCommand(command: ICommand): IDisposable;\n }\n \n+interface IStorageService {\n+\tsave(): Promise<void>;\n+}\n+\n declare name...
TypeScript
4b217fba0095f4c68e6fc3e407f500c40c58c616
82
2019-04-10 20:07:53-05:00
-28,800
['3fae68bbab45fa99e491a48d2de647cec0a69d35']
Feature/relative url (#307) * resrouce relative url * add url pathname for require.toUrl (fix webview url) * rest resrouce relative url * fix resource url * ignore .vscode
[{'old_path': '.gitignore', 'new_path': '.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,4 +4,5 @@ dist\n out\n .DS_Store\n release\n+.vscode\n .cache\n'}, {'old_path': 'packages/ide/src/fill/electron.ts', 'new_path': 'packages/ide/src/fill/electron.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '...
TypeScript
2785e2219ad3da8d83074390432818e3ff070263
70
2019-04-11 02:11:51+00:00
0
['4b217fba0095f4c68e6fc3e407f500c40c58c616']
Remove hosted from the readme
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,10 +23,6 @@ docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/project" codercom/c\n \n ## Getting Started\n \n-### Hosted\n-\n-[Try `code-server` now](https://coder.com/signup) for free at coder.com.\n-\...
TypeScript
7047be859cd51eadfcc2c73f8a30532ce023c123
29
2019-04-11 14:55:06-05:00
18,000
['2785e2219ad3da8d83074390432818e3ff070263']
Fix some open file/folder issues - "Open folder" now says "open folder" instead of "open file" - "Open folder" won't allow you to open files - "Open file" won't allow you to open directories Fixes #249.
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -200,7 +200,13 @@ const bold = (text: string | number): string | number => {\n \t\t\t\tconst webpackConfig = require(path.resolve(__dirname, "..", "..", "web", "webpack.config.js"));\n...
TypeScript
8f62b2bff2e1bb24f39f2fdd247e9f02d778117d
29
2019-04-11 14:58:29-05:00
18,000
['7047be859cd51eadfcc2c73f8a30532ce023c123']
Decrease max retry time to three seconds
[{'old_path': 'packages/ide/src/retry.ts', 'new_path': 'packages/ide/src/retry.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -75,7 +75,7 @@ export class Retry {\n \n \t// Times are in seconds.\n \tprivate readonly retryMinDelay = 1;\n-\tprivate readonly retryMaxDelay = 10;\n+\tprivate readonly retryMaxDelay = ...
TypeScript
b781ccde9c596c47c5c99ed1e292a1510cc0b10f
55
2019-04-11 15:30:21-05:00
18,000
['8f62b2bff2e1bb24f39f2fdd247e9f02d778117d']
Add common utilities to Dockerfile (#488)
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -24,7 +24,10 @@ RUN apt-get update && apt-get install -y \\\n \tgit \\\n \tlocales \\\n \tsudo \\\n-\tdumb-init\n+\tdumb-init \\\n+\tvim \\\n+\tcurl \\\n+\twget\n \n RUN locale-gen en_US.UTF-8\n # We unfortunately ca...
TypeScript
f7342ede6948da736c23e67b43c1a2f31dd1fac0
35
2019-04-11 16:18:13-05:00
-7,200
['b781ccde9c596c47c5c99ed1e292a1510cc0b10f']
Update digitalocean.md (#486) Seems that sudo ./code-server-linux -p 80 is outdated. The "linux" is not anymore given.
[{'old_path': 'doc/admin/install/digitalocean.md', 'new_path': 'doc/admin/install/digitalocean.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -39,7 +39,7 @@ If you\'re just starting out, we recommend [installing code-server locally](../..\n > To ensure the connection between you and your server is encrypted v...
TypeScript
db57aa229fb62bac87b6b941df1a92e822caf257
65
2019-04-12 10:35:30-05:00
18,000
['f7342ede6948da736c23e67b43c1a2f31dd1fac0']
Allow use of the enter key for password input for code-server (#479) * Allow use of the enter key for password input for code-server * Remove function, make html form * Remove function and create html form * Handle form submit action * Remove button listener * Check if form exists
[{'old_path': 'packages/app/browser/src/app.html', 'new_path': 'packages/app/browser/src/app.html', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,9 +7,10 @@\n </head>\n \n <body>\n+\t<form id="login-form">\n \t\t<div class="login">\n-\t\t<div class="back"> <- Back </div>\n-\t\t<h4 class="title">code-server</h4>\...
TypeScript
6c3ff1d6f01d393d6bef35c0c5944ae7a4b7dc16
114
2019-04-12 10:35:54-05:00
-28,800
['db57aa229fb62bac87b6b941df1a92e822caf257']
Fix typo: doc/self-hosted/index.md (#477)
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -62,7 +62,7 @@ OPTIONS\n > Example: `code-server -h 127.0.0.1`\n \n ### Open\n- You can have the server automatically open the VS Code in your browser on startup by using the `code se...
TypeScript
742dd6f597850395957733dba81df42194b5cf58
29
2019-04-12 16:10:45-05:00
18,000
['6c3ff1d6f01d393d6bef35c0c5944ae7a4b7dc16']
Upgrade VS Code to 1.33.1
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@ language: node_js\n node_js:\n - 8.15.0\n env:\n- - VSCODE_VERSION="1.33.0" MAJOR_VERSION="1" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"\n+ - VSCODE_VERSION="1.33.1" MAJOR_VERSI...
TypeScript
c6a46e47538f61f248f6956b5cddb9f919aa380b
70
2019-04-14 00:32:03-04:00
14,400
['3fae68bbab45fa99e491a48d2de647cec0a69d35']
Fix reading text from clipboard via electron fill
[{'old_path': 'packages/ide/src/fill/electron.ts', 'new_path': 'packages/ide/src/fill/electron.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -182,6 +182,10 @@ class Clipboard {\n \tpublic writeText(value: string): Promise<void> {\n \t\treturn clipboard.writeText(value);\n \t}\n+\n+\tpublic readText(): Promise<...
TypeScript
dfabc070b9a7e537e95d843abbfa3e0b07930024
40
2019-04-13 23:34:25-05:00
-28,800
['da420cdda9d40b8270a8390e3e41e83d593b5ba0']
fix(dockerfile): explicitly create a volume and set permission for project dir (#471) Signed-off-by: Kibo Hikari <enra@sayonika.moe>
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -39,9 +39,15 @@ RUN adduser --gecos \'\' --disabled-password coder && \\\n \n USER coder\n # We create first instead of just using WORKDIR as when WORKDIR creates, the user is root.\n-RUN mkdir -p /home/coder/project...
TypeScript
aabb2ecda7ba41c6a0d3e8ea46b1fccc77a8154a
29
2019-04-15 19:48:12-05:00
18,000
['dfabc070b9a7e537e95d843abbfa3e0b07930024']
Update node to 10.15.1 (#472) * Update Node to 10.15.1 * Remove string replace that was used for oclif * Update nbin * Package node-pty and spdlog with nbin * Label stderr/stdout from shared process * Remove fork override * Prevent "already disposed" errors when trying to kill disposed proxies * I...
[{'old_path': '.dockerignore', 'new_path': '.dockerignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,3 +7,4 @@ doc/\n .travis.yml\n LICENSE\n README.md\n+node_modules\n'}, {'old_path': '.node-version', 'new_path': '.node-version', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1 +1 @@\n-8.15.0\n+10.15.1...
TypeScript
b8f222acf286076b8114ed4d3d66b44b0f868f74
29
2019-04-16 10:58:13-05:00
18,000
['aabb2ecda7ba41c6a0d3e8ea46b1fccc77a8154a']
Ensure all environment paths are created This normally happens in electron-main/main.ts but we don't run anything from there. Fixes #499.
[{'old_path': 'packages/server/src/vscode/sharedProcess.ts', 'new_path': 'packages/server/src/vscode/sharedProcess.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,4 @@\n import { ChildProcess } from "child_process";\n-import * as fs from "fs";\n-import * as fse from "fs-extra";\n import * as os from "os"...
TypeScript
22b485acd9a2accaec601ae6233a9b70ffd6eaf7
72
2019-04-16 15:44:57-05:00
-7,200
['b8f222acf286076b8114ed4d3d66b44b0f868f74']
Added serviceworker and web-manifest (#154) * Added serviceworker and manifest.json * added deps in package.json * fixed image link * actually fixed images i think * added assets to individual module folders * added caching * Serviceworker now properly loads * Changed single to double quotes * ...
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -54,6 +54,8 @@\n "webpack-dev-middleware": "^3.5.0",\n "webpack-dev-server": "^3.1.14",\n "webpack-hot-middleware": "^2.24.3",\n+ "webpack-pwa-manifest": "^4.0.0",\n+ "workbox-webpack-plugin": "...
TypeScript
e907dbe7e6f4556430902aa15929d2465d58b29f
72
2019-04-17 10:27:24-05:00
-7,200
['22b485acd9a2accaec601ae6233a9b70ffd6eaf7']
fixe password signin with service-worker (#511)
[{'old_path': 'scripts/webpack.client.config.js', 'new_path': 'scripts/webpack.client.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -71,9 +71,10 @@ module.exports = (options = {}) => merge(\n })\n ].concat(prod ? [\n new GenerateSW({\n+ exclude: [/\\.map$/, /^manifest.*\\.js$/, /\...
TypeScript
8a4da542ae60ee43de238e7ef1510b3465d8a1d8
70
2019-04-17 13:41:10-05:00
18,000
['e907dbe7e6f4556430902aa15929d2465d58b29f']
Add GCP logging extender (#503) * Add GCP logging extender * Minor version bump for new API * Update packages/logger/src/logger.ts Co-Authored-By: kylecarbs <kyle@kwc.io>
[{'old_path': 'packages/logger/package.json', 'new_path': 'packages/logger/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,9 +5,12 @@\n \t\t"build": "tsc -p tsconfig.build.json && cp ./out/packages/logger/src/* ./out && rm -rf out/packages && ../../node_modules/.bin/webpack --config ./webpack.config...
TypeScript
c4c26058ef59eedf28b87da87c5d2f80316daa12
94
2019-04-17 16:30:39-05:00
-36,000
['8a4da542ae60ee43de238e7ef1510b3465d8a1d8']
Use port from PORT env variable if available (#502)
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,7 +25,7 @@ commander.version(process.env.VERSION || "development")\n \t.option("--data-dir <value>", "DEPRECATED: Use \'--user-data-dir\' instead. Customize where user-data is stor...
TypeScript
630ccfcacca21947f0b29eca03626aaf0f4dae67
29
2019-04-17 16:30:50-05:00
18,000
['c4c26058ef59eedf28b87da87c5d2f80316daa12']
Add flag to install an extension from the command line (#504)
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,6 @@\n import { field, logger } from "@coder/logger";\n import { ServerMessage, SharedProcessActive } from "@coder/protocol/src/proto";\n-import { ChildProcess, fork, ForkOptio...
TypeScript
50e6108012d93b2069140eac18dcbe2f01e68e1b
65
2019-04-17 16:42:36-05:00
18,000
['630ccfcacca21947f0b29eca03626aaf0f4dae67']
Add confirmation for closing window (#463) * Add confirmation for closing window * Make function an event listener for consistency * Change let to const * Refactor for compatability
[{'old_path': 'packages/ide/src/client.ts', 'new_path': 'packages/ide/src/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -34,6 +34,12 @@ export abstract class IdeClient {\n \t\tthis.loadTime = time(2500);\n \n \t\tlet appWindow: Window | undefined;\n+\n+\t\twindow.addEventListener("beforeunload", (e) => ...
TypeScript
cc8c7e2cee029afc0a6878461b11871afa161bff
29
2019-04-17 17:18:20-05:00
18,000
['e0f1787ce6b4b49988c09aff46ce0dd5d94293ac']
Make assets unique (#518) * Make all assets unique All CSS and JavaScript files have unique names now. I also moved the login to the /login path in order to ensure the HTML for each page is also unique. * Explicitly include assets to cache
[{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -67,21 +67,21 @@ const buildServerBinaryCopy = register("build:server:binary:copy", async (runner\n \t}\n \tfse.copySync(defaultExtensionsPath, path.join(cliBuildPath, "extensions"));\n \tfs.writeFileSync(pat...
TypeScript
c3a38e3fea8a28afa4017cf6c45ba12e82ff1feb
70
2019-04-17 17:18:35-05:00
18,000
['cc8c7e2cee029afc0a6878461b11871afa161bff']
Add telemetry and option to disable (#519) * Add telemetry and option to disable * Update readme and getting-started guide * Update lockfile * Update getting started guide
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -63,6 +63,12 @@ How to [secure your setup](/doc/security/ssl.md).\n \n At the moment we can't use the official VSCode Marketplace. We've created a custom extension marketplace focused around open-sourced extensions. Ho...
TypeScript
cdc5b55a9d6e01237709380ed58ce233f9301af9
28
2019-04-17 18:36:33-04:00
14,400
['8a4da542ae60ee43de238e7ef1510b3465d8a1d8']
Remove chmod on project dir See #471
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -39,13 +39,12 @@ RUN adduser --gecos \'\' --disabled-password coder && \\\n \n USER coder\n # We create first instead of just using WORKDIR as when WORKDIR creates, the user is root.\n-RUN mkdir -p /home/coder/projec...
TypeScript
d5b03ef60e9defd8c9cdf44872bf97887ebed176
29
2019-04-17 17:38:22-05:00
18,000
['c3a38e3fea8a28afa4017cf6c45ba12e82ff1feb']
Remove version from Docker command
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,7 +9,7 @@\n \n Try it out:\n ```bash\n-docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/project" codercom/code-server:1.621 --allow-http --no-auth\n+docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home...
TypeScript
4d576ab4d471fe872ce17f5b7a32ea91d0529cbd
70
2019-04-17 21:01:23-04:00
14,400
['c3a38e3fea8a28afa4017cf6c45ba12e82ff1feb']
Trigger configuration update when loaded
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,7 +25,7 @@ commander.version(process.env.VERSION || "development")\n \t.option("--data-dir <value>", "DEPRECATED: Use \'--user-data-dir\' instead. Customize where user-data is stor...
TypeScript
309d15cefdb0feca559c508081acaeecb4440e63
29
2019-04-18 10:50:23-05:00
18,000
['95006a435abf327d109de33a46cd2c875d886328']
Use file/folder open commands for all operating systems Mac was using its own thing. - Fixes #535 - Fixes #501
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -885,13 +885,19 @@ index 48ef482..dc47f81 100644\n -\t\t\tplaceHolder: isMacintosh ? nls.localize(\'openRecentPlaceHolderMac\', "Select to open (hold Cmd-key to open in new window)") : nls.localiz...
TypeScript
55bfeab20817fd489046b0cdd4242a54592d11f0
29
2019-04-18 11:10:55-05:00
18,000
['309d15cefdb0feca559c508081acaeecb4440e63']
Deprecate password flag in favor of an environment variable
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,7 +28,7 @@ commander.version(process.env.VERSION || "development")\n \t.option("-p, --port <number>", "Port to bind on.", parseInt(process.env.PORT!, 10) || 8443)\n \t.option("-N, ...
TypeScript
f51823b51fc2c04632ac82571ca579ffb0518c1a
29
2019-04-18 12:08:44-05:00
18,000
['55bfeab20817fd489046b0cdd4242a54592d11f0']
Fix open dialog - Fixes #508
[{'old_path': 'packages/vscode/src/dialog.ts', 'new_path': 'packages/vscode/src/dialog.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -270,9 +270,12 @@ class Dialog {\n \n \t\t\t\treturn;\n \t\t\t}\n+\n+\t\t\t// If it\'s a directory, we want to navigate to it. If it\'s a file, then we\n+\t\t\t// only want to op...
TypeScript
0cd4e4605567130579fd2231ac51499183e4dbfb
59
2019-04-18 13:02:29-05:00
14,400
['f51823b51fc2c04632ac82571ca579ffb0518c1a']
Fix self hosted flags (#523) * Remove -h flag for help information * Add tab after removing -h option * Remove spaces after --user-data-dir option to line up with other menu items
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -52,7 +52,7 @@ Options:\n -H, --allow-http Allow http connections.\n -P, --password <value> Specify a password for authentication.\n --disable-telemetry Disab...
TypeScript
4aa20fd8649729b4dbbd427b8bcbd9e99a9ade44
29
2019-04-19 13:32:10-05:00
18,000
['0cd4e4605567130579fd2231ac51499183e4dbfb']
Fix require.toUrl on the Node side - Fixes #542
[{'old_path': 'scripts/webpack.general.config.js', 'new_path': 'scripts/webpack.general.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -24,11 +24,14 @@ module.exports = (options = {}) => ({\n \t\t\ttest: /\\.(j|t)s/,\n \t\t\toptions: {\n \t\t\t\tmultiple: [{\n-\t\t\t\t\t// These will be handled by file-l...
TypeScript
166efcb17e0a95e6c51a1f06ad439af769de9e43
70
2019-04-19 19:54:50-05:00
18,000
['206e107a9a4d2e8ca8fdc6d9cc4fa26f6622b4d1']
Hide titlebar controls and fix menubar toggle (#550)
[{'old_path': 'packages/vscode/src/vscode.scss', 'new_path': 'packages/vscode/src/vscode.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -53,3 +53,7 @@\n \twidth: 56px !important;\n \tmargin-right: 4px;\n }\n+\n+.window-controls-container {\n+\tdisplay: none !important;\n+}\n\\ No newline at end of file\n'}, {...
TypeScript
c56e2797cccf8c0d07bfdcf69b09bfca99b89208
70
2019-04-19 21:20:31-04:00
14,400
['166efcb17e0a95e6c51a1f06ad439af769de9e43']
Add sshcode to the readme
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,6 +23,10 @@ docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/project" codercom/c\n \n ## Getting Started\n \n+### Run over SSH\n+\n+Use [sshcode](https://github.com/codercom/sshcode) to easily run via S...
TypeScript
d07362262966e0011aec7268b01dded3a9df0ad5
70
2019-04-22 12:47:27-05:00
18,000
['5f40ebb8457380aa1e9955302d9e41a6b042ef14']
Add --socket flag (#564) * Add --socket flag * Add msg for already bound socket
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -30,6 +30,7 @@ commander.version(process.env.VERSION || "development")\n \t.option("-H, --allow-http", "Allow http connections.", false)\n \t.option("-P, --password <value>", "DEPRECAT...
TypeScript
e61ea796c6518bd5533630dfd911d16f3f6c2fdb
70
2019-04-22 12:51:05-05:00
18,000
['d07362262966e0011aec7268b01dded3a9df0ad5']
Bundle grammars (#563)
[{'old_path': 'packages/vscode/src/fill/vscodeTextmate.ts', 'new_path': 'packages/vscode/src/fill/vscodeTextmate.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,6 +2,17 @@ import * as vscodeTextmate from "../../../../lib/vscode/node_modules/vscode-text\n \n const target = vscodeTextmate as typeof vscodeTextma...
TypeScript
b055a26dc31e114bfdb6185834aa72d7b043107d
70
2019-04-23 11:33:42-04:00
14,400
['2bc6e1a457b4ca5298f5207d164a3699ec443bfc']
Remove log statement from copy
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -247,7 +247,7 @@ index c69ea3f..b8d87f7 100644\n -const GOLDEN_LINE_HEIGHT_RATIO = platform.isMacintosh ? 1.5 : 1.35;\n +const GOLDEN_LINE_HEIGHT_RATIO = browser.isMacintosh ? 1.5 : 1.35;\n diff -...
TypeScript
41c7d98b7bd0da21ef8a8836b226ba5aed838ed8
65
2019-04-23 16:38:34-05:00
18,000
['b055a26dc31e114bfdb6185834aa72d7b043107d']
Offer https/http url based on schema (#572) * Let people know when telemetry is disabled, change url to https if secure connection * Remove --no-auth as a http candidate * Rename variable, change let to const
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -310,8 +310,12 @@ const bold = (text: string | number): string | number => {\n \t} else {\n \t\tlogger.warn("Launched without authentication.");\n \t}\n+\tif (options.disableTelemetry)...
TypeScript
6b887dcc9cbd43d0a9c26b9bd8cc5bd76582db0b
65
2019-04-23 16:38:49-05:00
18,000
['41c7d98b7bd0da21ef8a8836b226ba5aed838ed8']
Fix no-auth to still use HTTPS, set default for no-auth to false (#573)
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -26,7 +26,7 @@ commander.version(process.env.VERSION || "development")\n \t.option("-h, --host <value>", "Customize the hostname.", "0.0.0.0")\n \t.option("-o, --open", "Open in the br...
TypeScript
30b8565e2d32265276814bdf78796dd4fcf06963
65
2019-04-23 19:14:52-05:00
18,000
['6b887dcc9cbd43d0a9c26b9bd8cc5bd76582db0b']
Fix markdown preview focus (#546) * Fix hash * Remove whitespace
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -827,7 +827,7 @@ index 780147c..2e8c9af 100644\n -\t\t\t\t\tif (platform.isMacintosh) {\n +\t\t\t\t\tif (browser.isMacintosh) {\n diff --git a/src/vs/workbench/contrib/webview/electron-browser/web...
TypeScript
c9f91e77cde12f6c83615a169871334951f92821
29
2019-04-24 10:38:21-05:00
18,000
['30b8565e2d32265276814bdf78796dd4fcf06963']
Fix coping and moving files around using the file tree (#568) * Implement write/read buffers in electron fill This makes cutting and copy files from the file tree work. * Implement fs.createReadStream This is used by the file tree to copy files. * Allow passing proxies back from client to server This ma...
[{'old_path': 'packages/ide/src/fill/electron.ts', 'new_path': 'packages/ide/src/fill/electron.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -171,8 +171,10 @@ const newCreateElement = <K extends keyof HTMLElementTagNameMap>(tagName: K): HT\n document.createElement = newCreateElement;\n \n class Clipboard {\n-\...
TypeScript
bcdbd9019786c61aa474af246a8d36659ad4ff45
70
2019-04-24 18:34:57-05:00
25,200
['0de7247868b218a8c84f96a12d33d79828ce645f']
Fix #587 (#588)
[{'old_path': 'packages/protocol/src/browser/modules/node-pty.ts', 'new_path': 'packages/protocol/src/browser/modules/node-pty.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,6 +9,8 @@ interface ClientNodePtyProcessProxy extends NodePtyProcessProxy, ClientServerPro\n export class NodePtyProcess extends Client...
TypeScript
5ad9398b01877790137c6373e3e5773ca84d9678
92
2019-04-25 07:57:12-07:00
25,200
['bcdbd9019786c61aa474af246a8d36659ad4ff45']
Fix typo DigitalOcean (#595)
[]
TypeScript