Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9f75f40

Browse files
committedFeb 4, 2018
Releasing 0.2.2
1 parent 4075a46 commit 9f75f40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎build/nelson.gui.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ process.on('unhandledRejection', function (reason, p) {
2727
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
2828
});
2929

30-
program.version(version).option('-p, --port [value]', 'Nelson GUI port', parseNumber, 5000).option('-a, --apiPort [value]', 'Nelson API port', parseNumber, 18600).option('-h, --apiHostname [value]', 'Nelson API hostname', 'mainnet.deviota.com').parse(process.argv);
30+
program.version(version).option('-p, --port [value]', 'Nelson GUI port', parseNumber, 5000).option('-a, --apiPort [value]', 'Nelson API port', parseNumber, 18600).option('-h, --apiHostname [value]', 'Nelson API hostname', 'localhost').parse(process.argv);
3131

3232
// Define the port to run on
3333
app.set('port', process.env.NELSON_GUI_PORT || program.port);
@@ -70,7 +70,7 @@ function proxy(req, resp) {
7070
return;
7171
}
7272
if (r.statusCode === 401) {
73-
console.log('Remote access denied', req.query, opts);
73+
console.log('Remote access denied');
7474
resp.status(401);
7575
return;
7676
}

‎package.json

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

0 commit comments

Comments
 (0)
Please sign in to comment.