Skip to content

Commit

Permalink
0.5.0 - Ungit 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Hirse committed Nov 11, 2017
1 parent 036eff9 commit 4eb0013
Show file tree
Hide file tree
Showing 4 changed files with 4,224 additions and 3,800 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file.
This project tries to adhere to [Semantic Versioning](http://semver.org/).


## 0.5.0 - 2017-11-11
### Changed
- Updated Ungit to 1.2.3
- Updated Brackets required version to 1.11.0
- Supress ungit version check


## 0.4.2 - 2017-10-23
### Changed
- Updated Ungit to 1.1.33
Expand Down
3 changes: 2 additions & 1 deletion domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ var _domainManager;
var child;

function start() {
child = childProcess.fork("node_modules/ungit/bin/ungit", ["--no-b", "--maxNAutoRestartOnCrash=0"], {
var args = ["--no-b", "--maxNAutoRestartOnCrash=0", "--ungitVersionCheckOverride"];
child = childProcess.fork("node_modules/ungit/bin/ungit", args, {
cwd: __dirname,
silent: true
});
Expand Down
Loading

0 comments on commit 4eb0013

Please sign in to comment.