Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirobit committed Dec 13, 2020
1 parent 9c82fe1 commit 6497412
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Bitcoin Node Manager Changelog

## 1.0.0 - 2020-12-13

Three years after the first release, 1.0.0 is finally out :partying_face:

- [**New**] On the Main (Global Peer Distribution next to the help icon) and the Peers page (next to the help icon) is a small refresh icon displayed if Geo API calls were made
- [**Improved**] Link to block explorer that displays forks
- [**Improved**] Updated hoster detection list
- [**Improved**] Dynamic services detection
- [**Fixed**] Compatibility with Bitcoin Core 0.20.1
- [**Fixed**] Country flag icons
- [**Fixed**] Compatibility with IP-API.com limits
- [**Fixed**] Peer geo data
- [**Fixed**] Forks counter
- [**Fixed**] PHP Error namespace
- [**Fixed**] Wallet page

## 0.6.0 Beta - 2020-05-12

This will delete your `src\Config.php`. Copy the `src\Config.php.example`, remove `.example` and change your settings. Starting this release, `git pull` will not mess with your `src\Config.php` anymore.
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bitcoin Node Manager Beta

![](https://i.imgur.com/wfUpY1t.png)
![](https://user-images.githubusercontent.com/13236924/102018547-2c11e800-3d6e-11eb-96bb-e0bccf76977e.png)

Bitcoin Node Manager (BNM) is a lightweight dashboard and control system for your Bitcoin node.

Expand Down Expand Up @@ -55,5 +55,4 @@ Bitcoin Node Manager (BNM) is a lightweight dashboard and control system for you
- [ ] Display expanded peer/block info (popup)
- [ ] More customization settings
- [ ] Highlight suspicious peers
- [ ] Sort mempool tx, request more
- [ ] Option to import blacklist of spy / resource wasting peers
2 changes: 1 addition & 1 deletion src/Config.php.example
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Config {
// Set the FALSE to not use the Geo API.
const PEERS_GEO = TRUE;
// Maxmimum of seconds to wait for response from ip-api.com
const GEO_TIMEOUT = 2;
const PEERS_GEO_TIMEOUT = 2;

// Number of TXs displayed on mempool page
const DISPLAY_TXS = 100;
Expand Down
4 changes: 2 additions & 2 deletions src/Utility.php
Original file line number Diff line number Diff line change
Expand Up @@ -664,8 +664,8 @@ function getIpData($ips){
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_URL,'http://ip-api.com/batch?fields=query,country,countryCode,city,isp,status');
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT , CONFIG::GEO_TIMEOUT);
curl_setopt($ch, CURLOPT_TIMEOUT, CONFIG::GEO_TIMEOUT+1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT , CONFIG::PEERS_GEO_TIMEOUT);
curl_setopt($ch, CURLOPT_TIMEOUT, CONFIG::PEERS_GEO_TIMEOUT+1);

// One call for each 100 ips
$apiData['geojson'] = [];
Expand Down
2 changes: 1 addition & 1 deletion views/footer.phtml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<footer>
<div class="pull-right">
<i class="fa fa-bitcoin orange"></i> <a href="https://github.com/mirobit/bitcoin-node-manager"> Node Manger v0.6.0</a> - © 2020
<i class="fa fa-bitcoin orange"></i> <a href="https://github.com/mirobit/bitcoin-node-manager"> Node Manger v1.0.0</a> - © 2020
</div>
<div class="clearfix"></div>
</footer>
Expand Down

0 comments on commit 6497412

Please sign in to comment.