Skip to content

Commit

Permalink
v2.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Hirse committed Feb 1, 2020
1 parent 589b70a commit cc0681a
Show file tree
Hide file tree
Showing 4 changed files with 698 additions and 605 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ All notable changes to this project will be documented in this file.
This project tries to adhere to [Semantic Versioning](http://semver.org/).


## Unreleased
## 2.2.0 - 2020-01-31
### Changed
- Updated Ungit to 1.4.48
- Updated Ungit to 1.5.2
- Use ungit without header


Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Ungit",
"description": "Ungit in Visual Studio Code.",
"icon": "images/logo.png",
"version": "2.1.1",
"version": "2.2.0",
"publisher": "Hirse",
"galleryBanner": {
"color": "#252833",
Expand All @@ -25,7 +25,7 @@
"multi-root ready"
],
"engines": {
"vscode": "^1.36.0"
"vscode": "^1.41.0"
},
"main": "./out/src/extension",
"activationEvents": [
Expand Down Expand Up @@ -84,14 +84,14 @@
"vscode:prepublish": "tsc"
},
"dependencies": {
"ungit": "1.4.48",
"ungit": "1.5.2",
"vscode-extension-telemetry": "0.1.2"
},
"devDependencies": {
"@types/node": "10.11.x",
"@types/node": "12.x.x",
"@types/vscode": "1.x.x",
"tslint": "5.x.x",
"typescript": "3.5.x",
"tslint": "6.x.x",
"typescript": "3.7.x",
"vsce": "1.x.x"
},
"greenkeeper": {
Expand Down
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ function openInWorkspace(workspaceFolder: WorkspaceFolder): void {
child = fork(modulePath, parameter, { silent: true });
const showInActiveColumn = workspace.getConfiguration("ungit", workspaceFolder.uri).get<boolean>("showInActiveColumn") === true;
const viewColumn = showInActiveColumn ? ViewColumn.Active : ViewColumn.Beside;
child.stdout.on("data", (message: Buffer) => {
child.stdout!.on("data", (message: Buffer) => {
const started =
(message.toString().includes("## Ungit started ##")) ||
(message.toString().includes("Ungit server already running")) ||
Expand All @@ -110,7 +110,7 @@ function openInWorkspace(workspaceFolder: WorkspaceFolder): void {
resolve();
}
});
child.stderr.on("error", (error) => {
child.stderr!.on("error", (error) => {
window.showErrorMessage(`Error opening Ungit: "${error.message}"`);
telemetryReporter.sendTelemetryException(error);
reject();
Expand Down
Loading

0 comments on commit cc0681a

Please sign in to comment.