mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-18 15:18:17 +00:00
1.8.6 with a UI non-responsiveness fix.
This commit is contained in:
@ -1,12 +1,18 @@
|
|||||||
ZeroTier Release Notes
|
ZeroTier Release Notes
|
||||||
======
|
======
|
||||||
|
|
||||||
|
# 2022-03-04 -- Version 1.8.6
|
||||||
|
|
||||||
|
* Fixed an issue that could cause the UI to be non-responsive if not joined to any networks.
|
||||||
|
* Fix dependency issues in Debian and RedHat packages for some distributions (Fedora, Mint).
|
||||||
|
|
||||||
# 2022-02-22 -- Version 1.8.5
|
# 2022-02-22 -- Version 1.8.5
|
||||||
|
|
||||||
* Plumbing under the hood for endpoint device SSO support.
|
* Plumbing under the hood for endpoint device SSO support.
|
||||||
* Fix in LinuxEthernetTap to tap device support on very old (2.6) Linux kernels.
|
* Fix in LinuxEthernetTap to tap device support on very old (2.6) Linux kernels.
|
||||||
* Fix an issue that could cause self-hosted roots ("moons") to fail to assist peers in making direct links. (GitHub issue #1512)
|
* Fix an issue that could cause self-hosted roots ("moons") to fail to assist peers in making direct links. (GitHub issue #1512)
|
||||||
* Merge a series of changes by Joseph Henry (of ZeroTier) that should fix some edge cases where ZeroTier would "forget" valid paths.
|
* Merge a series of changes by Joseph Henry (of ZeroTier) that should fix some edge cases where ZeroTier would "forget" valid paths.
|
||||||
|
* Minor multipath improvements for automatic path negotiation.
|
||||||
|
|
||||||
# 2021-11-30 -- Version 1.8.4
|
# 2021-11-30 -- Version 1.8.4
|
||||||
|
|
||||||
|
@ -1579,7 +1579,6 @@ public:
|
|||||||
}
|
}
|
||||||
} else if (ps[0] == "network") {
|
} else if (ps[0] == "network") {
|
||||||
Mutex::Lock _l(_nets_m);
|
Mutex::Lock _l(_nets_m);
|
||||||
if (!_nets.empty()) {
|
|
||||||
if (ps.size() == 1) {
|
if (ps.size() == 1) {
|
||||||
// Return [array] of all networks
|
// Return [array] of all networks
|
||||||
|
|
||||||
@ -1604,13 +1603,8 @@ public:
|
|||||||
scode = 200;
|
scode = 200;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
fprintf(stderr, "not found\n");
|
|
||||||
scode = 404;
|
scode = 404;
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
fprintf(stderr, "_nets is empty??\n");
|
|
||||||
scode = 500;
|
|
||||||
}
|
|
||||||
} else if (ps[0] == "peer") {
|
} else if (ps[0] == "peer") {
|
||||||
ZT_PeerList *pl = _node->peers();
|
ZT_PeerList *pl = _node->peers();
|
||||||
if (pl) {
|
if (pl) {
|
||||||
|
Reference in New Issue
Block a user