reticulum @ 0.5.1
integrity
- size
- 12.2 MiB
- downloaded
- last checked
release notes
This maintenance release brings a number of bugfixes and improvements. Thanks to @VioletEternity, who contributed to this release!
Changes
- Removed dependency on netifaces module
- Added ability to configure RNode display intensity to rnodeconf
- Added preliminary rnodeconf flasher/autoinstaller support for T3 v1.0 boards
- Fixed a bug that caused AutoInterface discovery scopes to fail
- Fixed rnodeconf firmware extraction for unverifiable devices
- Improved setting rnsd verbosity from command line
- Improved support for shared instances on Windows
- Improved rnodeconf support on Windows
- Improved rnodeconf zip-file handling
- Fixed a potentail race condition in announce queue handling for AutoInterface
- Various minor bugfixes
Release Hashes
01d76e03f93e427d9c0b95ab5d07e84ed39047e912b8afa6d619a65ac6b5e05b rns-0.5.1-py3-none-any.whl
2cfe431bec1160410b80bbcbf87eb2ab0d5abe5c6546f41eaf3f0f5faf9b2140 rnspure-0.5.1-py3-none-any.whl
download
unix · zip
curl -fL -o 0.5.1.zip https://ratatoskr.space/pkg/reticulum/0.5.1.zip
printf '%s %s\n' '5fac478e4d2abf2397e1402fa0ac0ab4cb765de15d4dcc7b98de2b689defe2d6' '0.5.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/reticulum/0.5.1.zip"
$out = "0.5.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5fac478e4d2abf2397e1402fa0ac0ab4cb765de15d4dcc7b98de2b689defe2d6") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.5.1.tar.gz https://ratatoskr.space/pkg/reticulum/0.5.1.tar.gz
printf '%s %s\n' 'a7c66c198a1eba13095b57e1e806c34d84ceaf2fc6567b2712ab38fb02577ad1' '0.5.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/reticulum/0.5.1.tar.gz"
$out = "0.5.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a7c66c198a1eba13095b57e1e806c34d84ceaf2fc6567b2712ab38fb02577ad1") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.5.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.5.1.zip
printf '%s %s\n' '5fac478e4d2abf2397e1402fa0ac0ab4cb765de15d4dcc7b98de2b689defe2d6' '0.5.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.5.1.zip"
$out = "0.5.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5fac478e4d2abf2397e1402fa0ac0ab4cb765de15d4dcc7b98de2b689defe2d6") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.5.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.5.1.tar.gz
printf '%s %s\n' 'a7c66c198a1eba13095b57e1e806c34d84ceaf2fc6567b2712ab38fb02577ad1' '0.5.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.5.1.tar.gz"
$out = "0.5.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "a7c66c198a1eba13095b57e1e806c34d84ceaf2fc6567b2712ab38fb02577ad1") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.5.1.zip | zip | 12.2 MiB |
blake3-24 0de916c7a9da0f7ecd3571f36864c3f68355a22f8cd7d71e
sha256 5fac478e4d2abf2397e1402fa0ac0ab4cb765de15d4dcc7b98de2b689defe2d6
sha1 c9ddd67790f0d2a0f92c9c9c3da73b66c4b9542d
|
| 0.5.1.tar.gz | tar.gz | 12.1 MiB |
blake3-24 27f163ac8f882c721dcd24536217f0ce61ccffe11c759077
sha256 a7c66c198a1eba13095b57e1e806c34d84ceaf2fc6567b2712ab38fb02577ad1
sha1 7d4f000fa985bdd56255b8a71f65a7f686e53ebe
|
install
bazel
http_archive(
name = "reticulum",
urls = ["https://ratatoskr.space/pkg/reticulum/0.5.1.tar.gz"],
integrity = "sha256-p8ZsGYoeuhMJW1fh6AbDTYTOry/GVnsnEqs4+wJXetE=",
strip_prefix = "reticulum-0.5.1",
)
zig
.url = "https://ratatoskr.space/pkg/reticulum/0.5.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "reticulum",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.5.1.tar.gz"],
integrity = "sha256-p8ZsGYoeuhMJW1fh6AbDTYTOry/GVnsnEqs4+wJXetE=",
strip_prefix = "reticulum-0.5.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/reticulum/0.5.1.tar.gz",