Search is not available for this dataset
hash
string
author
int32
committer_date
string
timezone
int64
parents
string
message
string
changes
string
language
string
446573809c686401cf65cb6bd399ba8353c572f0
29
2019-04-25 12:07:35-05:00
18,000
['5ad9398b01877790137c6373e3e5773ca84d9678']
Improve size column in dialogs - Remove size from directories (often always 4K and not very useful). - Format file sizes to be more human-readable.
[{'old_path': 'packages/vscode/src/dialog.scss', 'new_path': 'packages/vscode/src/dialog.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -79,9 +79,7 @@\n \t\t.dialog-entry {\n \t\t\tcursor: pointer;\n \t\t\tfont-size: 1.02em;\n-\t\t\tpadding: 0px;\n-\t\t\tpadding-left: 8px;\n-\t\t\tpadding-right: 8px;\n+\t\t\t...
TypeScript
58cf109a836c0c31baf1da6c37c1311a96f5e6be
29
2019-04-25 13:29:11-05:00
18,000
['fab45dedcd44137ceaa86e646781b64126dc79ff']
Fix full screen detection for Chromium
[{'old_path': 'packages/ide/src/fill/electron.ts', 'new_path': 'packages/ide/src/fill/electron.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -394,10 +394,16 @@ class BrowserWindow extends EventEmitter {\n \t\tif (typeof (window as any)["fullScreen"] !== "undefined") {\n \t\t\treturn (window as any)["fullScreen...
TypeScript
a3ac4567e39133e736e7e74365f10e9b97861621
29
2019-04-25 14:08:46-05:00
18,000
['58cf109a836c0c31baf1da6c37c1311a96f5e6be']
Only output password if it was generated
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -216,6 +216,7 @@ const bold = (text: string | number): string | number => {\n \t}\n \n \tlet password = options.password || process.env.PASSWORD;\n+\tconst usingCustomPassword = !!pass...
TypeScript
4c5bb83fc11b71664783c6abd081ff318663f107
29
2019-04-25 15:17:22-05:00
18,000
['a3ac4567e39133e736e7e74365f10e9b97861621']
Fix open dialog crash when there is a broken link Fixes #579.
[{'old_path': 'packages/vscode/src/dialog.ts', 'new_path': 'packages/vscode/src/dialog.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -404,7 +404,7 @@ class Dialog {\n \t */\n \tprivate async list(directory: string): Promise<ReadonlyArray<DialogEntry>> {\n \t\tconst paths = (await util.promisify(fs.readdir)(dir...
TypeScript
4e62f938a967eb2e38d944408d28296bf75b9e5a
65
2019-04-25 15:23:03-05:00
18,000
['4c5bb83fc11b71664783c6abd081ff318663f107']
Remove reveal in finder/explorer option from the context menu (#586)
[{'old_path': 'packages/vscode/src/fill/menuRegistry.ts', 'new_path': 'packages/vscode/src/fill/menuRegistry.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,6 +5,7 @@ import { OpenProcessExplorer } from "vs/workbench/contrib/issue/electron-browser\n import { ToggleDevToolsAction } from "vs/workbench/electron-...
TypeScript
a2e0638c6a441c9eed096c1a9cd29e92ebeb6d50
70
2019-04-26 09:56:14-04:00
14,400
['bcdbd9019786c61aa474af246a8d36659ad4ff45']
Add support for musl and centos
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,6 +7,12 @@ matrix:\n include:\n - os: linux\n dist: trusty\n+ env:\n+ - TARGET="centos"\n+ - os: linux\n+ dist: trusty\n+ env:\n+ - TARGET="alpine"\n - os: osx\n before_install:\n -...
TypeScript
d0142e25364103eebcd037ea706af563e936c351
70
2019-04-26 10:29:12-04:00
14,400
['e8c8fba91d81975b5233e1c8efddeae7cba94073']
Include version with target env
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,18 +3,16 @@ node_js:\n - 10.15.1\n services:\n - docker\n-env:\n- - VSCODE_VERSION="1.33.1" MAJOR_VERSION="1" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER-vsc$VSCODE_VERSION"\n matrix:\n include:\n - os: li...
TypeScript
1622fd41520d68ca25e5e20685e6a20e251a3acb
43
2019-04-29 10:47:45-05:00
-10,800
['6c972e855f25c7a7382a169908c9e40fe931f3cd']
Preserve environment when forking shared process (#545)
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,6 @@\n import { field, logger } from "@coder/logger";\n import { ServerMessage, SharedProcessActive } from "@coder/protocol/src/proto";\n+import { preserveEnv } from "@coder/pr...
TypeScript
cdb900aca81006b88a92e4f933349a5496b3fd06
29
2019-04-29 11:49:59-05:00
18,000
['1622fd41520d68ca25e5e20685e6a20e251a3acb']
Make preserveEnv return a new object Modifying the object didn't feel quite right, plus this makes the code a bit more compact.
[{'old_path': 'packages/protocol/src/common/util.ts', 'new_path': 'packages/protocol/src/common/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -236,8 +236,11 @@ export const isPromise = (value: any): value is Promise<any> => {\n * When spawning VS Code tries to preserve the environment but since it's in\n...
TypeScript
6ef1628acb33195caa3cd905e3e8ade29d010982
28
2019-05-02 10:27:28-04:00
14,400
['ab8f8a0a2237b1343b94054959a9e4b9d1e9d192']
Expose Terminal Service in API Will need in sail.
[{'old_path': 'packages/ide-api/api.d.ts', 'new_path': 'packages/ide-api/api.d.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,7 @@\n // tslint:disable no-any\n \n+import { ITerminalService } from "vs/workbench/contrib/terminal/common/terminal";\n+\n export interface EvalHelper { }\n interface ActiveEval...
TypeScript
72152f74ab3a9d06ee42f693e191049ad13709ea
28
2019-05-02 13:32:05-04:00
14,400
['420ca76f54a02298a556a9943fbe171f0b08f2a6']
Fix docker oneliner in README.md
[{'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" cdr/code-server --allow-http --no-auth\n+docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/proj...
TypeScript
07342bbee7e8cbf0fa5375648ca2f5a6664f22c3
9
2019-05-19 17:24:57-05:00
-19,800
['72152f74ab3a9d06ee42f693e191049ad13709ea']
Remove broken links (#671)
[{'old_path': 'doc/admin/install/aws.md', 'new_path': 'doc/admin/install/aws.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -2,7 +2,7 @@\n \n This tutorial shows you how to deploy `code-server` on an EC2 AWS instance.\n \n-If you're just starting out, we recommend [installing code-server locally](../../self-hos...
TypeScript
8256252967a9d793d419c80478a57c0fdf3d0913
103
2019-05-19 17:26:09-05:00
-7,200
['07342bbee7e8cbf0fa5375648ca2f5a6664f22c3']
Updated Data Directory Flag (#664) Old Version contained a deprecated flag
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -56,7 +56,7 @@ Options:\n ```\n \n ### Data Directory\n- Use `code-server -d (path/to/directory)` or `code-server --data-dir=(path/to/directory)`, excluding the parentheses to specify...
TypeScript
aa1474b675948f5454094e7b5a55ba158bb86f71
29
2019-05-19 17:58:47-05:00
18,000
['8256252967a9d793d419c80478a57c0fdf3d0913']
Extra extensions directories (#694) * Allow setting paths for builtin exts and extra dirs The extra directories aren't used yet, just available from the environment service and to the shared process. * Utilize extra builtin extensions path * Utilize extra extensions directory * Fix cached mtimes for extra...
[{'old_path': 'packages/protocol/src/browser/client.ts', 'new_path': 'packages/protocol/src/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -278,6 +278,8 @@ export class Client {\n \t\t\t\t\tshell: init.getShell(),\n \t\t\t\t\textensionsDirectory: init.getExtensionsDirectory(),\n \t\t\t\t\tbuiltIn...
TypeScript
81bbfa7fbe3ca36a29014c79cf8f69775778fe56
29
2019-05-19 19:21:25-05:00
18,000
['aa1474b675948f5454094e7b5a55ba158bb86f71']
Suppress "disconnected" notification on extension host This isn't a real error event; we artificially emit it just in case something waiting to start is listening to the error event in order to clean up and/or restart.
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1103,6 +1103,13 @@ index 059f821..b19f292 100644\n @@ -290 +292 @@ export class CachedExtensionScanner {\n -\t\t\t\t\tnew ExtensionScannerInput(version, commit, locale, devMode, environmentServic...
TypeScript
c020cd2f2c14cf8b3c0fdd4c69ced1cbf64acb48
29
2019-05-19 19:49:05-05:00
18,000
['81bbfa7fbe3ca36a29014c79cf8f69775778fe56']
Don't try to create builtin extensions directory Since this will be a path in the binary that we don't want to create on the user's system. I also removed the option to override it; it doesn't seem like a great idea since you'd always want those builtin extensions. This way we also don't have to check if the option wa...
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -26,7 +26,6 @@ commander.version(process.env.VERSION || "development")\n \t.option("--cert <value>")\n \t.option("--cert-key <value>")\n \t.option("-e, --extensions-dir <dir>", "Overri...
TypeScript
db39eacfa1fa15b3f4aaa44e6469f71d58b4d07b
29
2019-05-20 11:02:36-05:00
18,000
['c020cd2f2c14cf8b3c0fdd4c69ced1cbf64acb48']
Set NODE_ENV and VERSION when building (#700) * Set NODE_ENV and VERSION when building Should fix the version flag not reporting correctly as well as enable the service worker and prevent the 404 hmr requests again. * Log env vars To help make sure it's built correctly when looking at the Travis logs.
[{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,5 @@\n import { register, run } from "@coder/runner";\n+import { logger, field } from "@coder/logger";\n import * as fs from "fs";\n import * as fse from "fs-extra";\n import * as os from "os";\n@@ -1...
TypeScript
0462a93f11ecd4dfc37acdd36d220e1cbd12631a
55
2019-05-20 14:35:58-05:00
14,400
['db39eacfa1fa15b3f4aaa44e6469f71d58b4d07b']
Expose actions registry (#701)
[{'old_path': 'packages/ide-api/api.d.ts', 'new_path': 'packages/ide-api/api.d.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,9 @@\n // tslint:disable no-any\n \n import { ITerminalService } from "vs/workbench/contrib/terminal/common/terminal";\n+import { IWorkbenchActionRegistry } from \'vs/workbench/c...
TypeScript
4a29cd16643679e94f1f5cee18b408cbf1d28dde
29
2019-05-20 15:53:06-05:00
18,000
['0462a93f11ecd4dfc37acdd36d220e1cbd12631a']
Fix human readable byte size when zero
[{'old_path': 'packages/vscode/src/dialog.ts', 'new_path': 'packages/vscode/src/dialog.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -505,9 +505,8 @@ class DialogEntryRenderer implements ITreeRenderer<DialogEntry, string, DialogEn\n \t */\n \tprivate humanReadableSize(bytes: number): string {\n \t\tconst units...
TypeScript
a2ad3d4ff4ae6019627028d6a65ef5f228d5b6f7
29
2019-05-20 16:08:54-05:00
18,000
['4a29cd16643679e94f1f5cee18b408cbf1d28dde']
Show hidden files by default Since there is no other way to enable hidden files, it seems better to enable it by default otherwise there are some folders/files you simply can never open from the dialog.
[{'old_path': 'packages/vscode/src/dialog.ts', 'new_path': 'packages/vscode/src/dialog.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -52,7 +52,15 @@ export type DialogOptions = OpenDialogOptions | SaveDialogOptions;\n \n export const showOpenDialog = (options: OpenDialogOptions): Promise<string> => {\n \tretur...
TypeScript
e2eaa0aa4eb5ee4afe9634a54f2170ca3719bb8d
6
2019-05-28 07:10:20+00:00
0
['91bcbe496ba7a11bab7dbae0f99a58de117d63f5']
Align intend of description Co-Authored-By: Sergio Moura <sergio@moura.ca>
[]
TypeScript
406ec0ba71f469aa6534acc858895f6e8c1f7939
71
2019-06-05 15:28:10-05:00
25,200
['a2ad3d4ff4ae6019627028d6a65ef5f228d5b6f7']
Updated google_cloud to have proper link to ssl.md (#745)
[{'old_path': 'doc/admin/install/google_cloud.md', 'new_path': 'doc/admin/install/google_cloud.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -50,7 +50,7 @@ cd code-server-{version}-linux-x64\n chmod +x code-server\n ```\n \n-> To ensure the connection between you and your server is encrypted view our guide on ...
TypeScript
04adf14146ca0f24749fe5d62da6bfeea4b21ace
29
2019-06-06 13:43:37-05:00
18,000
['406ec0ba71f469aa6534acc858895f6e8c1f7939']
Move OSX package task into build script This is to match how the other binaries are built. Also made some changes to make the Docker containers clean up for when you are running this locally.
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -27,7 +27,6 @@ before_deploy:\n - git config --local user.name "$USER_NAME"\n - git config --local user.email "$USER_EMAIL"\n - git tag "$VERSION" "$TRAVIS_COMMIT"\n-- if [[ “$TRAVIS_OS_NAME” == “osx” ]]; then yarn...
TypeScript
ec70ea6994da40cd335eadd69af4bb894590ecfc
36
2019-06-07 14:22:33-05:00
0
['04adf14146ca0f24749fe5d62da6bfeea4b21ace']
Change documentation to use port 8443 (#740)
[{'old_path': 'doc/admin/install/aws.md', 'new_path': 'doc/admin/install/aws.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,9 +11,9 @@ If you\'re just starting out, we recommend [installing code-server locally](../..\n ### Use the AWS wizard\n \n - Click **Launch Instance** from your [EC2 dashboard](https:/...
TypeScript
362715bbeb68ebb30f3ccbc72f8f100035f679c8
29
2019-06-07 14:30:45-05:00
18,000
['ec70ea6994da40cd335eadd69af4bb894590ecfc']
Fix dialog items getting cut off Fixes #336.
[{'old_path': 'packages/vscode/src/dialog.ts', 'new_path': 'packages/vscode/src/dialog.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -315,7 +315,6 @@ class Dialog {\n \t\t}\n \t\tbuttonsNode.appendChild(confirmBtn);\n \t\tthis.root.appendChild(buttonsNode);\n-\t\tthis.entryList.layout();\n \n \t\tthis.path = o...
TypeScript
02f62882b8a9ecab98c20b6a3ffe0525f3d63caf
55
2019-06-11 11:54:49-05:00
14,400
['362715bbeb68ebb30f3ccbc72f8f100035f679c8']
Propagate full env to browser (#756) * Propogate full env to browser * Add support for setting $ITEM_URL * Add serviceURL getter
[{'old_path': 'packages/ide/src/fill/os.ts', 'new_path': 'packages/ide/src/fill/os.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -35,6 +35,10 @@ class OS {\n \t\t\tdefault: this._platform = "linux"; break;\n \t\t}\n \t\tprocess.platform = this._platform;\n+\t\tprocess.env = {};\n+\t\tdata.env.forEach((v, k) =>...
TypeScript
cf63bbd0030e1b288c63338e7fdcb56097e86644
29
2019-06-11 12:08:02-05:00
18,000
['02f62882b8a9ecab98c20b6a3ffe0525f3d63caf']
Fix "no authentication" message with custom password Fixes #757.
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -315,10 +315,11 @@ const bold = (text: string | number): string | number => {\n \t\tlogger.warn("Documentation on securing your setup: https://github.com/cdr/code-server/blob/master/do...
TypeScript
a9d17882e7827b6407ce00cb51df58799447dd43
36
2019-06-17 12:20:20-05:00
0
['cf63bbd0030e1b288c63338e7fdcb56097e86644']
use port from server.address() when printing URL (#780) This allows the use of port 0, which is interpretted automatically to mean "random port". Additional logging consistency fixes.
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -279,10 +279,11 @@ const bold = (text: string | number): string | number => {\n \t\t} : undefined,\n \t});\n \n-\tlogger.info("Starting webserver...", field("host", options.host), fiel...
TypeScript
28c93612e63fde62fbb470e3f2265f81da1bac19
29
2019-06-17 13:44:24-05:00
18,000
['a9d17882e7827b6407ce00cb51df58799447dd43']
Move address output to the listen callback Since listening is asynchronous, this guarantees the address will be filled out.
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -281,10 +281,32 @@ const bold = (text: string | number): string | number => {\n \n \tif (options.socket) {\n \t\tlogger.info("Starting webserver via socket...", field("socket", options...
TypeScript
a72e8a698d1c65877f4515cc8648c29ec6de7046
45
2019-07-01 14:05:35-07:00
25,200
['28c93612e63fde62fbb470e3f2265f81da1bac19']
Add `use-credentials` to fetch manifest with cookies I run code-server behind an authenticating Kubernetes Ingress which sets a cookie after a successful login is performed. Since this cookie is not set when fetching the manifest, the fetch fails and gets redirected to the authentication page, breaking code-server com...
[{'old_path': 'scripts/webpack.client.config.js', 'new_path': 'scripts/webpack.client.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -61,6 +61,7 @@ module.exports = (options = {}) => merge(\n \t\t\tshort_name: "Coder",\n \t\t\tdescription: "Run VS Code on a remote server",\n \t\t\tbackground_color: "#e5e...
TypeScript
11784e55b2971461bf7348b8481670e2ddac8069
45
2019-07-01 14:10:32-07:00
25,200
['a72e8a698d1c65877f4515cc8648c29ec6de7046']
Change quote style to match existing work
[{'old_path': 'scripts/webpack.client.config.js', 'new_path': 'scripts/webpack.client.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -61,7 +61,7 @@ module.exports = (options = {}) => merge(\n \t\t\tshort_name: "Coder",\n \t\t\tdescription: "Run VS Code on a remote server",\n \t\t\tbackground_color: "#e5e...
TypeScript
e6713db677042ca7926dbbcfebffee4ca0777efe
90
2019-07-02 06:37:34+08:00
-28,800
['28c93612e63fde62fbb470e3f2265f81da1bac19']
Update READE to add know issue for golang debug
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -55,6 +55,7 @@ How to [secure your setup](/doc/security/ssl.md).\n ### Known Issues\n \n - Creating custom VS Code extensions and debugging them doesn't work.\n+- To debug Golang using [ms-vscode-go extension](https://...
TypeScript
46207cfe108629c9e40c4be38d86ba504914b681
36
2019-07-07 15:12:45+10:00
14,400
['a2ad3d4ff4ae6019627028d6a65ef5f228d5b6f7']
register service worker at relative scope Co-Authored-By: Ian Reinhart Geiser <geiseri@geekcentral.pub>
[{'old_path': 'packages/web/src/index.html', 'new_path': 'packages/web/src/index.html', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,7 +29,7 @@\n \t\tif ("serviceWorker" in navigator) {\n \t\t\t// Use the window load event to keep the page load performant\n \t\t\twindow.addEventListener("load", () => {\n-\t\t\...
TypeScript
9b5a43e4bd4d04a3dc51e55478ab5ccbc13c21a8
36
2019-07-07 15:13:16+10:00
14,400
['46207cfe108629c9e40c4be38d86ba504914b681']
use local workbox to simplify csp Co-Authored-By: Ian Reinhart Geiser <geiseri@geekcentral.pub>
[{'old_path': 'scripts/webpack.client.config.js', 'new_path': 'scripts/webpack.client.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -68,6 +68,7 @@ module.exports = (options = {}) => merge(\n \t\t})\n \t].concat(prod ? [\n \t\tnew GenerateSW({\n+\t\t\timportWorkboxFrom: "local",\n \t\t\tinclude: [cachePa...
TypeScript
a65773338c2bf140a4731a0ac10ac80694b6a831
36
2019-07-07 16:50:43+10:00
-36,000
['242bb6ffa252fafc238866e37465b6b03d5be99a']
add failed authentication attempt logger When `isAuthed()` is called and the password cookie is not what we expected, the failed login attempt is logged with the provided password, remote address and user agent. To allow for logging failed attempts with a reverse proxy, the `--trust-proxy` argument has been added to ...
[{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -38,6 +38,7 @@ commander.version(process.env.VERSION || "development")\n \t.option("-P, --password <value>", "DEPRECATED: Use the PASSWORD environment variable instead. Specify a passw...
TypeScript
14d917179c092b46526815e16abdd25fd1715397
36
2019-07-07 17:03:47+10:00
-36,000
['a65773338c2bf140a4731a0ac10ac80694b6a831']
update code-server usage in documentation
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -41,17 +41,20 @@ Options:\n -V, --version output the version number\n --cert <value>\n --cert-key <value>\n- -e, --extensions-dir <dir> Set the root path fo...
TypeScript
46298c7675db68114ce3e271163f6487c8374f45
109
2019-07-07 18:30:27+09:00
-32,400
['a2ad3d4ff4ae6019627028d6a65ef5f228d5b6f7']
fix typos in wget url
[{'old_path': 'doc/admin/install/aws.md', 'new_path': 'doc/admin/install/aws.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -39,15 +39,15 @@ If you're just starting out, we recommend [installing code-server locally](../..\n ```\n - Replace {version} in the following command with the version found on the relea...
TypeScript
d950e3c9dea23ece704fc7f63b2f0a2b2032f047
48
2019-07-08 09:20:29+02:00
-7,200
['e2eaa0aa4eb5ee4afe9634a54f2170ca3719bb8d']
Fix missing comma in cli-help
[{'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("-e, --extensions-dir <dir>", "Override the main default path for user extensions.")\n \t.option("--e...
TypeScript
3f2ad7b7192de37879ffbfd1113dee3bddabada1
36
2019-07-08 08:55:37-06:00
0
['5e8c3f8ff30d5ba1af9f7b581bff3c51a363a915']
Fix self-hosted documentation screenshot URL (#836)
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,7 +25,7 @@ It takes just a few minutes to get your own self-hosted server running. If you\'v\n > NOTE: Be careful with your password as sharing it will grant those users access to your...
TypeScript
c48a275d33ff0be181dbf88aae21091721cab121
36
2019-07-09 10:57:09+10:00
-36,000
['14d917179c092b46526815e16abdd25fd1715397']
add timestamp to auth log, add fail2ban conf+docs
[{'old_path': None, 'new_path': 'doc/security/code-server.fail2ban.conf', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,15 @@\n+# Fail2Ban filter for code-server\n+#\n+#\n+\n+[Definition]\n+\n+\n+failregex = ^INFO\\s+Failed login attempt\\s+{\\"password\\":\\"(\\\\.|[^"])*\\",\\"remote_address\\":\\"<HOST>\\"\...
TypeScript
e776f1819231207b1c84da5124188485207081f4
36
2019-07-11 12:30:42+10:00
-36,000
['c48a275d33ff0be181dbf88aae21091721cab121']
update docs to mention --trust-proxy
[{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -82,7 +82,7 @@ Options:\n > To ensure the connection between you and your server is encrypted view our guide on [securing your setup](../security/ssl.md)\n \n ### Nginx Reverse Proxy\n- ...
TypeScript
a0121f2f0c77b4846a7c7736ef3a03239d81b452
29
2019-07-18 18:08:16-05:00
18,000
['98f001395cf71ff95c5536d2379cb4be94889237']
Implement file provider Reading, watching, saving, etc all seem to work now.
[{'old_path': 'channel.ts', 'new_path': 'channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,94 +1,153 @@\n import * as path from "path";\n \n+import { VSBuffer } from "vs/base/common/buffer";\n import { Emitter, Event } from "vs/base/common/event";\n+import { IDisposable } from "vs/base/common/lifecycle"...
TypeScript
0d618bb1ef8d97dbc282c9d50e05910a2032ecdc
29
2019-07-18 18:08:17-05:00
18,000
['a0121f2f0c77b4846a7c7736ef3a03239d81b452']
Use spdlog for log service
[{'old_path': 'channel.ts', 'new_path': 'channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -161,7 +161,7 @@ export class ExtensionEnvironmentChannel implements IServerChannel {\n \t\tthrow new Error(`Invalid listen "${event}"`);\n \t}\n \n-\tpublic call(_: unknown, command: string, args?: any): Promise<any...
TypeScript
4e0a6d29411e87e3a64d33b358b4b3c35de5918c
29
2019-07-18 18:08:17-05:00
18,000
['0d618bb1ef8d97dbc282c9d50e05910a2032ecdc']
Partial extension host, some restructuring I didn't like how the inner objects accessed parent objects, so I restructured all that.
[{'old_path': 'connection.ts', 'new_path': 'connection.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,69 +1,176 @@\n-import { ClientConnectionEvent } from "vs/base/parts/ipc/common/ipc";\n-import { ConnectionType } from "vs/platform/remote/common/remoteAgentConnection";\n-import { Emitter } from "vs/base/com...
TypeScript
7072bf1e83748b0abb7a23e0f2c91103964bc987
29
2019-07-18 18:08:18-05:00
18,000
['4e0a6d29411e87e3a64d33b358b4b3c35de5918c']
Use new URI transformer everywhere
[{'old_path': 'channel.ts', 'new_path': 'channel.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,11 +1,12 @@\n import * as path from "path";\n \n+import { getPathFromAmdModule } from "vs/base/common/amd";\n import { VSBuffer } from "vs/base/common/buffer";\n import { Emitter, Event } from "vs/base/common/even...
TypeScript
d808bfaec68015a55b7056fce12e64a447c8d726
29
2019-07-18 18:08:19-05:00
18,000
['7072bf1e83748b0abb7a23e0f2c91103964bc987']
Set workspace and folder URIs This makes the file tree work.
[{'old_path': 'server.ts', 'new_path': 'server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -6,6 +6,7 @@ import * as util from "util";\n import * as url from "url";\n \n import { Emitter } from "vs/base/common/event";\n+import { sanitizeFilePath } from "vs/base/common/extpath";\n import { getMediaMime } from ...
TypeScript
a6703ecb9839a3555bda9bb4b0b29d2b07a55e25
29
2019-07-18 18:08:21-05:00
18,000
['57a8186e88eebc963ce8fdb12d36732161c8a16e']
Prevent sending disconnect if disposed
[{'old_path': 'protocol.ts', 'new_path': 'protocol.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -13,6 +13,8 @@ export interface SocketOptions {\n }\n \n export class Protocol extends PersistentProtocol {\n+\tprivate disposed: boolean = false;\n+\n \tpublic constructor(\n \t\tsecWebsocketKey: string,\n \t\tsoc...
TypeScript
6a35ab1dc0284556e924ed5330cf5874815b0af1
29
2019-07-18 18:08:24-05:00
18,000
['3a78c0964f8829721096e5897b4ca9fc2e443863']
Add (unimplemented) webview server
[{'old_path': 'entry.ts', 'new_path': 'entry.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,12 @@\n-import { Server } from "./server";\n+import { MainServer, WebviewServer } from "./server";\n \n-const server = new Server();\n-server.listen();\n+const webviewServer = new WebviewServer();\n+const server ...
TypeScript
f8f4bfd76f11f84f679369f7fb7a4a16711f3672
29
2019-07-18 18:08:28-05:00
18,000
['5677ff2edfdfa3264cf4e59e964e28e02f4c808c']
Customize JSON files with code-server name
[{'old_path': None, 'new_path': 'scripts/package.json', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,3 @@\n+{\n+ "name": "code-server"\n+}\n'}, {'old_path': None, 'new_path': 'scripts/product.json', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,19 @@\n+{\n+\t"nameShort": "code-server",\n+\t"nameLong...
TypeScript
6156eb9ff4be2a10a6076ab391ef6ea4c2d5c0aa
29
2019-07-18 18:08:29-05:00
18,000
['f8f4bfd76f11f84f679369f7fb7a4a16711f3672']
Don't wait to start main server
[{'old_path': 'cli.ts', 'new_path': 'cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -57,14 +57,14 @@ const main = async (): Promise<void> => {\n \t\treturn process.exit(0);\n \t}\n \n-\tconst webviewServer = new WebviewServer();\n-\tconst server = new MainServer(webviewServer, args);\n-\t// The main server ...
TypeScript
3ca90a5f89d9bb53e845a544b6e830c4cce268bd
29
2019-07-18 18:08:30-05:00
18,000
['6156eb9ff4be2a10a6076ab391ef6ea4c2d5c0aa']
Use nbin in forked processes
[{'old_path': 'main.js', 'new_path': 'main.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,11 +1 @@\n-try {\n-\tconst nbin = require("nbin");\n-\tconst path = require("path");\n-\tconst rootPath = path.resolve(__dirname, "../../..");\n-\tconsole.log("Shimming", rootPath);\n-\tnbin.shimNativeFs(rootPath);\n-} ...
TypeScript
197d8dba9396cff3bf8dba9cb6fe4b38d35ce1cc
29
2019-07-18 18:08:30-05:00
18,000
['3ca90a5f89d9bb53e845a544b6e830c4cce268bd']
Need to run `yarn compile` once To build the extensions for development.
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -62,6 +62,7 @@ How to [secure your setup](/doc/security/ssl.md).\n \n - Clone VS Code.\n - Run `yarn` in the VS Code root directory.\n+- Run `yarn compile` in the VS Code root directory.\n - Clone this repository to `s...
TypeScript
f51751ad21e7463e6519a030d91df1abba02c727
29
2019-07-18 18:08:31-05:00
18,000
['197d8dba9396cff3bf8dba9cb6fe4b38d35ce1cc']
Replace jq with some JavaScript
[{'old_path': None, 'new_path': 'scripts/merge.js', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,18 @@\n+const fs = require("fs");\n+\n+const a = process.argv[2];\n+const b = process.argv[3];\n+const out = process.argv[4];\n+\n+const aJson = JSON.parse(fs.readFileSync(a));\n+const bJson = JSON.parse(fs.readFi...
TypeScript
fe1d609d1a84389a833b09d69281da1259648c27
29
2019-07-18 18:08:33-05:00
18,000
['a20fa4a97a3f9bd98c3dd7cddeff57d92bff14a5']
Make it possible to request absolute paths
[{'old_path': 'server.ts', 'new_path': 'server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -61,6 +61,12 @@ export interface Options {\n \tCONNECTION_AUTH_TOKEN: string;\n }\n \n+export interface Response {\n+\tcontent?: string | Buffer;\n+\tcode?: number;\n+\theaders: http.OutgoingHttpHeaders;\n+}\n+\n expor...
TypeScript
09e3cfd8816eea8c06331b9377d67fba9a6f8717
29
2019-07-18 18:08:37-05:00
18,000
['54ffd1d351fb3261f493f45b4a3dd52aef2ca666']
Create extension directory on startup
[{'old_path': 'server.ts', 'new_path': 'server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,6 +11,7 @@ import { getMediaMime } from "vs/base/common/mime";\n import { extname } from "vs/base/common/path";\n import { UriComponents, URI } from "vs/base/common/uri";\n import { IPCServer, ClientConnectionEvent...
TypeScript
81862d4fa174372ea944d1cb3c2d68b7739ff637
29
2019-07-18 18:08:38-05:00
18,000
['2fdf09e6e77e671b9dcbcc2e8ffb0934b20b660a']
Add back (most of) our old arguments Also remove VS Code ones that don't work.
[{'old_path': 'cli.ts', 'new_path': 'cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,12 +9,60 @@ import { MainServer, WebviewServer } from "vs/server/server";\n import "vs/server/tar";\n \n interface Args extends ParsedArgs {\n+\t"allow-http"?: boolean;\n+\tcert?: string;\n+\t"cert-key"?: string;\n+\t"ext...
TypeScript
8dcc1e35670b69f1aae7da118f7cb873934363fb
29
2019-07-18 18:09:13-05:00
18,000
['e22791ec88da233aba7c8e19e0f6f50dc5b9c337']
Accept argument to change initial working directory
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -5,7 +5,8 @@\n [![MIT license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/cdr/code-server/blob/master/LICENSE)\n [![Discord](https://img.shields.io/discord/463752820026376202.svg?label=&log...
TypeScript
feabfc86fa3cc7f7f535b512dfe3ac41c7566c13
29
2019-07-18 18:09:17-05:00
18,000
['9b0b337dc0f229424decca59fc8f57f558fee63d']
Fix different node binary warning
[{'old_path': None, 'new_path': '.npmrc', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1 @@\n+scripts-prepend-node-path=true\n'}]
TypeScript
db41f106bc589b3016ab0889e5d5ec82c3d4950f
29
2019-07-18 18:09:20-05:00
18,000
['b6fdb7d0e7f4abc7f35e53b6822b8e5176c52b31']
Fix open flag when using 0.0.0.0
[{'old_path': 'src/cli.ts', 'new_path': 'src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -193,9 +193,11 @@ const main = async (): Promise<void> => {\n \t\tconsole.log(" - Not serving HTTPS");\n \t}\n \n-\tif (args["open"]) {\n-\t\tawait open(serverAddress).catch(console.error);\n-\t\tconsole.log(` - Op...
TypeScript
4b0cceb91acc3179126aaa5fb546c5fe87b3b32c
29
2019-07-18 18:09:21-05:00
18,000
['db41f106bc589b3016ab0889e5d5ec82c3d4950f']
Extract ripgrep when inside binary
[{'old_path': 'scripts/nbin-shim.js', 'new_path': 'scripts/nbin-shim.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,8 +1,17 @@\n+/* global require, global, process, __dirname */\n if (!global.NBIN_LOADED) {\n \ttry {\n \t\tconst nbin = require("nbin");\n \t\tnbin.shimNativeFs("{{ROOT_PATH}}");\n \t\tglobal.N...
TypeScript
45d348b03d88adff27b67e81a2219aaafa185f11
29
2019-07-18 18:09:22-05:00
18,000
['4b0cceb91acc3179126aaa5fb546c5fe87b3b32c']
Expose API on the client
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -312,10 +312,34 @@ index 8e1b68eb36..2b6a0d5b15 100644\n +\t}\n +}\n diff --git a/src/vs/workbench/browser/web.main.ts b/src/vs/workbench/browser/web.main.ts\n-index 1986fb6642..afbe385af6 100644\...
TypeScript
2be452d83ec41add5192cb0493bf93d7cdf3cdc0
29
2019-07-18 18:09:24-05:00
18,000
['b0e6c1cc4eeef4ec50ea91f06883257efc6ea28e']
Fix rg extraction in Docker build
[{'old_path': '.dockerignore', 'new_path': '.dockerignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,11 @@\n Dockerfile\n-doc/\n+build\n+deployment\n+doc\n+.git\n .github\n .gitignore\n+.node-version\n .travis.yml\n LICENSE\n README.md\n'}, {'old_path': 'scripts/tasks.bash', 'new_path': 'scripts/tasks....
TypeScript
36b8731cfe769636a5a55d63f451442d53708dd0
29
2019-07-19 18:45:13-05:00
18,000
['9fdfacb31418f8a39dc17c930b0a830c956b80cd']
Add some missing development steps
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -99,12 +99,14 @@ We use the data collected to improve code-server.\n ```fish\n git clone https://github.com/microsoft/vscode\n cd vscode\n+git checkout 1.36.0\n git clone https://github.com/cdr/code-server src/vs/serve...
TypeScript
078af59fd8af637e1f4f911b5ad10e812dfcf9c1
70
2019-07-22 10:21:15-05:00
18,000
['36b8731cfe769636a5a55d63f451442d53708dd0']
Replace demo image with GIF (#863)
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,7 +19,7 @@ docker run -it -p 127.0.0.1:8443:8443 -p 127.0.0.1:8444:8444 -v "$PWD:/home/code\n - All intensive computation runs on your server.\n - You\'re no longer running excess instances of Chrome.\n \n-![Sc...
TypeScript
cd54aec2f90d2bed310145af99371c3d04f523bc
29
2019-07-22 11:09:26-05:00
18,000
['078af59fd8af637e1f4f911b5ad10e812dfcf9c1']
Fix login redirect when not using https
[{'old_path': 'src/server.ts', 'new_path': 'src/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -111,8 +111,10 @@ export abstract class Server {\n \tprotected readonly server: http.Server | https.Server;\n \tprotected rootPath = path.resolve(__dirname, "../../../..");\n \tprivate listenPromise: Promise<st...
TypeScript
436ef7bd5c9585bbbeaef40407d1c8122f62f7af
29
2019-07-22 18:01:46-05:00
18,000
['09cd1e8540ed2f417cdbc7d7a787b4cffb9972cf']
Fix VS Code version in readme and describe our changes
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -99,7 +99,7 @@ We use the data collected to improve code-server.\n ```fish\n git clone https://github.com/microsoft/vscode\n cd vscode\n-git checkout 1.36.0\n+git checkout 1.36.1\n git clone https://github.com/cdr/code...
TypeScript
92daabc75cf81db93e90d1ad9e9c44f6700ba43d
29
2019-07-23 14:55:48-05:00
18,000
['068e07bd5d1290ae46be3ee2c0f0df6071d30bed']
Open folder at base URL
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -63,7 +63,7 @@ index ff62e0a65a..21cd50eaf9 100644\n \t\t<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />\n \n diff --git a/src/vs/co...
TypeScript
7b7f5b542eb4b600d002deb798c7f6ac850199da
29
2019-07-23 15:17:25-05:00
18,000
['92daabc75cf81db93e90d1ad9e9c44f6700ba43d']
Add base path argument It's only used for the login redirect.
[{'old_path': 'src/cli.ts', 'new_path': 'src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -15,6 +15,7 @@ import { generateCertificate, generatePassword, open, unpackExecutables } from "\n interface Args extends ParsedArgs {\n \t"allow-http"?: boolean;\n \tauth?: boolean;\n+\t"base-path"?: string;\n \tcert...
TypeScript
fd55139c8211fb0d09488f6ea6c47ae41963c85d
29
2019-07-23 18:59:39-05:00
18,000
['7b7f5b542eb4b600d002deb798c7f6ac850199da']
Make flags additive and clean up docs This means that you have to turn on features now instead of disabling them like auth and https. In addition: - Allow multiple options for auth (only password for now). - Combine the install docs since they had many commonalities and - generally simplified them (hopefully not too ...
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,15 +1,11 @@\n-# code-server\n-[!["Open Issues"](https://img.shields.io/github/issues-raw/cdr/code-server.svg)](https://github.com/cdr/code-server/issues)\n-[!["Latest Release"](https://img.shields.io/github/release/...
TypeScript
329acbb251c38ba5ae1259b0fc90d5de21515442
29
2019-07-23 19:22:10-05:00
18,000
['fd55139c8211fb0d09488f6ea6c47ae41963c85d']
Combine main and webview servers
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -57,6 +57,5 @@ VOLUME [ "/home/coder/project" ]\n \n COPY --from=0 /src/build/code-server /usr/local/bin/code-server\n EXPOSE 8443\n-EXPOSE 8444\n \n ENTRYPOINT ["dumb-init", "code-server", "--host", "0.0.0.0"]\n'}, ...
TypeScript
4c4a179bce985340cbb5fa0f0dfa8844a5e5a90b
29
2019-07-26 17:26:45-05:00
18,000
['a4f21fb0d4aea7c3bdc8309f5d8bbbb2522a6b57']
TLS socket still doesn't work
[{'old_path': 'scripts/ci.bash', 'new_path': 'scripts/ci.bash', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -17,7 +17,7 @@ function docker-build() {\n \tif [[ "${image}" == "codercom/nbin-alpine" ]] ; then\n \t\tdocker exec "${containerId}" apk add libxkbfile-dev libsecret-dev\n \telse\n-\t\t# TODO: at some point...
TypeScript
c67844d3566986be0dcc56a7b5a1a78b84d3f9b0
68
2019-07-28 10:35:52-05:00
18,000
['f25a614333aa9599906d077c4aa7808a5f1688a8']
update README.md Removed linked to coder.com/enterprise,(404) replaced with link to coder.com
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -84,7 +84,7 @@ Development guides are coming soon.\n \n ## Enterprise\n \n-Visit [our enterprise page](https://coder.com/enterprise) for more information about our enterprise offering.\n+Visit [our website](https://cod...
TypeScript
87be3ac2356241536fcf5dd9636da570a6e073ff
29
2019-07-31 17:22:11-05:00
18,000
['011530e11b505fefd76d79dfba061bf2d9a17de3']
Add comment explaining use of merge
[{'old_path': 'scripts/merge.js', 'new_path': 'scripts/merge.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,3 +1,6 @@\n+// This is used to merge JSON files (package.json and product.json) and delete a\n+// few entries we don\'t want. It\'s extremely simple, expects very specific\n+// input, and doesn\'t have...
TypeScript
0315b004a7be5aa72d971229041a9771dd07db30
29
2019-07-31 17:22:14-05:00
18,000
['87be3ac2356241536fcf5dd9636da570a6e073ff']
Add comment for the nbin shim
[{'old_path': 'scripts/nbin-shim.js', 'new_path': 'scripts/nbin-shim.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,3 +1,5 @@\n+// This file is prepended to loader/entry code (like our main.js or VS Code\'s\n+// bootstrap-fork.js). {{ROOT_PATH}} is replaced during the build process.\n if (!global.NBIN_LOADED...
TypeScript
62719ab5449eb6a8ed69c2ab775830dd19b99ee0
29
2019-07-31 17:22:15-05:00
18,000
['0315b004a7be5aa72d971229041a9771dd07db30']
Clean up client API - Don't use "any" for the API type. - Remove everything from the Coder API that can eventually be done through the VS Code API. - Move the event emission to our own client to minimize patching.
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -573,34 +573,27 @@ index 5a758eb786..7fcacb5ca7 100644\n \t\ttemplateData.actionBar.context = (<TreeViewItemHandleArg>{ $treeViewId: this.treeViewId, $treeItemHandle: node.handle });\n \t\ttempl...
TypeScript
12af311ce70886b4530b7c55a4342ff7682ebb53
29
2019-07-31 17:22:16-05:00
18,000
['62719ab5449eb6a8ed69c2ab775830dd19b99ee0']
Use our logger instead of raw console.log
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,6 +23,7 @@\n "@types/node": "^10.12.12"\n },\n "dependencies": {\n+ "@coder/logger": "^1.1.5",\n "httpolyglot": "^0.1.2",\n "pem": "^1.14.2",\n "safe-compare": "^1.1.4"\n'}, {'old_path'...
TypeScript
5944b842dee27099c31ccfcbea88277dadc10022
29
2019-07-31 17:22:17-05:00
18,000
['12af311ce70886b4530b7c55a4342ff7682ebb53']
Make it clearer what the tar code does
[{'old_path': 'src/cli.ts', 'new_path': 'src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,7 +8,7 @@ import pkg from "vs/platform/product/node/package";\n import product from "vs/platform/product/node/product";\n \n import { MainServer } from "vs/server/src/server";\n-import "vs/server/src/tar";\n+impor...
TypeScript
bd0f1d024b612c0214269fd4f6d4b54c9334c27c
29
2019-07-31 17:22:18-05:00
18,000
['5944b842dee27099c31ccfcbea88277dadc10022']
Support vscode-resource requests in webview
[{'old_path': 'src/server.ts', 'new_path': 'src/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -437,6 +437,9 @@ export class MainServer extends Server {\n \t\t\tcase "/": return this.getRoot(request, parsedUrl);\n \t\t\tcase "/resources": return this.getResource(requestPath);\n \t\t\tcase "/webview":\n+\...
TypeScript
bce0cac48f8c58169c7513582ddc7bcbc2929bf8
29
2019-07-31 17:22:18-05:00
18,000
['bd0f1d024b612c0214269fd4f6d4b54c9334c27c']
Document recent VS Code patch changes
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -113,7 +113,7 @@ Our changes include:\n - Allow multiple extension directories (both user and built-in).\n - Rewrite assets used in the CSS (like icons) or as images to use the base URL.\n - Change the loader to use...
TypeScript
bdd9d65146a1c6b48be9eae97cb893d8f1461d32
36
2019-08-02 14:08:33+10:00
-36,000
['4bfa6864334ae5eb0a439de192c850102ec11285']
Add DigitalOcean button to README
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -23,6 +23,8 @@ docker run -it -p 127.0.0.1:8443:8443 -v "${PWD}:/home/coder/project" codercom/c\n \n ## Getting Started\n \n+[![Create a Droplet](./doc/assets/do-new-droplet-btn.svg)](https://marketplace.digitalocean.c...
TypeScript
712274d912f68d545db3426c0de9cedbb37c567a
29
2019-08-02 19:29:00-05:00
18,000
['60ed0653bc813c0b3f331767503e5a8f64d30f9e']
Groundwork for language support - Implement the localization service. - Use the proper build process which generates the require JSON files. - Implement getting the locale and language configuration.
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -16,6 +16,8 @@ matrix:\n - os: osx\n env:\n - VSCODE_VERSION="1.36.1" MAJOR_VERSION="2" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER"\n+before_install:\n+- if [[ "$TRAVIS_BRANCH" == "master" ]]; then ex...
TypeScript
950bfce4200088fd5f8289ce8fc3b3b3216965ea
29
2019-08-02 20:29:48-05:00
18,000
['5b64cb3400fcee30abdd1079f9dca3464412ecd3']
Add commit, date, and checksums to product.json
[{'old_path': 'scripts/tasks.bash', 'new_path': 'scripts/tasks.bash', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -72,10 +72,10 @@ function build-code-server() {\n \tcd "${buildPath}" && yarn --production --force --build-from-source\n \trm "${buildPath}/"{package.json,yarn.lock,.yarnrc}\n \n-\tlocal json="{\\"cod...
TypeScript
dde683d911ff2a0e0f7569aff7370a6e2d561b3b
29
2019-08-05 10:38:55-05:00
18,000
['950bfce4200088fd5f8289ce8fc3b3b3216965ea']
Fix login submission when using a base path
[{'old_path': 'src/login/index.html', 'new_path': 'src/login/index.html', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -101,7 +101,7 @@\n \t\t</style>\n \t</head>\n \t<body>\n-\t\t<form class="login-form" action="/login" method="post">\n+\t\t<form class="login-form" method="post">\n \t\t\t<h4 class="title">code-se...
TypeScript
590f6996873589aafb73f5623337bb2f25bd6e5e
29
2019-08-05 11:03:47-05:00
18,000
['dde683d911ff2a0e0f7569aff7370a6e2d561b3b']
Allow specifying the target You still must build on the target system though because of the native Node modules.
[{'old_path': 'scripts/ci.bash', 'new_path': 'scripts/ci.bash', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,6 +3,7 @@ set -euo pipefail\n \n # Build using a Docker container.\n function docker-build() {\n+\tlocal target="${TARGET:-}"\n \tlocal image="codercom/nbin-${target}"\n \tif [[ "${target}" == "linux" ]]...
TypeScript
dc333d4321a0e8e42365689c5059f0ae349da912
29
2019-08-05 13:05:09-05:00
18,000
['590f6996873589aafb73f5623337bb2f25bd6e5e']
Fix extensions not being bundled into prebuilt
[{'old_path': 'scripts/tasks.bash', 'new_path': 'scripts/tasks.bash', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -233,8 +233,9 @@ function main() {\n \n \tif [[ "${task}" == "package-prebuilt" ]] ; then\n \t\tlocal archiveName="vscode-${vscodeVersion}.tar.gz"\n-\t\tcd "${stagingPath}"\n+\t\tcd "${sourcePath}"\n ...
TypeScript
7e794bd1348450048dcc05bff9d7180c1ddf6b9f
29
2019-08-05 13:34:32-05:00
18,000
['dc333d4321a0e8e42365689c5059f0ae349da912']
Fix favicon not being included in final build
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -11,7 +11,7 @@ index 0dd2e5abf1..fc6875f3c2 100644\n // All Build\n const compileBuildTask = task.define('compile-build', task.parallel(compileClientBuildTask, compileExtensionsBuildTask));\n di...
TypeScript
7d35144952882f0080af0e675eeaafcc1634e5cd
36
2019-08-06 12:39:39+10:00
-36,000
['bdd9d65146a1c6b48be9eae97cb893d8f1461d32']
Add GitHub fonts to DigitalOcean button
[{'old_path': 'doc/assets/do-new-droplet-btn.svg', 'new_path': 'doc/assets/do-new-droplet-btn.svg', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -14,7 +14,8 @@\n <polygon id="XMLID_46_" points="6.66666667 19.047619 3.80952381 19.047619 3.80952381 19.047619 3.80952381 16.1904762 6.66666667 16.19...
TypeScript
01a9ab332e58f09134f96062927f5bfd83ee5962
29
2019-08-07 15:13:39-05:00
18,000
['7e794bd1348450048dcc05bff9d7180c1ddf6b9f']
Set commit based on code-server instead of VS Code This ensures it'll be different for each build, otherwise it would also be the same as long as the VS Code version is the same.
[{'old_path': 'scripts/tasks.bash', 'new_path': 'scripts/tasks.bash', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -57,6 +57,8 @@ function prepend-loader() {\n function build-code-server() {\n \tcopy-server\n \tlocal min=""\n+\texport BUILD_SOURCEVERSION\n+\tBUILD_SOURCEVERSION=$(node -p "require(\'${sourcePath}/b...
TypeScript
2b3e8e1a898297f89cf84e506da6945079f6af73
29
2019-08-07 16:39:31-05:00
18,000
['f5a6f14aded7dbc22cee6ee7026c171ccc9e6804']
Don't exclude .git for Docker The build requires it to get the commit hash.
[{'old_path': '.dockerignore', 'new_path': '.dockerignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,6 @@ Dockerfile\n build\n deployment\n doc\n-.git\n .github\n .gitignore\n .node-version\n'}]
TypeScript
3667b16cba851c7aef46f41b2f5462ca707a811f
29
2019-08-07 18:18:01-05:00
18,000
['9d688e089409076e6092316e38ffb1612380ae38']
Add link to v2 preview
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,9 +1,8 @@\n-# code-server\n+# code-server [!["Open Issues"](https://img.shields.io/github/issues-raw/cdr/code-server.svg)](https://github.com/cdr/code-server/issues) [!["Latest Release"](https://img.shields.io/githu...
TypeScript
d4ed2efa718d9e6c5d2c8b151e168564063641d9
29
2019-08-08 11:21:45-05:00
18,000
['2b3e8e1a898297f89cf84e506da6945079f6af73']
Change default port to 8080
[{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -52,6 +52,6 @@ WORKDIR /home/coder/project\n VOLUME [ "/home/coder/project" ]\n \n COPY --from=0 /src/build/code-server /usr/local/bin/code-server\n-EXPOSE 8443\n+EXPOSE 8080\n \n ENTRYPOINT ["dumb-init", "code-serve...
TypeScript
6b579d65ef864964667691fb17ae1058d6f80888
29
2019-08-08 11:39:06-05:00
18,000
['d4ed2efa718d9e6c5d2c8b151e168564063641d9']
Fix webview address when using a proxy
[{'old_path': 'src/server.ts', 'new_path': 'src/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -119,7 +119,7 @@ export abstract class Server {\n \tprotected readonly server: http.Server | https.Server;\n \tprotected rootPath = path.resolve(__dirname, "../../../..");\n \tprivate listenPromise: Promise<str...
TypeScript
b257c60636f5d1f767e3e37f53070fe9af873b48
29
2019-08-08 11:59:07-05:00
18,000
['6b579d65ef864964667691fb17ae1058d6f80888']
Fix websocket defaulting to port 80 when authority has no port
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -619,7 +619,7 @@ index d39c5877d6..c189d6f19f 100644\n \n const rootPath = path.dirname(getPathFromAmdModule(require, ''));\n diff --git a/src/vs/platform/remote/browser/browserWebSocketFactory....
TypeScript
8c39e085f487deb479260acb018724377ee894e8
29
2019-08-08 13:40:01-05:00
18,000
['3667b16cba851c7aef46f41b2f5462ca707a811f']
Use generic releases link for v2 message
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n # code-server [!["Open Issues"](https://img.shields.io/github/issues-raw/cdr/code-server.svg)](https://github.com/cdr/code-server/issues) [!["Latest Release"](https://img.shields.io/github/release/cdr/co...
TypeScript
ba7285192c4d210afcc5b889f2f33d1a43ede01a
29
2019-08-09 19:23:41-05:00
18,000
['b257c60636f5d1f767e3e37f53070fe9af873b48']
Update VS Code to 1.37.0
[{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,14 +8,14 @@ matrix:\n - os: linux\n dist: trusty\n env:\n- - VSCODE_VERSION="1.36.1" MAJOR_VERSION="2" VERSION="$MAJOR_VERSION.$TRAVIS_BUILD_NUMBER" TARGET="linux"\n+ - VSCODE_VERSION="1.37.0...
TypeScript
2807ce495e8d9e6e28483e65e096ceddd17008f1
29
2019-08-09 19:23:44-05:00
18,000
['ba7285192c4d210afcc5b889f2f33d1a43ede01a']
Add tar-stream dependency It's no longer included by the remote dependencies.
[{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -20,12 +20,14 @@\n "nodemon": "^1.19.1"\n },\n "resolutions": {\n- "@types/node": "^10.12.12"\n+ "@types/node": "^10.12.12",\n+ "safe-buffer": "^5.1.1"\n },\n "dependencies": {\n "@coder/...
TypeScript
7389d9e2cb2d61e6d60b01cc9e25348f7d827552
29
2019-08-12 10:23:08-05:00
18,000
['1d61cbe5362a329b0e52abf11466c636167112ff']
Use current URL for webview
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -111,8 +111,8 @@ Our changes include:\n - Add a `code-server` schema.\n - Allow multiple extension directories (both user and built-in).\n - Rewrite assets requested by the browser to use the base URL.\n-- Modify the l...
TypeScript
b566b66590487af9f50f9349d4e13ca14352fb39
29
2019-08-12 11:24:05-05:00
18,000
['7389d9e2cb2d61e6d60b01cc9e25348f7d827552']
Fix service worker scope when there is a base path
[{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -110,9 +110,8 @@ directory.\n Our changes include:\n - Add a `code-server` schema.\n - Allow multiple extension directories (both user and built-in).\n-- Rewrite assets requested by the browser to use the base URL.\n--...
TypeScript
55395196915efc6205d98bbce444b0a3df22007c
29
2019-08-12 11:36:47-05:00
18,000
['b566b66590487af9f50f9349d4e13ca14352fb39']
Remove extra slash when opening folder
[{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -556,7 +556,7 @@ index ede771a03e..bb40fcdd6b 100644\n \t\t\tif (!userDataProvider) {\n \t\t\t\tconst remoteUserDataUri = this.getRemoteUserDataUri();\n diff --git a/src/vs/workbench/browser/web...
TypeScript
90e8714e7149daf47aa09321d64a04ffd9266ee2
29
2019-08-12 11:55:33-05:00
18,000
['55395196915efc6205d98bbce444b0a3df22007c']
Preserve query variables when redirecting
[{'old_path': 'src/server.ts', 'new_path': 'src/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -189,7 +189,8 @@ export abstract class Server {\n \t}\n \n \tprotected withBase(request: http.IncomingMessage, path: string): string {\n-\t\treturn `${this.protocol}://${request.headers.host}${this.options.base...
TypeScript