reticulum @ 0.2.8
integrity
- size
- 1.4 MiB
- downloaded
- last checked
release notes
This beta release brings a single, but important improvement. Paths are now updated much more fluidly for peers moving around the network.
Since updates were made to how tunnels and path table entries are represented in this release, it is recommended to delete the following files on Transport Nodes:
~/.reticulum/storage/destination_table ~/.reticulum/storage/packet_hashlist ~/.reticulum/storage/tunnels ~/.reticulum/storage/cache/*
The files will be recreated when Reticulum is started.
Improvements
- Improved path updates for peers moving around the network
download
unix · zip
curl -fL -o 0.2.8.zip https://ratatoskr.space/pkg/reticulum/0.2.8.zip
printf '%s %s\n' '1cd7d5d3a2e6d1714590b8f6b28f6f62ab2cefe33c3a3c9f934475cf8e93be3c' '0.2.8.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/0.2.8.zip"
$out = "0.2.8.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1cd7d5d3a2e6d1714590b8f6b28f6f62ab2cefe33c3a3c9f934475cf8e93be3c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.2.8.tar.gz https://ratatoskr.space/pkg/reticulum/0.2.8.tar.gz
printf '%s %s\n' 'e8cd8e742ab20fd3df5bd7de52dc36e5bb398c31ea8903e4a1a3c0a46533d6a5' '0.2.8.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/0.2.8.tar.gz"
$out = "0.2.8.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e8cd8e742ab20fd3df5bd7de52dc36e5bb398c31ea8903e4a1a3c0a46533d6a5") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.2.8.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.8.zip
printf '%s %s\n' '1cd7d5d3a2e6d1714590b8f6b28f6f62ab2cefe33c3a3c9f934475cf8e93be3c' '0.2.8.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.8.zip"
$out = "0.2.8.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1cd7d5d3a2e6d1714590b8f6b28f6f62ab2cefe33c3a3c9f934475cf8e93be3c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.2.8.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.8.tar.gz
printf '%s %s\n' 'e8cd8e742ab20fd3df5bd7de52dc36e5bb398c31ea8903e4a1a3c0a46533d6a5' '0.2.8.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.8.tar.gz"
$out = "0.2.8.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "e8cd8e742ab20fd3df5bd7de52dc36e5bb398c31ea8903e4a1a3c0a46533d6a5") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.2.8.zip | zip | 1.4 MiB |
blake3-24 62d710da2d57dd8b2df67d41d5af4258ece5ed4f7d95f820
sha256 1cd7d5d3a2e6d1714590b8f6b28f6f62ab2cefe33c3a3c9f934475cf8e93be3c
sha1 2f24ce6031698ec1f0fffd6840738f56f2a70796
|
| 0.2.8.tar.gz | tar.gz | 1.4 MiB |
blake3-24 f9495630161b8a104c67f226c2a5ff8e0cbd466f89e72571
sha256 e8cd8e742ab20fd3df5bd7de52dc36e5bb398c31ea8903e4a1a3c0a46533d6a5
sha1 d8a53d0d8a6337c49969b0da42637a81095d6cad
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/0.2.8.tar.gz"],
integrity = "sha256-6M2OdCqyD9PfW9feUtw25bs5jDHqiQPkoaPApGUz1qU=",
strip_prefix = "reticulum-0.2.8",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/0.2.8.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.8.tar.gz"],
integrity = "sha256-6M2OdCqyD9PfW9feUtw25bs5jDHqiQPkoaPApGUz1qU=",
strip_prefix = "reticulum-0.2.8",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.2.8.tar.gz",