Skip to content

Commit 00926aa

Browse files
committed
Merge branch 'release/0.3.15-beta'
2 parents 4a65bbf + 064e8ac commit 00926aa

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9-
## [0.3.14] - 2018-01-09
9+
## [0.3.15] - 2018-01-09
1010

1111
### Changed
1212
- Fixed IRI TCP negotiation bug #4
1313
- Removed binaries from the versioning
14+
- Fixed terminal display
1415

1516
## [0.3.12] - 2018-01-06
1617

dist/node/tools/terminal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function nodes(_ref4) {
187187
var id = ((connection.hostname || connection.ip) + ':' + connection.port).bold.cyan;
188188
id = connection.name ? (id + ' (' + connection.name + ')').bold.cyan : id;
189189
// const weight = `[trust: ${(connection.trust * 100).toFixed(6)}]`.green;
190-
peersBox.setLine(5 + i, id + ' -> ' + (connection.protocol || 'udp'));
190+
peersBox.setLine(5 + i, id + ' -> ' + (connection.IRIProtocol || 'udp'));
191191
});
192192
}
193193
screen.render();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nelson.cli",
3-
"version": "0.3.14",
3+
"version": "0.3.15",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/SemkoDev/nelson.cli.git"

src/node/tools/terminal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ function nodes ({ nodes, connected }) {
170170
let id = `${connection.hostname||connection.ip}:${connection.port}`.bold.cyan;
171171
id = connection.name ? `${id} (${connection.name})`.bold.cyan : id;
172172
// const weight = `[trust: ${(connection.trust * 100).toFixed(6)}]`.green;
173-
peersBox.setLine(5 + i, `${id} -> ${connection.protocol || 'udp'}`);
173+
peersBox.setLine(5 + i, `${id} -> ${connection.IRIProtocol || 'udp'}`);
174174
});
175175
}
176176
screen.render();

0 commit comments

Comments
 (0)