reticulum @ 0.2.5
integrity
- size
- 1.3 MiB
- downloaded
- last checked
release notes
This beta release brings a range of improvements and bugfixes.
Improvements
- Added endpoint tunneling for path restoration over intermittent or roving link layer connections.
- Added ability for TCP client interfaces to automatically reconnect if TCP socket drops.
- Improved link teardown handling.
- Improved interface error handling on non-recoverable / hardware errors.
Fixed bugs
- Fixed a bug that could cause path table entries to be culled two times in rare cases.
- Fixed a bug that could lead to the "outgoing" directive of interface configuration entries not being parsed correctly.
download
unix · zip
curl -fL -o 0.2.5.zip https://ratatoskr.space/pkg/reticulum/0.2.5.zip
printf '%s %s\n' 'c40f6abe1324868fc5a810685a7a1c5dc13e0722ba59855e434518b2334f036b' '0.2.5.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/0.2.5.zip"
$out = "0.2.5.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c40f6abe1324868fc5a810685a7a1c5dc13e0722ba59855e434518b2334f036b") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.2.5.tar.gz https://ratatoskr.space/pkg/reticulum/0.2.5.tar.gz
printf '%s %s\n' '8ef5a0fd19e9319fd6afd8dd1d1c09b24ed54d2d2edd387050a41df60dc97ba3' '0.2.5.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/0.2.5.tar.gz"
$out = "0.2.5.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8ef5a0fd19e9319fd6afd8dd1d1c09b24ed54d2d2edd387050a41df60dc97ba3") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.2.5.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.5.zip
printf '%s %s\n' 'c40f6abe1324868fc5a810685a7a1c5dc13e0722ba59855e434518b2334f036b' '0.2.5.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.5.zip"
$out = "0.2.5.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "c40f6abe1324868fc5a810685a7a1c5dc13e0722ba59855e434518b2334f036b") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.2.5.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.5.tar.gz
printf '%s %s\n' '8ef5a0fd19e9319fd6afd8dd1d1c09b24ed54d2d2edd387050a41df60dc97ba3' '0.2.5.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.5.tar.gz"
$out = "0.2.5.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8ef5a0fd19e9319fd6afd8dd1d1c09b24ed54d2d2edd387050a41df60dc97ba3") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.2.5.zip | zip | 1.3 MiB |
blake3-24 2b64f27ba429b138b5454d502cffc3fddbf393b9e7bdb345
sha256 c40f6abe1324868fc5a810685a7a1c5dc13e0722ba59855e434518b2334f036b
sha1 f42ddc18f440dbe54ced29e227cc3bc78cbe1c8c
|
| 0.2.5.tar.gz | tar.gz | 1.3 MiB |
blake3-24 eb5408bd1d3c0ea4e4083b18903c3cc5d17be1707cae9d19
sha256 8ef5a0fd19e9319fd6afd8dd1d1c09b24ed54d2d2edd387050a41df60dc97ba3
sha1 c4508e1a69cdc7ea4e2ce449dae2aa1a0ac8a86e
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/0.2.5.tar.gz"],
integrity = "sha256-jvWg/RnpMZ/Wr9jdHRwJsk7VTS0u3ThwUKQd9g3Je6M=",
strip_prefix = "reticulum-0.2.5",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/0.2.5.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.5.tar.gz"],
integrity = "sha256-jvWg/RnpMZ/Wr9jdHRwJsk7VTS0u3ThwUKQd9g3Je6M=",
strip_prefix = "reticulum-0.2.5",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.5.tar.gz",