Skip to content

Commit 6497412

Browse files
committed
Update version
1 parent 9c82fe1 commit 6497412

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Bitcoin Node Manager Changelog
22

3+
## 1.0.0 - 2020-12-13
4+
5+
Three years after the first release, 1.0.0 is finally out :partying_face:
6+
7+
- [**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
8+
- [**Improved**] Link to block explorer that displays forks
9+
- [**Improved**] Updated hoster detection list
10+
- [**Improved**] Dynamic services detection
11+
- [**Fixed**] Compatibility with Bitcoin Core 0.20.1
12+
- [**Fixed**] Country flag icons
13+
- [**Fixed**] Compatibility with IP-API.com limits
14+
- [**Fixed**] Peer geo data
15+
- [**Fixed**] Forks counter
16+
- [**Fixed**] PHP Error namespace
17+
- [**Fixed**] Wallet page
18+
319
## 0.6.0 Beta - 2020-05-12
420

521
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.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bitcoin Node Manager Beta
22

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

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

@@ -55,5 +55,4 @@ Bitcoin Node Manager (BNM) is a lightweight dashboard and control system for you
5555
- [ ] Display expanded peer/block info (popup)
5656
- [ ] More customization settings
5757
- [ ] Highlight suspicious peers
58-
- [ ] Sort mempool tx, request more
5958
- [ ] Option to import blacklist of spy / resource wasting peers

src/Config.php.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class Config {
2929
// Set the FALSE to not use the Geo API.
3030
const PEERS_GEO = TRUE;
3131
// Maxmimum of seconds to wait for response from ip-api.com
32-
const GEO_TIMEOUT = 2;
32+
const PEERS_GEO_TIMEOUT = 2;
3333

3434
// Number of TXs displayed on mempool page
3535
const DISPLAY_TXS = 100;

src/Utility.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -664,8 +664,8 @@ function getIpData($ips){
664664
curl_setopt($ch, CURLOPT_POST, true);
665665
curl_setopt($ch, CURLOPT_URL,'http://ip-api.com/batch?fields=query,country,countryCode,city,isp,status');
666666
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));
667-
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT , CONFIG::GEO_TIMEOUT);
668-
curl_setopt($ch, CURLOPT_TIMEOUT, CONFIG::GEO_TIMEOUT+1);
667+
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT , CONFIG::PEERS_GEO_TIMEOUT);
668+
curl_setopt($ch, CURLOPT_TIMEOUT, CONFIG::PEERS_GEO_TIMEOUT+1);
669669

670670
// One call for each 100 ips
671671
$apiData['geojson'] = [];

views/footer.phtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<footer>
22
<div class="pull-right">
3-
<i class="fa fa-bitcoin orange"></i> <a href="https://github.com/mirobit/bitcoin-node-manager"> Node Manger v0.6.0</a> - © 2020
3+
<i class="fa fa-bitcoin orange"></i> <a href="https://github.com/mirobit/bitcoin-node-manager"> Node Manger v1.0.0</a> - © 2020
44
</div>
55
<div class="clearfix"></div>
66
</footer>

0 commit comments

Comments
 (0)