reticulum @ 1.5.2
integrity
- size
- 12.3 MiB
- downloaded
- last checked
release notes
This maintenance release fixes a regression in resource transfers that was introduced in 1.5.1, an I2PInterface bug, and sets dataplane control parameters to default values that are actually sensible. If you installed 1.5.1, it's update time again, baby.
Changes
- Tuned dataplane control parameters
- Added example for blocking unidentified page node peers to
rngitdefault config - Fixed regression in resource transfers causing some
rngitfile downloads to fail - Fixed keepalive frames being passed to transport core on
I2PInterface
download
unix · zip
curl -fL -o 1.5.2.zip https://ratatoskr.space/pkg/reticulum/1.5.2.zip
printf '%s %s\n' '6d522031f5a894878405c44c61aad36b08b7c2209b4616e961b974f98eb0fb78' '1.5.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/1.5.2.zip"
$out = "1.5.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "6d522031f5a894878405c44c61aad36b08b7c2209b4616e961b974f98eb0fb78") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 1.5.2.tar.gz https://ratatoskr.space/pkg/reticulum/1.5.2.tar.gz
printf '%s %s\n' '7b8a580ffa3d16eee4af6d72f8563baf76a45e6eec0505ddf11a2e07626e7d5a' '1.5.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/1.5.2.tar.gz"
$out = "1.5.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7b8a580ffa3d16eee4af6d72f8563baf76a45e6eec0505ddf11a2e07626e7d5a") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 1.5.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/1.5.2.zip
printf '%s %s\n' '6d522031f5a894878405c44c61aad36b08b7c2209b4616e961b974f98eb0fb78' '1.5.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/1.5.2.zip"
$out = "1.5.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "6d522031f5a894878405c44c61aad36b08b7c2209b4616e961b974f98eb0fb78") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 1.5.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/1.5.2.tar.gz
printf '%s %s\n' '7b8a580ffa3d16eee4af6d72f8563baf76a45e6eec0505ddf11a2e07626e7d5a' '1.5.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/1.5.2.tar.gz"
$out = "1.5.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7b8a580ffa3d16eee4af6d72f8563baf76a45e6eec0505ddf11a2e07626e7d5a") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 1.5.2.zip | zip | 12.4 MiB |
blake3-24 4bda2e9edaa45b95f0e60196a69e5729b0882d0a64851f69
sha256 6d522031f5a894878405c44c61aad36b08b7c2209b4616e961b974f98eb0fb78
sha1 065a42d92322fe8b1663acdd549855a9537899b4
|
| 1.5.2.tar.gz | tar.gz | 12.2 MiB |
blake3-24 07b22b2c3e62acb5755974b7b656854a5ea5ccf769c079bc
sha256 7b8a580ffa3d16eee4af6d72f8563baf76a45e6eec0505ddf11a2e07626e7d5a
sha1 622838cab17c798f4d9688fbe6390ec96ae0f7d9
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/1.5.2.tar.gz"],
integrity = "sha256-e4pYD/o9Fu7kr21y+FY7r3akXm7sBQXd8RouB2JufVo=",
strip_prefix = "reticulum-1.5.2",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/1.5.2.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/1.5.2.tar.gz"],
integrity = "sha256-e4pYD/o9Fu7kr21y+FY7r3akXm7sBQXd8RouB2JufVo=",
strip_prefix = "reticulum-1.5.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/1.5.2.tar.gz",