reticulum @ 0.3.2
integrity
- size
- 1.4 MiB
- downloaded
- last checked
release notes
This maintenance release adds support for using a much wider range of devices as RNode LoRa interfaces with Reticulum, and also contains a few bugfixes and improvements.
Important! From this release, RNodes used with Reticulum must have at least firmware version 1.26 installed, due to the new multiplatform RNode support.
Improvements
- Added full support for RNodes based on ESP32 and ATmega2560 boards
- Fixed a bug in TCP interfaces on macOS
- Updated documentation and manual
download
unix · zip
curl -fL -o 0.3.2.zip https://ratatoskr.space/pkg/reticulum/0.3.2.zip
printf '%s %s\n' '7e1b5a1b6c8238f8844686a14b7d279d4ee7492084018bffd53414d3a63158cf' '0.3.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/0.3.2.zip"
$out = "0.3.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7e1b5a1b6c8238f8844686a14b7d279d4ee7492084018bffd53414d3a63158cf") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.3.2.tar.gz https://ratatoskr.space/pkg/reticulum/0.3.2.tar.gz
printf '%s %s\n' '2784d5f7b5b43db4151997bde5597d1c1413e0a235fdf1bcc40115ddf4e631d0' '0.3.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/0.3.2.tar.gz"
$out = "0.3.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2784d5f7b5b43db4151997bde5597d1c1413e0a235fdf1bcc40115ddf4e631d0") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.3.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.2.zip
printf '%s %s\n' '7e1b5a1b6c8238f8844686a14b7d279d4ee7492084018bffd53414d3a63158cf' '0.3.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.2.zip"
$out = "0.3.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7e1b5a1b6c8238f8844686a14b7d279d4ee7492084018bffd53414d3a63158cf") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.3.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.2.tar.gz
printf '%s %s\n' '2784d5f7b5b43db4151997bde5597d1c1413e0a235fdf1bcc40115ddf4e631d0' '0.3.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.2.tar.gz"
$out = "0.3.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2784d5f7b5b43db4151997bde5597d1c1413e0a235fdf1bcc40115ddf4e631d0") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.3.2.zip | zip | 1.4 MiB |
blake3-24 f4186f514635a0d232c2e3b05421884259511f5af5b1cf4f
sha256 7e1b5a1b6c8238f8844686a14b7d279d4ee7492084018bffd53414d3a63158cf
sha1 04299a5b1b4f37aca6eaf3957d362ed78978c85f
|
| 0.3.2.tar.gz | tar.gz | 1.4 MiB |
blake3-24 af87fe104985b303a5dff00870fab7c3b53c98ad6c66d054
sha256 2784d5f7b5b43db4151997bde5597d1c1413e0a235fdf1bcc40115ddf4e631d0
sha1 59a8bb847f83f163cb14442b85447b86e7d2443b
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/0.3.2.tar.gz"],
integrity = "sha256-J4TV97W0PbQVGZe95Vl9HBQT4KI1/fG8xAEV3fTmMdA=",
strip_prefix = "reticulum-0.3.2",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/0.3.2.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.2.tar.gz"],
integrity = "sha256-J4TV97W0PbQVGZe95Vl9HBQT4KI1/fG8xAEV3fTmMdA=",
strip_prefix = "reticulum-0.3.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.3.2.tar.gz",