reticulum @ 0.6.0
integrity
- size
- 12.1 MiB
- downloaded
- last checked
release notes
This release brings a few performance improvements, additions to the included utilities, and fixes a number of bugs.
Changes
- Added ability to run automatic probe responder on Transport Instances
- Improved
rnprobeutility - Improved AutoInterface peering on Android devices
- Improved Transport performance
- Improved path re-discovery when local nodes roam to other network segments
- Updated various parts of the documentation
Bugfixes
- Fixed missing timeout check in
rncp - Fixed missing link status check on
Identify()call, which could lead to an unnecessary exception
Release Hashes
88a26b1593e82a628dab96dbe8820548aea0159235f730fa992bf1833db59246 rns-0.6.0-py3-none-any.whl
bcee416e4fb52346d01f6e0c46b1cebf84b127cc516603367fc2ae00a4149fa2 rnspure-0.6.0-py3-none-any.whl
download
unix · zip
curl -fL -o 0.6.0.zip https://ratatoskr.space/pkg/reticulum/0.6.0.zip
printf '%s %s\n' '044d3529abffe0a465558d96f0d9032f05a4e3e4cd109168360564da910488b5' '0.6.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/0.6.0.zip"
$out = "0.6.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "044d3529abffe0a465558d96f0d9032f05a4e3e4cd109168360564da910488b5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.6.0.tar.gz https://ratatoskr.space/pkg/reticulum/0.6.0.tar.gz
printf '%s %s\n' '1894e84a0d83a2f430ed5096b19fb65750188ab0995c55f2572c3fab4e05b0e2' '0.6.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/0.6.0.tar.gz"
$out = "0.6.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1894e84a0d83a2f430ed5096b19fb65750188ab0995c55f2572c3fab4e05b0e2") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.6.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.6.0.zip
printf '%s %s\n' '044d3529abffe0a465558d96f0d9032f05a4e3e4cd109168360564da910488b5' '0.6.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.6.0.zip"
$out = "0.6.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "044d3529abffe0a465558d96f0d9032f05a4e3e4cd109168360564da910488b5") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.6.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.6.0.tar.gz
printf '%s %s\n' '1894e84a0d83a2f430ed5096b19fb65750188ab0995c55f2572c3fab4e05b0e2' '0.6.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.6.0.tar.gz"
$out = "0.6.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1894e84a0d83a2f430ed5096b19fb65750188ab0995c55f2572c3fab4e05b0e2") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.6.0.zip | zip | 12.1 MiB |
blake3-24 899deea0c76f2ba4717afc0bc57305b285c6e7a3661e0241
sha256 044d3529abffe0a465558d96f0d9032f05a4e3e4cd109168360564da910488b5
sha1 a236ece7dff2ebd9c54b6724f57f1b70e3c67d80
|
| 0.6.0.tar.gz | tar.gz | 12.0 MiB |
blake3-24 75d9c49c23ea3646ecbafa8fcd8cf2ac951747a9dfa6af90
sha256 1894e84a0d83a2f430ed5096b19fb65750188ab0995c55f2572c3fab4e05b0e2
sha1 af3d3b56c02e3541dae4dfff6ddea10103c1c3b1
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/0.6.0.tar.gz"],
integrity = "sha256-GJToSg2DovQw7VCWsZ+2V1AYirCZXFXyVyw/q04FsOI=",
strip_prefix = "reticulum-0.6.0",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/0.6.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.6.0.tar.gz"],
integrity = "sha256-GJToSg2DovQw7VCWsZ+2V1AYirCZXFXyVyw/q04FsOI=",
strip_prefix = "reticulum-0.6.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.6.0.tar.gz",