reticulum @ 0.3.3
integrity
- size
- 1.5 MiB
- downloaded
- last checked
release notes
This release adds major new functionality to Reticulum, including new connectivity options, improves stability, simplifies configuration and fixes a few bugs.
Improvements
- Added the I2P Interface to Reticulum
- Added I2P tunneling support for TCP interfaces
- Improved recovery of AutoInterface on underlying medium carrier loss
- Improved AutoInterface timeouts and timing
- Enabled the "outbound" interface option as on by default
- Added the "Access Point" interface mode
- Simplified default configuration
- Added verbose configuration example to the "rnsd" program
- Improved documentation and manual
- Fixed a potential race condition in resource assembly
- Fixed a reference error in TCP interfaces
- Fixed a configuration keyword error
download
unix · zip
curl -fL -o 0.3.3.zip https://ratatoskr.space/pkg/reticulum/0.3.3.zip
printf '%s %s\n' '5dcbfe1b4fceb150fefd5956525493e7bf3f2801b32e05f62b09d85ca827f09b' '0.3.3.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/0.3.3.zip"
$out = "0.3.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5dcbfe1b4fceb150fefd5956525493e7bf3f2801b32e05f62b09d85ca827f09b") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.3.3.tar.gz https://ratatoskr.space/pkg/reticulum/0.3.3.tar.gz
printf '%s %s\n' '4375c8bfb3a77779a0485e8f5facc0dfafabaa896c052003fc6150a9adde3cdc' '0.3.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/0.3.3.tar.gz"
$out = "0.3.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "4375c8bfb3a77779a0485e8f5facc0dfafabaa896c052003fc6150a9adde3cdc") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.3.3.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.3.zip
printf '%s %s\n' '5dcbfe1b4fceb150fefd5956525493e7bf3f2801b32e05f62b09d85ca827f09b' '0.3.3.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.3.zip"
$out = "0.3.3.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5dcbfe1b4fceb150fefd5956525493e7bf3f2801b32e05f62b09d85ca827f09b") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.3.3.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.3.tar.gz
printf '%s %s\n' '4375c8bfb3a77779a0485e8f5facc0dfafabaa896c052003fc6150a9adde3cdc' '0.3.3.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.3.tar.gz"
$out = "0.3.3.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "4375c8bfb3a77779a0485e8f5facc0dfafabaa896c052003fc6150a9adde3cdc") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.3.3.zip | zip | 1.5 MiB |
blake3-24 13ad18d5cd2cea83d04e96710fbf1eeeebe18a20b26c9603
sha256 5dcbfe1b4fceb150fefd5956525493e7bf3f2801b32e05f62b09d85ca827f09b
sha1 f4ef2cc3084118fc830d2f9f171050460dbc7b00
|
| 0.3.3.tar.gz | tar.gz | 1.4 MiB |
blake3-24 48d7e555796aee535a674b8aa68cc6d8f62e4c5f0a4b77c7
sha256 4375c8bfb3a77779a0485e8f5facc0dfafabaa896c052003fc6150a9adde3cdc
sha1 f0109b4e81c7d3530eeaafac3685a01fe58e9006
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/0.3.3.tar.gz"],
integrity = "sha256-Q3XIv7Ond3mgSF6PX6zA36+rqolsBSAD/GFQqa3ePNw=",
strip_prefix = "reticulum-0.3.3",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/0.3.3.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.3.tar.gz"],
integrity = "sha256-Q3XIv7Ond3mgSF6PX6zA36+rqolsBSAD/GFQqa3ePNw=",
strip_prefix = "reticulum-0.3.3",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.3.tar.gz",