Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rewrite auto-update | Aleksey Kladov | 2020-03-19 | 5 | -514/+0 |
| | | | | | | | | | | | | | | Everything now happens in main.ts, in the bootstrap family of functions. The current flow is: * check everything only on extension installation. * if the user is on nightly channel, try to download the nightly extension and reload. * when we install nightly extension, we persist its release id, so that we can check if the current release is different. * if server binary was not downloaded by the current version of the extension, redownload it (we persist the version of ext that downloaded the server). | ||||
* | Separate persistent mutable state from config | Aleksey Kladov | 2020-03-16 | 2 | -17/+20 |
| | | | | | That way, we clearly see which things are not change, and we also clearly see which things are persistent. | ||||
* | vscode-postrefactor: migrate to arrow functions | Veetaha | 2020-03-16 | 1 | -2/+2 |
| | |||||
* | vscode-postrefactor: fix syntax error | Veetaha | 2020-03-16 | 1 | -1/+1 |
| | |||||
* | vscode-postrefactor: prefer arrow functions | Veetaha | 2020-03-16 | 1 | -1/+1 |
| | |||||
* | vscode-postrefactor: more logging and better error handling | Veetaha | 2020-03-14 | 1 | -3/+13 |
| | |||||
* | vscode-postrefactor: enforcing more reentrancy | Veetaha | 2020-03-14 | 2 | -4/+7 |
| | |||||
* | vscode-postrefactor: minor config refactorings | Veetaha | 2020-03-14 | 1 | -2/+2 |
| | |||||
* | vscode-postrefactor: add achtung comment | Veetaha | 2020-03-14 | 1 | -0/+4 |
| | |||||
* | vscode-postrefactor: remove remainders of debug logging | Veetaha | 2020-03-14 | 1 | -1/+0 |
| | |||||
* | vscode-postrefactor: compare dates by value, not by reference | Veetaha | 2020-03-14 | 1 | -2/+2 |
| | |||||
* | vscode-postrefactor: eliminate my-mistake floating promise @matklad | Veetaha | 2020-03-14 | 1 | -1/+1 |
| | |||||
* | vscode: make bailing out on custom serverPath more evident | Veetaha | 2020-03-14 | 1 | -3/+3 |
| | |||||
* | vscode: npm run fix | Veetaha | 2020-03-14 | 1 | -1/+1 |
| | |||||
* | vscode: amend server installation logic to account for nightlies | Veetaha | 2020-03-14 | 1 | -49/+48 |
| | |||||
* | vscode: add nightly extension installation logic | Veetaha | 2020-03-14 | 1 | -0/+131 |
| | |||||
* | vscode: get release date from release info | Veetaha | 2020-03-14 | 2 | -14/+7 |
| | |||||
* | vscode-prerefactor: merge two files into downloads.ts | Veetaha | 2020-03-14 | 2 | -50/+46 |
| | |||||
* | vscode: care about alwaysDownloadServer option before asking | Veetaha | 2020-03-07 | 2 | -18/+25 |
| | | | | | | | Also renamed BinarySource to ArtifactSource in anticipation of nightlies installation that requires downloading not a binary itself but .vsix package, thus generalized to `artifact` term | ||||
* | vscode: simplify assert.eq() to assert() as per matklad | Veetaha | 2020-02-28 | 1 | -4/+3 |
| | |||||
* | vscode: add equality assertion | Veetaha | 2020-02-28 | 1 | -2/+2 |
| | |||||
* | vscode: migrate to more type-safe assert impl | Veetaha | 2020-02-28 | 2 | -4/+2 |
| | |||||
* | Remove unnecessary dep | Aleksey Kladov | 2020-02-26 | 1 | -13/+8 |
| | |||||
* | vscode: wrap non-single-line if body with curlies as per matklad | Veetaha | 2020-02-24 | 1 | -3/+5 |
| | |||||
* | vscode: remove type assertion | Veetaha | 2020-02-24 | 1 | -1/+1 |
| | |||||
* | add error handling to fetchArtifactReleaseInfo(), throw Error when no ↵ | Veetaha | 2020-02-24 | 1 | -19/+37 |
| | | | | artifact found | ||||
* | Cleanp | Aleksey Kladov | 2020-02-24 | 1 | -2/+2 |
| | |||||
* | Quick fix circular json error when sanity-check fails | Veetaha | 2020-02-24 | 1 | -2/+5 |
| | | | Related issue: #3280 | ||||
* | Extract client-side logging | Aleksey Kladov | 2020-02-22 | 4 | -15/+16 |
| | |||||
* | vscode: migrate to tripple equals | Veetaha | 2020-02-22 | 1 | -1/+1 |
| | |||||
* | enforce camel case | Aleksey Kladov | 2020-02-21 | 1 | -0/+1 |
| | |||||
* | Merge pull request #3204 from ↵ | Aleksey Kladov | 2020-02-18 | 1 | -1/+0 |
|\ | | | | | | | | | Veetaha/feature/vscode-remove-updates-notification-comment vscode: remove comment about updates notification | ||||
| * | vscode: remove comment about updates notification | Veetaha | 2020-02-17 | 1 | -1/+0 |
| | | |||||
* | | Rename config value for server Path | Aleksey Kladov | 2020-02-18 | 1 | -1/+1 |
| | | |||||
* | | Migrate to eslint | Aleksey Kladov | 2020-02-17 | 1 | -3/+3 |
| | | |||||
* | | vscode: press ; to respect semicolons | Veetaha | 2020-02-17 | 1 | -2/+2 |
|/ | |||||
* | vscode: save binary version when downloading and download only version that ↵ | Veetaha | 2020-02-16 | 1 | -96/+72 |
| | | | | matches TypeScript extension version | ||||
* | vscode: extract downloadArtifact() function | Veetaha | 2020-02-16 | 1 | -0/+58 |
| | |||||
* | vscode: add release tag option to fetchArtifactReleaseInfo() | Veetaha | 2020-02-16 | 1 | -5/+11 |
| | |||||
* | vscode: add version and storage parameters to github binary source | Veetaha | 2020-02-16 | 1 | -0/+13 |
| | |||||
* | vscode: renamed langServer to server | Veetaha | 2020-02-14 | 1 | -12/+12 |
| | |||||
* | vscode: renmed ArtifactMetadata -> ArtifactReleaseInfo, languageServer -> ↵ | Veetaha | 2020-02-14 | 3 | -9/+9 |
| | | | | langServer | ||||
* | vscode: removed nested errors as per matklad | Veetaha | 2020-02-13 | 1 | -4/+3 |
| | |||||
* | vscode: replaced DownloadFileError with NestedError itself for simplicity | Veetaha | 2020-02-13 | 1 | -6/+7 |
| | |||||
* | vscode: switched to stream.pipeline with .on(close) workaround | Veetaha | 2020-02-12 | 1 | -19/+17 |
| | |||||
* | vscode: added error handling to download file streams | Veetaha | 2020-02-11 | 2 | -7/+18 |
| | |||||
* | vscode: remove chmod in favour of an option to createWriteStream() | Veetaha | 2020-02-11 | 2 | -5/+8 |
| | |||||
* | Merge #3100 | bors[bot] | 2020-02-11 | 1 | -3/+10 |
|\ | | | | | | | | | | | | | | | 3100: vscode: add error handling to downloadFile() r=matklad a=Veetaha Inspired by #3094. Co-authored-by: Veetaha <[email protected]> | ||||
| * | vscode: add error handling to downloadFile() | Veetaha | 2020-02-11 | 1 | -3/+10 |
| | | |||||
* | | vscode: fix ebusy error on windows | Veetaha | 2020-02-10 | 1 | -2/+1 |
|/ |