Search is not available for this dataset
hash string | author int32 | committer_date string | timezone int64 | parents string | message string | changes string | language string |
|---|---|---|---|---|---|---|---|
4a80bcb42c8ecc72835cc2aa81b37cc21cf4c613 | 29 | 2019-02-19 10:17:03-06:00 | 21,600 | ['73762017c83789146e8093aed170472bb2ee903a'] | Make everything use active evals (#30)
* Add trace log level
* Use active eval to implement spdlog
* Split server/client active eval interfaces
Since all properties are *not* valid on both sides
* +200% fire resistance
* Implement exec using active evaluations
* Fully implement child process streams
... | [{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,6 +28,7 @@\n "mini-css-extract-plugin": "^0.5.0",\n "node-sass": "^4.11.0",\n "npm-run-all": "^4.1.5",\n+ "path-browserify": "^1.0.0",\n "preload-webpack-plugin": "^3.0.0-beta.2",\n "sa... | TypeScript |
2889b3fedea2eb769703878b9922a2c55b94a8cf | 29 | 2019-02-19 10:42:32-06:00 | 21,600 | ['4a80bcb42c8ecc72835cc2aa81b37cc21cf4c613'] | Add test for disposing active evaluations | [{'old_path': 'packages/protocol/src/browser/client.ts', 'new_path': 'packages/protocol/src/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -48,6 +48,10 @@ export class Client {\n \t\t});\n \t}\n \n+\tpublic dispose(): void {\n+\t\tthis.connection.close();\n+\t}\n+\n \tpublic get initData(): Promi... | TypeScript |
d80f82ab98857d23ed66d7c4d15389b3ccb3dfd4 | 29 | 2019-02-19 14:21:04-06:00 | 21,600 | ['2889b3fedea2eb769703878b9922a2c55b94a8cf'] | Move and refactor fs tests | [{'old_path': 'packages/ide/package.json', 'new_path': 'packages/ide/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,10 @@\n {\n "name": "@coder/ide",\n "description": "Browser-based IDE client abstraction.",\n- "main": "src/index.ts"\n+ "main": "src/index.ts",\n+ "dependencies": {},\n+ ... | TypeScript |
3685e6555c795762169300ddb108d6e2d7af3bbc | 29 | 2019-02-19 15:30:56-06:00 | 21,600 | ['d80f82ab98857d23ed66d7c4d15389b3ccb3dfd4'] | Move and refactor child_process tests | [{'old_path': 'packages/ide/src/fill/child_process.ts', 'new_path': 'packages/ide/src/fill/child_process.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -60,9 +60,9 @@ class ChildProcess extends CallbackEmitter implements cp.ChildProcess {\n \t\t\t}\n \n \t\t\tae.on("disconnect", () => childProcess.disconnect())... | TypeScript |
ed50c64a7719ea66e1e15134b301f080269810d4 | 29 | 2019-02-19 16:36:35-06:00 | 21,600 | ['e6f8786df2bbc0119e43f6a4b039d5285ff2064d'] | Move and refactor net tests | [{'old_path': 'packages/ide/src/fill/net.ts', 'new_path': 'packages/ide/src/fill/net.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -97,9 +97,7 @@ class Server extends CallbackEmitter implements net.Server {\n \t\t\tconst { maybeCallback, bindSocket, createUniqueEval } = __non_webpack_require__("@coder/ide/src/... | TypeScript |
33c2d451c4fb115d45b853e0d98af543c154c7f0 | 29 | 2019-02-19 16:46:42-06:00 | 21,600 | ['ed50c64a7719ea66e1e15134b301f080269810d4'] | Fix incorrect options to node-pty | [{'old_path': 'packages/vscode/src/fill/node-pty.ts', 'new_path': 'packages/vscode/src/fill/node-pty.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -53,12 +53,6 @@ class Pty implements nodePty.IPty {\n \t\t\t\t\tsetTimeout(() => ptyProc.kill("SIGKILL"), 5000); // Double tap.\n \t\t\t\t},\n \t\t\t};\n-\t\t}, fil... | TypeScript |
6708c8a5c80bd7f49295741932a2fdd7fe5160b5 | 29 | 2019-02-19 17:58:17-06:00 | 21,600 | ['33c2d451c4fb115d45b853e0d98af543c154c7f0'] | Prevent shared process from loading client code
I think this happened when I added the trash code, since that's what
includes the client. | [{'old_path': 'packages/vscode/src/fill/stdioElectron.ts', 'new_path': 'packages/vscode/src/fill/stdioElectron.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,12 @@\n import { StdioIpcHandler } from "@coder/server/src/ipc";\n import { IpcRenderer } from "electron";\n \n-export * from "@coder/ide/src/fill... | TypeScript |
6b5f50cddfc66f580e3547433114bb24606a58e4 | 29 | 2019-02-19 18:02:01-06:00 | 21,600 | ['6708c8a5c80bd7f49295741932a2fdd7fe5160b5'] | Handle shared process `error` event; add some logging | [{'old_path': 'packages/server/src/vscode/sharedProcess.ts', 'new_path': 'packages/server/src/vscode/sharedProcess.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,7 +7,7 @@ import { StdioIpcHandler } from "../ipc";\n import { ParsedArgs } from "vs/platform/environment/common/environment";\n import { Emitter }... | TypeScript |
bdd24081ab9cedac2c8ae5eb3f4117bc5e785ec2 | 29 | 2019-02-20 12:54:26-06:00 | 21,600 | ['6b5f50cddfc66f580e3547433114bb24606a58e4'] | Get version from vscode's package.json | [{'old_path': 'packages/vscode/src/fill/package.ts', 'new_path': 'packages/vscode/src/fill/package.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,2 +1,2 @@\n-// TODO: obtain this in a reasonable way.\n-export default { name: "vscode", version: "1.31.1" };\n+import * as packageJson from "../../../../lib/vscod... | TypeScript |
85d2225e0cc250c4af289c17513f5062bdd56f66 | 70 | 2019-02-21 11:55:42-06:00 | 21,600 | ['bdd24081ab9cedac2c8ae5eb3f4117bc5e785ec2'] | Featureful (#31)
* Fix loading within the CLI
* Remove app
* Remove promise handle
* Add initial travis file
* Add libxkbfile dependency
* Add libxkbfile-dev
* Add build script
* Fix malformed bash statement
* Remove yarn from script
* Improve build script
* Extract upx before usage
* ... | [{'old_path': '.gitignore', 'new_path': '.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,3 +1,4 @@\n lib\n node_modules\n dist\n+out\n\\ No newline at end of file\n'}, {'old_path': None, 'new_path': '.travis.yml', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,23 @@\n+language: node_js\n+node_... | TypeScript |
227474c1564d12cad021a518562bce32792b0f57 | 29 | 2019-02-21 14:11:49-06:00 | 21,600 | ['bc076ca30d1af07110dbc9ae208e5b6ed9afaf40'] | Fix storage path ending replacement | [{'old_path': 'packages/vscode/src/fill/storageDatabase.ts', 'new_path': 'packages/vscode/src/fill/storageDatabase.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -14,10 +14,11 @@ class StorageDatabase implements workspaceStorage.IStorageDatabase {\n \tpublic readonly onDidChangeItemsExternal = Event.None;\n \tp... | TypeScript |
7edf797efc2ef1d6e996afd1322dc4cf3df82f58 | 29 | 2019-02-21 14:11:49-06:00 | 21,600 | ['fe107802e3830f70890bb5ca58cc1f5410af4a6d'] | Parse args sent through evaluation function
Previously they'd go in still stringified so we didn't get a chance to
convert buffer objects back to buffers, for example, making things like
`fs.write` write `[object Object]` to files. | [{'old_path': 'packages/ide/test/fs.test.ts', 'new_path': 'packages/ide/test/fs.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -11,7 +11,7 @@ const fs = require("../src/fill/fs") as typeof import("fs");\n \n describe("fs", () => {\n \tlet i = 0;\n-\tconst coderDir = path.join(os.tmpdir(), "coder");\n+\tcon... | TypeScript |
de3fbd689f4a3942c7204140d68f5ec03b6396a8 | 70 | 2019-02-22 15:06:34-06:00 | 21,600 | ['73d6b77614685e30575b485695c485cddf635649'] | Fix local building for module extraction | [{'old_path': 'packages/server/src/modules.ts', 'new_path': 'packages/server/src/modules.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,10 +8,6 @@ declare var __non_webpack_require__: typeof require;\n * Handling of native modules within the CLI\n */\n export const setup = (dataDirectory: string): void => ... | TypeScript |
8b8bef015e2fc582880a3dcff7487edf04027574 | 29 | 2019-02-22 15:56:29-06:00 | 21,600 | ['de3fbd689f4a3942c7204140d68f5ec03b6396a8'] | Add evaluation helpers (#33)
* Add evaluation helpers
* Make some helpers only available server-side
They don't make any sense on the client side.
* Fork the right thing | [{'old_path': 'packages/ide/src/fill/child_process.ts', 'new_path': 'packages/ide/src/fill/child_process.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n import * as cp from "child_process";\n import * as net from "net";\n import * as stream from "stream";\n-import { CallbackEmitter, ActiveEvalRead... | TypeScript |
d9fc29fb0b404e95a8a23a2341e43bd444846e25 | 29 | 2019-02-22 16:31:21-06:00 | 21,600 | ['8b8bef015e2fc582880a3dcff7487edf04027574'] | Pass data directory when forking with bootstrap | [{'old_path': 'packages/protocol/src/common/helpers.ts', 'new_path': 'packages/protocol/src/common/helpers.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,7 +7,7 @@ import { logger } from "@coder/logger";\n \n // tslint:disable no-any\n \n-export type ForkProvider = (modulePath: string, args: string[], option... | TypeScript |
80d9baadc0e2728ac91e701d1787ca0313b745c8 | 29 | 2019-02-22 18:57:19-06:00 | 21,600 | ['59eec534b6e049e5f4c38d8c732136638288d742'] | Attempt to require spdlog and node-pty | [{'old_path': 'packages/protocol/src/common/helpers.ts', 'new_path': 'packages/protocol/src/common/helpers.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,6 +7,9 @@ import { logger } from "@coder/logger";\n \n // tslint:disable no-any\n \n+declare var __non_webpack_require__: typeof require;\n+declare var __w... | TypeScript |
1e55736c69be838ed160904aa852a140e51869c1 | 29 | 2019-02-25 11:53:02-06:00 | 21,600 | ['80d9baadc0e2728ac91e701d1787ca0313b745c8'] | Move string replacements for node-pty to general | [{'old_path': 'packages/server/webpack.config.js', 'new_path': 'packages/server/webpack.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,39 +1,10 @@\n const path = require("path");\n const webpack = require("webpack");\n const merge = require("webpack-merge");\n-const StringReplacePlugin = require("stri... | TypeScript |
eaea947318c4869c34b45c17e2ed0b7ed140ff0d | 29 | 2019-02-25 15:18:44-06:00 | 21,600 | ['1e55736c69be838ed160904aa852a140e51869c1'] | Fix spdlog and node-pty in binary | [{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -82,7 +82,7 @@ const buildServerBinaryCopy = register("build:server:binary:copy", async (runner\n \tconst webOutputPath = path.join(pkgsPath, "web", "out");\n \tconst browserAppOutputPath = path.join(pkgsPath... | TypeScript |
0c2c9573128dfa79166a6e342862df5f318474a9 | 70 | 2019-02-25 16:29:34-06:00 | 21,600 | ['eaea947318c4869c34b45c17e2ed0b7ed140ff0d'] | Fix readdir for root path (#35)
* Fix readdir for root path
* Fix merge of webpack conf
* Fix travis.yml to deploy on master
* Remove windows platform from travis.yml
* Enable caching
* mkdirpSync
* Fix build script | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,4 +1,8 @@\n language: node_js\n+cache:\n+ yarn: true\n+ directories:\n+ - lib\n node_js:\n - 8.9.3\n matrix:\n@@ -6,7 +10,6 @@ matrix:\n - os: linux\n dist: ubuntu\n - os: osx\n- - os: windows\n be... | TypeScript |
14da71499f752f3ab10653f0370fbee5ea513e80 | 29 | 2019-02-26 12:01:14-06:00 | 21,600 | ['0c2c9573128dfa79166a6e342862df5f318474a9'] | Set platform based on server (#32)
* Set platform based on server
Had to refactor a bit to ensure our values get set before VS Code tries
to use them.
* Pave the way for mnemonics on all platforms
* Fix context menus on Mac
* Fix a bunch of things on Mac including menu bar
* Set keybindings based on cl... | [{'old_path': 'packages/ide/src/client.ts', 'new_path': 'packages/ide/src/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,6 +5,7 @@ import { upload } from "./upload";\n import { client } from "./fill/client";\n import { clipboard } from "./fill/clipboard";\n import { INotificationService, IProgressServ... | TypeScript |
7b5871136bee580f4af2b02ebd93df409b268c43 | 70 | 2019-02-26 12:12:42-06:00 | 21,600 | ['14da71499f752f3ab10653f0370fbee5ea513e80'] | Add IDE API (#36) | [{'old_path': None, 'new_path': 'packages/ide-api/README.md', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,5 @@\n+# ide-api\n+\n+Provides window listeners for interfacing with the IDE.\n+\n+Created for content-scripts.\n\\ No newline at end of file\n'}, {'old_path': None, 'new_path': 'packages/ide-api/api.d.t... | TypeScript |
04e02bdb08ffefe78407f246fd8ab8891d793e5a | 29 | 2019-02-26 14:23:01-06:00 | 21,600 | ['7b5871136bee580f4af2b02ebd93df409b268c43'] | Fix extra CSS being included on the client | [{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,7 +28,7 @@ const buildServerBinaryPackage = register("build:server:binary:package", async (\n \tconst cliPath = path.join(pkgsPath, "server");\n \trunner.cwd = cliPath;\n \tif (!fs.existsSync(path.join(cl... | TypeScript |
fa26c0bcd6faa45e8890379a84aa982fb0d20254 | 29 | 2019-02-26 14:23:10-06:00 | 21,600 | ['04e02bdb08ffefe78407f246fd8ab8891d793e5a'] | Fix undefined navigator in bootstrap fork
Due to some files that now import browser.ts. | [{'old_path': 'packages/vscode/webpack.bootstrap.config.js', 'new_path': 'packages/vscode/webpack.bootstrap.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -49,6 +49,7 @@ module.exports = merge(\n \t\t\t\t"node-pty": path.resolve(fills, "empty.ts"),\n \t\t\t\t"windows-mutex": path.resolve(fills, "empty.ts... | TypeScript |
1f3cbc0717b8b1dc264728fca5490b2608816c47 | 29 | 2019-02-26 14:31:25-06:00 | 21,600 | ['fa26c0bcd6faa45e8890379a84aa982fb0d20254'] | Use client OS to set shell class | [{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -528,12 +528,12 @@ index bc02c150a7..4ef622f669 100644\n @@ -632 +632,0 @@ configurationRegistry.registerConfiguration({\n -\n diff --git a/src/vs/workbench/electron-browser/shell.ts b/src/vs/work... | TypeScript |
f05ce105e85c6a4a9be9c667ef1cda150b270402 | 29 | 2019-02-26 14:41:34-06:00 | 21,600 | ['1f3cbc0717b8b1dc264728fca5490b2608816c47'] | Update dialog to use workbench instead of client | [{'old_path': 'packages/vscode/src/dialog.ts', 'new_path': 'packages/vscode/src/dialog.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,8 +1,7 @@\n-import { Emitter, Event } from "@coder/events";\n-import { client as ideClient } from "@coder/ide/src/fill/client";\n-import { client } from "@coder/vscode/src/cli... | TypeScript |
a07d0c9c3db008f1eef86e3d5ccb95e3cc5b58af | 29 | 2019-02-26 15:09:59-06:00 | 21,600 | ['f05ce105e85c6a4a9be9c667ef1cda150b270402'] | Fix file open overflow on Firefox | [{'old_path': 'packages/vscode/src/dialog.scss', 'new_path': 'packages/vscode/src/dialog.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -62,11 +62,6 @@\n \t\t}\n \t}\n \n- .file-area {\n- flex: 1;\n- display: flex;\n- flex-direction: column;\n-\n \t.dialog-grid {\n \t\tdisplay: grid;\n... | TypeScript |
be3f0c437ff10eb55f30ce0138f21c7dbcd95f4f | 70 | 2019-02-26 16:03:42-06:00 | 21,600 | ['a07d0c9c3db008f1eef86e3d5ccb95e3cc5b58af'] | Fixes browser app, adds no-auth (#38)
* Add no-auth flag
* Install packages for app dir | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -24,6 +24,7 @@ export class Entry extends Command {\n \t\topen: flags.boolean({ char: "o", description: "Open in browser on startup" }),\n \t\tport: flags.integer({ char: "p", default:... | TypeScript |
d556e110cb2a30520999874b2ba760b83cf27ef2 | 29 | 2019-02-26 16:27:01-06:00 | 21,600 | ['be3f0c437ff10eb55f30ce0138f21c7dbcd95f4f'] | Include code in stringified errors
This is done by returning the entire error stringified instead of just
the message.
This fixes the issue with the "save as" dialog. | [{'old_path': 'packages/ide/test/fs.test.ts', 'new_path': 'packages/ide/test/fs.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -496,8 +496,9 @@ describe("fs", () => {\n \t\t});\n \n \t\tit("should fail to stat nonexistent file", async () => {\n-\t\t\tawait expect(util.promisify(fs.stat)(tmpFile()))\n-\t\t\... | TypeScript |
71b7bbf99ad40d6ecd366463bd46ed5a6fae9aa2 | 29 | 2019-02-26 18:23:33-06:00 | 21,600 | ['d556e110cb2a30520999874b2ba760b83cf27ef2'] | Check EISDIR for Mac when performing mkdir | [{'old_path': 'packages/ide/test/fs.test.ts', 'new_path': 'packages/ide/test/fs.test.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,7 +25,7 @@ describe("fs", () => {\n \t\ttry {\n \t\t\tawait util.promisify(nativeFs.mkdir)(path.dirname(coderDir));\n \t\t} catch (error) {\n-\t\t\tif (error.code !== "EEXIST")... | TypeScript |
f421de29d0d8692eb76fa82c50b5536c7fc35d09 | 70 | 2019-02-27 09:38:45-06:00 | 21,600 | ['0b5b7afbacb659a426477c29ede763e85126f171'] | Fix IDE typing for custom event | [{'old_path': 'packages/ide-api/api.d.ts', 'new_path': 'packages/ide-api/api.d.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -127,6 +127,6 @@ declare global {\n \tinterface Window {\n \t\tide?: typeof ide;\n \t\n-\t\taddEventListener(event: "ide-ready", callback: (ide: CustomEvent & { readonly ide: IdeApi }) =... | TypeScript |
3bacbca325d23cff015f98ccaf95560b0009a26f | 29 | 2019-02-27 14:44:25-06:00 | 21,600 | ['20c0fc4c5236957f6a66a852de7e8088c613b253'] | Fix images not appearing (iconv encoding issue)
Fixed by returning the original buffer from `fs.read` and then just
using whatever encoding was passed in to iconv, so this should all work
exactly the same now as it does on native Node. | [{'old_path': 'packages/ide/src/fill/fs.ts', 'new_path': 'packages/ide/src/fill/fs.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -407,13 +407,12 @@ class FS {\n \t\t\treturn util.promisify(fs.read)(fd, buffer, 0, length, position).then((resp) => {\n \t\t\t\treturn {\n \t\t\t\t\tbytesRead: resp.bytesRead,\n-\t\... | TypeScript |
676b30934f2799f13d7e13dca9ad2de88dae2075 | 70 | 2019-02-27 15:12:26-06:00 | 21,600 | ['3bacbca325d23cff015f98ccaf95560b0009a26f'] | Add ripgrep, fill native fs functions, add ping endpoint (#39)
* Add ripgrep, fill native fs functions, add ping endpoint
* Make show in folder redirect to the workspace | [{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -83,6 +83,10 @@ const buildServerBinaryCopy = register("build:server:binary:copy", async (runner\n \tconst browserAppOutputPath = path.join(pkgsPath, "app", "browser", "out");\n \tconst nodePtyModule = path.j... | TypeScript |
68cb19ab6f67d4f9d6ab625333ddc59cc976420f | 29 | 2019-02-27 15:17:01-06:00 | 21,600 | ['676b30934f2799f13d7e13dca9ad2de88dae2075'] | Use client's OS for keybindings
Fixes https://github.com/codercom/frontend/issues/331. | [{'old_path': 'packages/vscode/src/fill/platform.ts', 'new_path': 'packages/vscode/src/fill/platform.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,5 +1,6 @@\n import * as os from "os";\n import * as platform from "vs/base/common/platform";\n+import * as browser from "vs/base/browser/browser";\n \n // tslint... | TypeScript |
6038744ca3289db6de4bc1c8e89ae392355140be | 70 | 2019-02-27 21:37:39-06:00 | 21,600 | ['2f5b36c5f46fdd32c42d8702334099f4b8e9e7c7'] | Remove filtering of secrets for windows build | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,6 +5,7 @@ cache:\n - lib\n node_js:\n - 8.9.3\n+filter_secrets: false\n matrix:\n include:\n - os: linux\n'}] | TypeScript |
e6689f3501943c05021a0874a460487bbb0414c9 | 70 | 2019-02-27 22:28:46-06:00 | 21,600 | ['83b64365ba58c926d15543639734c19eca5268d0'] | Fix yarn task for windows | [{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -5,6 +5,7 @@ import * as os from "os";\n import * as path from "path";\n import * as zlib from "zlib";\n \n+const isWin = os.platform() === "win32";\n const libPath = path.join(__dirname, "../lib");\n const v... | TypeScript |
e8174095ca508ebe6414410ac120e46b7192f00a | 70 | 2019-02-28 14:04:19-06:00 | 21,600 | ['1e30831c919b27fc79c8001f294675fb7c78fd53'] | Add windows support (#41)
* Add windows support
* Improve multi-platform support
* Install with network-concurrency 1
* Use file-glob to upload windows binary
* Don't install packages in parallel if on windows
* Rename vscode-remote to code-server
* Add output at intervals so CI doesn't kill build
... | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -27,7 +27,8 @@ deploy:\n skip_cleanup: true\n api_key:\n secure: T/yqCIeqLifteriv8D3CnehNFzSBP309GZqeUfyx8Q+xSQEttA9Enxl+Qw9GkdedYTN4J56iucHIac6CwcvKSKIXqk80CeSEW0BNxZs5wIgv4rRMMy/GAX0NBWKNOkoGlH8M6VyQcM7eY... | TypeScript |
94edbd59e920646d43e4082876f7ddeafaf9653f | 70 | 2019-02-28 16:06:17-06:00 | 21,600 | ['8327da8d00ed85e68c078051fda2a4037920a74a'] | Bypass certificates on bypass auth | [{'old_path': 'packages/server/src/server.ts', 'new_path': 'packages/server/src/server.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -77,6 +77,10 @@ export const createApp = async (options: CreateAppOptions): Promise<{\n \t};\n \n \tconst isEncrypted = (socket: net.Socket): boolean => {\n+\t\tif (options.bypas... | TypeScript |
8d37442e0cab7e586ac264ecd955d14d8c9d71cf | 29 | 2019-02-28 18:43:47-06:00 | 21,600 | ['02addb06184e52213ed3b37292f0cf117ae6a679'] | Move cross-env dep to the root
Multiple packages use it. | [{'old_path': 'package.json', 'new_path': 'package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -16,6 +16,7 @@\n "@types/fs-extra": "^5.0.4",\n "@types/node": "^10.12.18",\n "@types/trash": "^4.3.1",\n+ "cross-env": "^5.2.0",\n "crypto-browserify": "^3.12.0",\n "css-loader": "^2.1.0",... | TypeScript |
38b500fc02f6b358d446b0cdb06b5bb01f03ae93 | 70 | 2019-03-01 09:45:59-06:00 | 21,600 | ['94edbd59e920646d43e4082876f7ddeafaf9653f'] | Inherit theme color for brief loading screen | [{'old_path': 'packages/vscode/src/fill/storageDatabase.ts', 'new_path': 'packages/vscode/src/fill/storageDatabase.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -52,7 +52,13 @@ class StorageDatabase implements workspaceStorage.IStorageDatabase {\n \n \tpublic updateItems(request: workspaceStorage.IUpdateReques... | TypeScript |
06855adaa582833c9e99fe81188926fa25a4ed8c | 70 | 2019-03-01 10:33:16-06:00 | 21,600 | ['0e5ed115970c6ff5907bf387fd4c67f51e195e84'] | Create working directory if it doesn't exist | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -175,6 +175,11 @@ export class Entry extends Command {\n \t\t\t} : undefined,\n \t\t});\n \n+\t\tif (!fs.existsSync(workingDir)) {\n+\t\t\tlogger.info("Creating working directory", fie... | TypeScript |
c384dfb81579ce054ad3323d353dfa6115a4b977 | 29 | 2019-03-01 15:51:11-06:00 | 21,600 | ['06855adaa582833c9e99fe81188926fa25a4ed8c'] | Use Coder marketplace (#44)
* Allow setting marketplace URL
* Add zip fill
* Comment out CSP for now
* Fill zip on client as well
Probably will need it for client-side extensions.
* Don't use itemUrl (it's undefined)
* Remove extension rating
* Hide ratings with CSS instead of patching them out
... | [{'old_path': 'packages/vscode/package.json', 'new_path': 'packages/vscode/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -9,9 +9,11 @@\n "iconv-lite": "^0.4.24",\n "onigasm": "^2.2.1",\n "spdlog": "^0.7.2",\n- "string-replace-loader": "^2.1.1"\n+ "string-replace-loader": "^2.1.1",\n... | TypeScript |
185c811354b2b768fa99af17d0d3ce5a965fac5f | 70 | 2019-03-01 16:55:31-06:00 | 21,600 | ['06855adaa582833c9e99fe81188926fa25a4ed8c'] | Update default port to 8443 | [{'old_path': 'packages/app/common/src/containers.tsx', 'new_path': 'packages/app/common/src/containers.tsx', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -83,7 +83,7 @@ export class Main extends React.Component<void, {\n \t\t\t\t\t\t\t\t\t{\n \t\t\t\t\t\t\t\t\t\thost: "self",\n \t\t\t\t\t\t\t\t\t\thostname: "http... | TypeScript |
68cb387fffe7fe44b959797fadf5be94317824c5 | 29 | 2019-03-04 11:55:49-06:00 | 21,600 | ['63f7c57b4e6579cfd5581486531d505c4e38f924'] | Remove Windows build for now | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -7,7 +7,6 @@ matrix:\n - os: linux\n dist: ubuntu\n - os: osx\n- - os: windows\n before_install:\n - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install libxkbfile-dev libsecret-1-dev;\n fi\... | TypeScript |
90d3a0f16a7ddbbf7c9441a6f93ff8527c21bfbc | 70 | 2019-03-04 11:57:29-06:00 | 28,800 | ['68cb387fffe7fe44b959797fadf5be94317824c5'] | Allow logger package to be publishable (#37) | [{'old_path': None, 'new_path': 'packages/logger/.npmignore', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,4 @@\n+src\n+tsconfig.build.json\n+webpack.config.js\n+yarn.lock\n\\ No newline at end of file\n'}, {'old_path': 'packages/logger/README.md', 'new_path': 'packages/logger/README.md', 'type': <Modificatio... | TypeScript |
33717b277aa15ff1b24d582316e17ed775efcdf8 | 70 | 2019-03-04 12:31:27-06:00 | 28,800 | ['90d3a0f16a7ddbbf7c9441a6f93ff8527c21bfbc'] | Add documentation (#42)
* Add docs
* Add guides for hosting
* Inital commit. Add quick start guide for self hosted
* Add info for flags
* Detail usage flags and provide examples
* Correct file types for certificate
* Add self-signed certificate guide, update .gitignore
* Add additional information... | [{'old_path': None, 'new_path': '.github/CODEOWNERS', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1 @@\n+* @coderasher @kylecarbs\n\\ No newline at end of file\n'}, {'old_path': None, 'new_path': '.github/ISSUE_TEMPLATE/bug_report.md', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,18 @@\n+---\n+name: ... | TypeScript |
c046558d330c9f92e7b5466ef6722b9852bb3140 | 29 | 2019-03-04 14:27:46-06:00 | 21,600 | ['50d642b98a95318d46a1bafdc5be3f782a364ff2'] | Add commercialization section to readme | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -20,6 +20,7 @@\n ```\n \t> You will be prompted to enter the password shown in the CLI\n \t`code-server` should now be running at https://<IP>:8443.\n+\n \t> code-server uses a self-signed SSL certificate that may ... | TypeScript |
5b0d11e470cc2add2bf17210679b9fd59eaf6730 | 29 | 2019-03-04 16:11:48-06:00 | 21,600 | ['c046558d330c9f92e7b5466ef6722b9852bb3140'] | Use localhost for code-server domain | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,7 +19,7 @@\n code-server <inital directory to open>\n ```\n \t> You will be prompted to enter the password shown in the CLI\n-\t`code-server` should now be running at https://<IP>:8443.\n+\t`code-server` sh... | TypeScript |
1e0d3307789f1f69fbba0756ab7a034051159f51 | 70 | 2019-03-05 00:29:19+00:00 | 0 | ['ef6369d62f98124bed13e3fddbd83751a9a51d0b'] | Directly point to the logger src | [{'old_path': 'scripts/install-packages.ts', 'new_path': 'scripts/install-packages.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,7 +2,7 @@ import { exec, execSync } from "child_process";\n import { existsSync, readdirSync } from "fs";\n import * as os from "os";\n import { join, resolve } from "path";\n-imp... | TypeScript |
31518e975455dc7e25b0a4295cc8e61f52917807 | 70 | 2019-03-05 00:42:02+00:00 | 0 | ['1e0d3307789f1f69fbba0756ab7a034051159f51'] | Make ripgrep executable on extract | [{'old_path': 'packages/server/src/modules.ts', 'new_path': 'packages/server/src/modules.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -22,11 +22,15 @@ export const setup = (dataDirectory: string): void => {\n \t\treturn currentDir;\n \t}, os.platform() === "win32" ? undefined! : path.sep); // Might need path.... | TypeScript |
d48d72cb793ad8a6a927f333ebd5f4038de344f4 | 70 | 2019-03-05 01:20:25+00:00 | 0 | ['31518e975455dc7e25b0a4295cc8e61f52917807'] | Filter out secrets in CI | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n language: node_js\n node_js:\n - 8.9.3\n-filter_secrets: false\n+# filter_secrets: false\n matrix:\n include:\n - os: linux\n'}] | TypeScript |
47765dde23454cb61c1268b2853e8646964a98cf | 29 | 2019-03-04 19:26:17-08:00 | 21,600 | ['d48d72cb793ad8a6a927f333ebd5f4038de344f4'] | Add ping/pong to the protocol (#2) | [{'old_path': 'packages/protocol/src/browser/client.ts', 'new_path': 'packages/protocol/src/browser/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,7 +1,7 @@\n import { EventEmitter } from "events";\n import { Emitter } from "@coder/events";\n import { logger, field } from "@coder/logger";\n-import { N... | TypeScript |
4028e33529179290b408aeff8752957b3ef28130 | 70 | 2019-03-05 05:20:57+00:00 | 0 | ['ec94a92a5fc257759c836ddcc3938e71fab8c909'] | Update travis.yml with new credentials | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,15 +1,14 @@\n language: node_js\n node_js:\n - 8.9.3\n-# filter_secrets: false\n matrix:\n include:\n - os: linux\n dist: ubuntu\n - os: osx\n before_install:\n-- if [[ "$TRAVIS_OS_NAME" == "linux" ]];... | TypeScript |
838c8a6f2c5a4d1c15ea02031613080910d7eb3b | 27 | 2019-03-05 12:51:34-06:00 | 21,600 | ['4028e33529179290b408aeff8752957b3ef28130'] | Clarify that the cloud offering is seperate from the open source | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -12,6 +12,8 @@\n \n [Try `code-server` now](https://coder.com/signup) for free at coder.com.\n \n+**OR**\n+\n 1. [Download a binary](https://github.com/codercom/code-server/releases) (Linux and OSX supported. Windows ... | TypeScript |
c772e920cd097c24658d11bbc007866d9578a2de | 15 | 2019-03-05 13:53:05-08:00 | 21,600 | ['e6aa74c412e5c5c4f3e34e9e06a6c77b690a8597'] | Add Discord widget to README (#16) | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,6 +3,7 @@\n [](https://github.com/codercom/code-server/issues)\n [ | [{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -8,7 +8,7 @@\n \n This document pertains to Coder specific implementations of VS Code. For documentation on how to use VS Code itself, please refer to the official [documentation for VS Co... | TypeScript |
14ead1a62fa42f22afff68ff73e44099608a8d10 | 57 | 2019-03-05 15:02:49-08:00 | -10,800 | ['3b48c57861fff8a19fab5d05b6fb955e8c279751'] | Fixes calculating number of threads for HappyPack (#10) | [{'old_path': 'scripts/webpack.general.config.js', 'new_path': 'scripts/webpack.general.config.js', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -105,7 +105,7 @@ module.exports = (options = {}) => ({\n \tplugins: [\n \t\tnew HappyPack({\n \t\t\tid: "ts",\n-\t\t\tthreads: os.cpus().length - 1,\n+\t\t\tthreads: Math... | TypeScript |
2b3d2933eba78cf153f45c45d99bb40d501ac4f0 | 29 | 2019-03-05 17:23:13-06:00 | 21,600 | ['14ead1a62fa42f22afff68ff73e44099608a8d10'] | Updated binary name in issue templates | [{'old_path': '.github/ISSUE_TEMPLATE/bug_report.md', 'new_path': '.github/ISSUE_TEMPLATE/bug_report.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -9,7 +9,7 @@ assignees: ''\n <!-- Please search existing issues to avoid creating duplicates. -->\n <!-- All extension-specific issues should be created with the `E... | TypeScript |
414eb7076f643dcbc5a2c5cb2effd310904fc45c | 70 | 2019-03-06 00:06:44+00:00 | 0 | ['2b3d2933eba78cf153f45c45d99bb40d501ac4f0'] | Update element fill to replace `file` URIs in image tags | [{'old_path': 'packages/ide/src/fill/electron.ts', 'new_path': 'packages/ide/src/fill/electron.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -25,9 +25,6 @@ const newCreateElement = <K extends keyof HTMLElementTagNameMap>(tagName: K): HT\n \t\t// tslint:disable-next-line:no-any\n \t\treturn oldCreateElement.cal... | TypeScript |
1d8da2161f4330e2cf26fd28005729e3b6e21286 | 27 | 2019-03-05 17:45:21-08:00 | 28,800 | ['414eb7076f643dcbc5a2c5cb2effd310904fc45c'] | Add value props to readme (#20) | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -5,7 +5,14 @@\n [](#)\n [](https://discord.gg/zxSwN8Z)\n \n-`code-server` is ... | TypeScript |
3fbdb2e46c4f38268df42a03835b43151f9e55b2 | 83 | 2019-03-06 00:08:43-08:00 | -3,600 | ['1d8da2161f4330e2cf26fd28005729e3b6e21286'] | Implement #4 - fix password via CLI (#5) | [{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -48,6 +48,7 @@ OPTIONS\n -v, --version show CLI version\n --cert=cert\n --cert-key=cert-key\n+ --password=password\n --help show CLI help\n ```\n \n... | TypeScript |
d4867ca43098568ff33fcafa726d6a0c8f9ac011 | 27 | 2019-03-06 10:11:27-08:00 | 28,800 | ['3fbdb2e46c4f38268df42a03835b43151f9e55b2'] | Cleanup English in README (#21) | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -53,7 +53,7 @@ How to [secure your setup](/doc/security/ssl.md).\n \n ## Contributing\n \n-Guides on setup for development will be coming soon. :)\n+Development guides are coming soon.\n \n ## License\n \n@@ -61,7 +61,... | TypeScript |
8916cb9bb244e965c65853bf09c0607d31d3f94c | 70 | 2019-03-06 11:10:23-08:00 | 28,800 | ['d4867ca43098568ff33fcafa726d6a0c8f9ac011'] | Update to vscode 1.31.1 (#45) | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -12,7 +12,7 @@ before_install:\n script:\n - scripts/build.sh\n before_deploy:\n-- export TRAVIS_TAG="1.31.0-$TRAVIS_BUILD_NUMBER"\n+- export TRAVIS_TAG="1.31.1-$TRAVIS_BUILD_NUMBER"\n - echo "$TRAVIS_TAG" "$TRAVIS... | TypeScript |
994531d8bbfa62d849b65a5828f87f3b4c8983fa | 29 | 2019-03-06 18:15:52-06:00 | 21,600 | ['8916cb9bb244e965c65853bf09c0607d31d3f94c'] | Add task for packaging release (#6)
* Add task for packaging release
* Modify package task to package a single binary
This is so it can be used as part of the build/release script.
* Package release as part of Travis deploy
* Set platform env var
* Add arch env var
* Make version available to the cod... | [{'old_path': '.gitignore', 'new_path': '.gitignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -3,3 +3,4 @@ node_modules\n dist\n out\n .DS_Store\n+release\n'}, {'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,8 @@\n language: node_js\n node_js:\n... | TypeScript |
e99f8abc3cd0f625cdae70bc2848618bc73d1030 | 95 | 2019-03-06 16:21:33-08:00 | -3,600 | ['994531d8bbfa62d849b65a5828f87f3b4c8983fa'] | Fix spelling error (#46) | [{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -56,14 +56,14 @@ OPTIONS\n Use `code-server -d (path/to/directory)` or `code-server --data-dir=(path/to/directory)`, excluding the parentheses to specify the root folder that VS Code wil... | TypeScript |
e20b79b5cca88851eb5dbefe7c2300c6eda18dd2 | 91 | 2019-03-06 16:25:44-08:00 | 21,600 | ['e99f8abc3cd0f625cdae70bc2848618bc73d1030'] | Generate secure passwords, fixes issue #26 (#51) | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -2,6 +2,7 @@ import { field, logger } from "@coder/logger";\n import { ServerMessage, SharedProcessActiveMessage } from "@coder/protocol/src/proto";\n import { Command, flags } from "@... | TypeScript |
ac56fcaafc4df9a9c0f65a539b6ab555de8ba7fa | 91 | 2019-03-06 18:47:05-08:00 | 21,600 | ['e20b79b5cca88851eb5dbefe7c2300c6eda18dd2'] | Remove unused markup from password page (#49) | [{'old_path': 'packages/app/browser/src/app.html', 'new_path': 'packages/app/browser/src/app.html', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,21 +19,6 @@\n \t\t\t\t\t<label class="mdc-floating-label" for="password">Password</label>\n \t\t\t\t\t<div class="mdc-line-ripple"></div>\n \t\t\t\t</div>\n-\t\t\t\t<... | TypeScript |
17267bd80149b2160459bf3fb980e88f7e1c31fa | 55 | 2019-03-06 18:59:43-08:00 | 18,000 | ['ac56fcaafc4df9a9c0f65a539b6ab555de8ba7fa'] | Add Dockerfile and some cleanup (#57) | [{'old_path': None, 'new_path': '.dockerignore', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1 @@\n+Dockerfile\n'}, {'old_path': None, 'new_path': 'Dockerfile', 'type': <ModificationType.ADD: 1>, 'diff': "@@ -0,0 +1,26 @@\n+FROM node:8.15.0\n+\n+# Install VS Code's deps. These are the only two it seems we need... | TypeScript |
87d2e22a6b72d4acd8892efaa0515f3408e457cd | 42 | 2019-03-07 09:23:54-08:00 | -32,400 | ['17267bd80149b2160459bf3fb980e88f7e1c31fa'] | Open localhost URL with --open (#28)
* Open localhost URL with --open
* Catch errors on opn
Co-Authored-By: fand <fand@users.noreply.github.com> | [{'old_path': 'packages/server/package.json', 'new_path': 'packages/server/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -26,10 +26,12 @@\n \t\t"@types/express": "^4.16.0",\n \t\t"@types/fs-extra": "^5.0.4",\n \t\t"@types/mime-types": "^2.1.0",\n+\t\t"@types/opn": "^5.1.0",\n \t\t"@types/pem": "^1.9.... | TypeScript |
3d654a8df7f63d733a813e097901f2f67b124d27 | 29 | 2019-03-07 11:25:26-06:00 | 21,600 | ['87d2e22a6b72d4acd8892efaa0515f3408e457cd'] | Resolve paths
Fixes #19. | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -49,11 +49,11 @@ export class Entry extends Command {\n \t\t}\n \n \t\tconst { args, flags } = this.parse(Entry);\n-\t\tconst dataDir = flags["data-dir"] || path.join(os.homedir(), ".c... | TypeScript |
8e6841117464e50c523768b0d3bd842d1b0e0c71 | 20 | 2019-03-07 09:31:01-08:00 | 18,000 | ['3d654a8df7f63d733a813e097901f2f67b124d27'] | Update example docker command port bind options (#88)
must use 127.0.0.1 and not `localhost` | [{'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 -p localhost:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth\n+docker run -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project... | TypeScript |
fba3fe5609fb0862debd8574523323d3ef390074 | 28 | 2019-03-07 13:55:13-05:00 | 18,000 | ['8e6841117464e50c523768b0d3bd842d1b0e0c71'] | Dockerfile: cleanup and add en_US.UTF-8 locale
Closes #84
Closes #83
Thanks @xMrWhite, @frol and @sr229. | [{'old_path': '.github/CODEOWNERS', 'new_path': '.github/CODEOWNERS', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1 +1,2 @@\n * @coderasher @kylecarbs\n+Dockerfile @nhooyr\n'}, {'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -1,26 +1,32 @@\n FROM node:8.15.0... | TypeScript |
8e5f2884590ebf986d6b9e7b69fa91e6df943c3b | 20 | 2019-03-07 13:19:00-08:00 | 18,000 | ['14f1230bed1e42d01f39241de31fa559df3e9278'] | Updated current args available for passing in docs (#105) | [{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -46,10 +46,12 @@ OPTIONS\n -o, --open Open in browser on startup\n -p, --port=port [default: 8443] Port to bind on\n -v, --version show CLI version\... | TypeScript |
231cdec7fba587a477a98c8e944c38f4a36fcdaf | 70 | 2019-03-07 21:23:16+00:00 | 0 | ['14f1230bed1e42d01f39241de31fa559df3e9278'] | Update known issues in readme with better wording | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -54,7 +54,7 @@ How to [secure your setup](/doc/security/ssl.md).\n \n ### Known Issues\n \n-- Debugging extensions doesn’t work.\n+- Creating custom VS Code extensions and debugging them doesn't work.\n \n ### Future\n... | TypeScript |
96175d36eaa49a032c252b6c1dba4860ad057890 | 55 | 2019-03-07 13:48:11-08:00 | 18,000 | ['c8afb7908e9f9274532e4188dfb30ce04570d09c'] | Handle arch in dockerfile and add PR template (#109)
* repo: add a pull request template
* Dockerfile: include arch when copying
Thanks @yush1ga and @zerdos | [{'old_path': None, 'new_path': '.github/pull_request_template.md', 'type': <ModificationType.ADD: 1>, 'diff': '@@ -0,0 +1,6 @@\n+<!-- Please answer these questions before submitting your PR. Thanks! -->\n+\n+### Describe in detail the problem you had and how this PR fixes it\n+\n+### Is there an open issue you can lin... | TypeScript |
9f4212eace4cac51c27472431b383648adfc0a2d | 104 | 2019-03-08 08:10:50-08:00 | -3,600 | ['96175d36eaa49a032c252b6c1dba4860ad057890'] | inital -> initial (#135) | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -37,7 +37,7 @@ See docker oneliner mentioned above. Dockerfile is at [/Dockerfile](/Dockerfile)\n 2. Start the binary with the project directory as the first argument\n \n ```\n- code-server <inital directory t... | TypeScript |
5c435a3b6cb8775b28cd2a88e5774dae1a5b0247 | 67 | 2019-03-08 08:34:31-08:00 | 21,600 | ['9f4212eace4cac51c27472431b383648adfc0a2d'] | Update grammar on README (#139) | [{'old_path': 'README.md', 'new_path': 'README.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -16,7 +16,7 @@ docker run -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" codercom/code-server\n \t- If you have a Windows or Mac workstation, more easily develop for Linux.\n - Take advantage of large cloud servers t... | TypeScript |
36c05ed335e30721764865b397a6c47abc138e6d | 29 | 2019-03-08 08:37:03-08:00 | 21,600 | ['5c435a3b6cb8775b28cd2a88e5774dae1a5b0247'] | Feature/1.32.0 update (#117)
* Update VS Code to 1.32.0
* Update patch
Most changes are moved files, most notably shell.contribution.ts which
is now main.contribution.ts.
Also:
- repl.ts no longer uses isMacintosh
- shell.ts doesn't exist
- added back the commented-out CSP headers
* Use es6 target for ... | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,8 +1,8 @@\n language: node_js\n node_js:\n-- 8.9.3\n+- 8.10.0\n env:\n- - VERSION="1.31.1-$TRAVIS_BUILD_NUMBER"\n+ - VERSION="1.32.0-$TRAVIS_BUILD_NUMBER"\n matrix:\n include:\n - os: linux\n'}, {'old_path... | TypeScript |
e418ecf653e8a9038330cfc6cca5ac71fb8b2261 | 2 | 2019-03-08 09:13:25-08:00 | -3,600 | ['36c05ed335e30721764865b397a6c47abc138e6d'] | Improve .dockerignore (#111)
* impove .dockerignore
* impove .dockerignore | [{'old_path': '.dockerignore', 'new_path': '.dockerignore', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1 +1,9 @@\n Dockerfile\n+# Docs\n+doc/\n+# GitHub stuff\n+.github\n+.gitignore\n+.travis.yml\n+LICENSE\n+README.md\n'}] | TypeScript |
3e9d86ee91dc10e57a8aaefb20803799fc27848d | 55 | 2019-03-08 09:21:11-08:00 | 18,000 | ['e418ecf653e8a9038330cfc6cca5ac71fb8b2261'] | ci: enable travis npm cache (#110)
* ci: enable travis npm cache
* ci: upgrade travis version
Thanks @zerdos
* ci: switch to using yarn cache | [{'old_path': '.travis.yml', 'new_path': '.travis.yml', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -1,6 +1,6 @@\n language: node_js\n node_js:\n-- 8.10.0\n+- 8.15.0\n env:\n - VERSION="1.32.0-$TRAVIS_BUILD_NUMBER"\n matrix:\n@@ -35,3 +35,4 @@ deploy:\n on:\n repo: codercom/code-server\n branch: maste... | TypeScript |
8bab787804912306821e50747699ce25ba1d22e9 | 29 | 2019-03-08 12:01:27-06:00 | 21,600 | ['3e9d86ee91dc10e57a8aaefb20803799fc27848d'] | Move upx compression behind an env flag | [{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -40,22 +40,24 @@ const buildServerBinaryPackage = register("build:server:binary:package", async (\n });\n \n const dependencyNexeBinary = register("dependency:nexe", async (runner) => {\n-\tif (os.platform() ... | TypeScript |
cded51f6500fa39915cb9554d59d8ce2bb831de5 | 29 | 2019-03-08 12:45:20-06:00 | 21,600 | ['8bab787804912306821e50747699ce25ba1d22e9'] | Add back web class
Forgot to move this to the new file when upgrading to 1.32.0. | [{'old_path': 'scripts/vscode.patch', 'new_path': 'scripts/vscode.patch', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -834,7 +834,7 @@ index acb68c8ad7..bee143a0d7 100644\n -\t\t\t!isMacintosh || // macOS only\n +\t\t\t!browser.isMacintosh || // macOS only\n diff --git a/src/vs/workbench/electron-browser/workbenc... | TypeScript |
ffb75b6801a400650a62704674ed5e1b18d505a5 | 23 | 2019-03-09 09:06:47-08:00 | 18,000 | ['cded51f6500fa39915cb9554d59d8ce2bb831de5'] | Fix typo: environemnt -> environment (#159)
Signed-off-by: Aidan Fitzgerald <acf67@cornell.edu> | [{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -15,7 +15,7 @@ COPY . .\n # directly which should be fast as it is slow because it populates its own cache every time.\n RUN yarn && yarn task build:server:binary\n \n-# We deploy with ubuntu so that devs have a fami... | TypeScript |
e22e2c8b67d4a2b33309f746131cc7624a17b72a | 108 | 2019-03-09 09:07:43-08:00 | 10,800 | ['ffb75b6801a400650a62704674ed5e1b18d505a5'] | Improve github issue template (#162)
- Simplify the user by opening an issue (giving direction)
- Mark issue label
- Markdown lint
Signed-off-by: Avelino <t@avelino.xxx> | [{'old_path': '.github/ISSUE_TEMPLATE/bug_report.md', 'new_path': '.github/ISSUE_TEMPLATE/bug_report.md', 'type': <ModificationType.MODIFY: 5>, 'diff': "@@ -2,7 +2,7 @@\n name: Bug Report\n about: Report problems and unexpected behavior.\n title: ''\n-labels: ''\n+labels: 'bug'\n assignees: ''\n ---\n \n@@ -12,7 +12,11... | TypeScript |
30d14eeab40a01a2d09cec839c266a913b01db3f | 44 | 2019-03-09 09:11:30-08:00 | 21,600 | ['e22e2c8b67d4a2b33309f746131cc7624a17b72a'] | Adhere to XDG base directory spec for dataDir and logDir (#156) | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -12,7 +12,7 @@ import { requireModule, requireFork, forkModule } from "./vscode/bootstrapFork";\n import { SharedProcess, SharedProcessState } from "./vscode/sharedProcess";\n import {... | TypeScript |
d7a66e4f15883df89c0f750ba86287cbd9e8b14c | 34 | 2019-03-09 09:23:51-08:00 | 28,800 | ['30d14eeab40a01a2d09cec839c266a913b01db3f'] | Open websocket on same path as page (#149)
This is the critical piece to let you serve code-server proxied under a
path. Otherwise if you proxy e.g. `/editor/` thru to
`http://localhost:8000`, everything works fine except the websocket
connection is still opened to `/` | [{'old_path': 'packages/ide/src/fill/client.ts', 'new_path': 'packages/ide/src/fill/client.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -91,8 +91,9 @@ class WebsocketConnection implements ReadWriteConnection {\n \t */\n \tprivate async openSocket(): Promise<WebSocket> {\n \t\tthis.dispose();\n+\t\tconst wsPro... | TypeScript |
c471babc69e3a4899420c1a47dcfffe3b31419aa | 78 | 2019-03-09 09:24:36-08:00 | -39,600 | ['d7a66e4f15883df89c0f750ba86287cbd9e8b14c'] | Use a timing-safe equality check for passwords (#133) | [{'old_path': 'packages/server/package.json', 'new_path': 'packages/server/package.json', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,6 +19,7 @@\n \t\t"node-netstat": "^1.6.0",\n \t\t"pem": "^1.14.1",\n \t\t"promise.prototype.finally": "^3.1.0",\n+\t\t"safe-compare": "^1.1.4",\n \t\t"ws": "^6.1.2",\n \t\t"xhr... | TypeScript |
438808573d129f915d38dd72c02799862aee9500 | 41 | 2019-03-09 14:17:21-05:00 | 18,000 | ['c471babc69e3a4899420c1a47dcfffe3b31419aa'] | Add nginx reverse proxy guide for selfhosted
#80 | [{'old_path': 'doc/self-hosted/index.md', 'new_path': 'doc/self-hosted/index.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -74,5 +74,20 @@ OPTIONS\n \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\... | TypeScript |
f37533579def30fa7ea83eb0e30e76d3de8f6335 | 55 | 2019-03-09 14:51:51-08:00 | 18,000 | ['c471babc69e3a4899420c1a47dcfffe3b31419aa'] | Fix build and Dockerfile issues (#176)
* build: fix yarn corruption issues
Closes #100
Thanks @zerdos
* Dockerfile: add default Entrypoint and mount data dir
Closes #170
Closes #78
Thanks @ay-b | [{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,5 +28,6 @@ RUN apt-get install -y locales && \\\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 E... | TypeScript |
41d1be9205162e08556d04cde2dad11db1017e4a | 58 | 2019-03-10 08:28:25-05:00 | -25,200 | ['76e0338d7f81c754f6a971cb6caf4428263a7822'] | Add -t flag to docker example (#181)
It is quite annoying when Ctrl-C does not stop the container | [{'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 -p 127.0.0.1:8443:8443 -v "${PWD}:/root/project" codercom/code-server code-server --allow-http --no-auth\n+docker run -t -p 127.0.0.1:8443:8443 -v "${PWD}:/root/proj... | TypeScript |
4387fdfb9ec9848c36c95a9547859edb7def8765 | 113 | 2019-03-10 10:02:08-05:00 | -28,800 | ['41d1be9205162e08556d04cde2dad11db1017e4a'] | Clone exact vscode release branch when build task (#167)
* chore: clone exactly release branch when build
* fix: clone params | [{'old_path': 'build/tasks.ts', 'new_path': 'build/tasks.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -10,6 +10,7 @@ const libPath = path.join(__dirname, "../lib");\n const vscodePath = path.join(libPath, "vscode");\n const pkgsPath = path.join(__dirname, "../packages");\n const defaultExtensionsPath = path.j... | TypeScript |
26edea5098d99a03736977c6977ab53c3547d446 | 28 | 2019-03-10 11:39:17-04:00 | 18,000 | ['8527d1003312f0500d2119e6a8d35c1f204487a7'] | Update docker oneliner and fix clone task | [{'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 code-server --allow-http --no-auth\n+docker run -t -p 127.0.0.1:8443:8443 -v "${PWD}:/root/p... | TypeScript |
449d51d24d38fc6a4ef915224f72853b5352ad94 | 28 | 2019-03-10 11:39:18-04:00 | 18,000 | ['26edea5098d99a03736977c6977ab53c3547d446'] | Dockerfile: use relative path instead of $PWD for CMD
Thanks @ay-b | [{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -29,5 +29,4 @@ RUN apt-get install -y locales && \\\n # configured in /etc/default/locale so we need to set it manually.\n ENV LANG=en_US.UTF-8\n ENTRYPOINT code-server\n-# Unfortunately `.` does not work with code-s... | TypeScript |
03c0bde3a94eebe31fa18339278150bb76788f55 | 55 | 2019-03-11 09:47:41-05:00 | 14,400 | ['a36476df21ad011deac9b14a1f4f6b11b8511893'] | Another fix for the Dockerfile and build (#188)
* Dockerfile: fix
ENTRYPOINT must be provided in exec form for args
from docker run to be passed correctly.
See https://docs.docker.com/engine/reference/builder/#cmd
* build: fix reuse of vscode repository regression
See #167 | [{'old_path': 'Dockerfile', 'new_path': 'Dockerfile', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,5 +28,4 @@ RUN apt-get install -y locales && \\\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 E... | TypeScript |
8aff206538199b328c242f914f2938d9d6bcf712 | 29 | 2019-03-11 11:29:24-05:00 | 18,000 | ['03c0bde3a94eebe31fa18339278150bb76788f55'] | Fix some dialog styling issues
- Fix black text caused by 1.32.0 upgrade.
- Fix various alignment and padding issues (a few elements with more
space below than above). | [{'old_path': 'packages/ide/src/fill/dialog.scss', 'new_path': 'packages/ide/src/fill/dialog.scss', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -19,7 +19,6 @@\n \tbackground: #141414;\n \tborder: none;\n \tbox-sizing: border-box;\n-\tmargin-bottom: 25px;\n \tpadding: 10px;\n \twidth: 100%;\n }\n@@ -31,11 +30,11 @... | TypeScript |
1df352fe2679deb7770c7c339c254a81a2520774 | 50 | 2019-03-11 13:59:07-05:00 | -10,800 | ['8aff206538199b328c242f914f2938d9d6bcf712'] | Adding minus to flag '-i' (#198) | [{'old_path': 'doc/admin/install/aws.md', 'new_path': 'doc/admin/install/aws.md', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -28,7 +28,7 @@ If you\'re just starting out, we recommend [installing code-server locally](../..\n - In the description of your EC2 instance copy the public DNS (iPv4) address using the co... | TypeScript |
736feaba51c775ed3ad690f95565fde4e8acbb12 | 29 | 2019-03-11 17:38:11-05:00 | 18,000 | ['307aa4ae7f04ddacd4505fa50e0f7b0992076546'] | Add proper version to --version | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -4,7 +4,6 @@ import { Command, flags } from "@oclif/command";\n import { fork, ForkOptions, ChildProcess } from "child_process";\n import { randomFillSync } from "crypto";\n import * a... | TypeScript |
0a9f5d8eee1779e017725a50606b885bd4974b30 | 29 | 2019-03-11 17:50:35-05:00 | 18,000 | ['736feaba51c775ed3ad690f95565fde4e8acbb12'] | Pass env as actual env instead of as a flag | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -33,7 +33,6 @@ export class Entry extends Command {\n \t\t"bootstrap-fork": flags.string({ hidden: true }),\n \t\t"fork": flags.string({ hidden: true }),\n \n-\t\tenv: flags.string({ h... | TypeScript |
e597d49912fc0299877899fe687b69da5214794d | 29 | 2019-03-12 11:44:56-05:00 | 18,000 | ['0a9f5d8eee1779e017725a50606b885bd4974b30'] | Fix issues with configuration directories
- Move the old data directory if possible.
- Fix extension path to not use a hard-coded path and instead use the
data directory.
- Create every part of the path during startup.
- Create each path when a connection is made as well in case they are
deleted while the server i... | [{'old_path': 'packages/protocol/src/common/util.ts', 'new_path': 'packages/protocol/src/common/util.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -97,3 +97,22 @@ 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 |
3155eb76f5856df2ce4db753286f2d4d49c29cef | 29 | 2019-03-12 12:55:43-05:00 | 18,000 | ['e597d49912fc0299877899fe687b69da5214794d'] | Allow webview iframe to load styles | [{'old_path': 'packages/ide/src/fill/electron.ts', 'new_path': 'packages/ide/src/fill/electron.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -141,6 +141,7 @@ const newCreateElement = <K extends keyof HTMLElementTagNameMap>(tagName: K): HT\n \t\t\t\t// TODO\n \t\t\t\targs[0].contents = (args[0].contents as stri... | TypeScript |
ba37a34fa24a32f16f8d4cf1fe39cbf30a5ca1d0 | 29 | 2019-03-12 15:05:47-05:00 | 18,000 | ['e1dc6967ed1001b4e455f578e42b55496778f52d'] | Create data directory path before moving old directory there | [{'old_path': 'packages/server/src/cli.ts', 'new_path': 'packages/server/src/cli.ts', 'type': <ModificationType.MODIFY: 5>, 'diff': '@@ -55,6 +55,7 @@ export class Entry extends Command {\n \t\tif (!fs.existsSync(dataDir)) {\n \t\t\tconst oldDataDir = path.resolve(path.join(os.homedir(), ".code-server"));\n \t\t\tif (f... | TypeScript |