Skip to content

Commit

Permalink
0.7.3 - Ungit 1.4.31
Browse files Browse the repository at this point in the history
  • Loading branch information
Hirse committed Aug 7, 2018
1 parent 1de8d5c commit 247b6aa
Show file tree
Hide file tree
Showing 4 changed files with 2,518 additions and 2,352 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project tries to adhere to [Semantic Versioning](http://semver.org/).

## 0.7.3 - 2018-08-07
### Changed
- Updated Ungit to 1.4.31


## 0.7.2 - 2018-05-20
### Changed
Expand Down
5 changes: 4 additions & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ define(function (require, exports, module) {
reject();
});
nodeDomain.on("out", function (event, message) {
if (message.indexOf("## Ungit started ##") !== -1 || message.indexOf("Ungit server already running") !== -1) {
var started = message.indexOf("## Ungit started ##") !== -1 ||
message.indexOf("Ungit server already running") !== -1 ||
message.indexOf("Error: listen EADDRINUSE 127.0.0.1:8448") !== -1;
if (started) {
$toolbarButton.removeClass();
$toolbarButton.addClass("enabled");
status = STATUS_RUNNING;
Expand Down
Loading

0 comments on commit 247b6aa

Please sign in to comment.