Skip to content

Commit

Permalink
Merge pull request #111 from HorizenOfficial/development
Browse files Browse the repository at this point in the history
Release 0.5.1
  • Loading branch information
otoumas authored Dec 1, 2023
2 parents b7f145b + 8924a17 commit 911e87f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ See the [Installation Guide](https://horizenofficial.atlassian.net/wiki/spaces/Z

## Changes

#### 0.5.1
- Fix setup for new nodes (thanks to valamidev)
Note: existing nodes do not need to update.

#### 0.5.0
- Remove challenges
- Remove check for private addresses
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zennodetracker",
"version": "0.5.0",
"version": "0.5.1",
"description": "horizen secure and super node tracking application",
"repository": {
"type": "git",
Expand Down
10 changes: 5 additions & 5 deletions setup.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ const convertConfig = () => {

const cfgOld = {};
cfgOld.nodeid = localStorage.getItem('nodeid');
cfgOld.stakeaddr = stakeaddrLS ? stakeaddrLS.trim() : null;
cfgOld.email = emailLS ? emailLS.trim() : null;
cfgOld.fqdn = fqdnLS ? fqdnLS.trim() : null;
cfgOld.region = regionLS ? regionLS.trim() : null;
cfgOld.stakeaddr = stakeaddrLS ? stakeaddrLS.trim() : '';
cfgOld.email = emailLS ? emailLS.trim() : '';
cfgOld.fqdn = fqdnLS ? fqdnLS.trim() : '';
cfgOld.region = regionLS ? regionLS.trim() : '';
cfgOld.ipv = ipvLS ? ipvLS.trim() : '4';
cfgOld.category = catLS ? catLS.trim() : null;
cfgOld.category = catLS ? catLS.trim() : '';
if (cfgOld.stakeaddr) cfgOld.replace = true;
return { cfgOld };
};
Expand Down

0 comments on commit 911e87f

Please sign in to comment.