vault / meshtastic-firmware / 1.0.0
meshtastic-firmware @ 1.0.0
integrity
- size
- 19.4 MiB
- downloaded
- last checked
release notes
Yay! Thanks to everyone's good work, I think we should call this 1.0 (because it is feature complete and fairly solid for the original 'tool for hikers' use case described at www.meshtastic.org).
This build is identical to the (successful) 0.9.7 alpha. I just bumped the number.
This week I'll do a post that tries to reference the 1.1 feature list wiki. Please edit that wiki with your ideas. When I do that post we can then triage and propose which items are in the 1.1 bucket (because a developer wants to work on them mostly...).
btw: The android app seems to have a serious bug still with some Samsung devices. So as soon as that one is fixed, I'll blessmotize that as 1.0. also.
download
unix · zip
curl -fL -o 1.0.0.zip https://ratatoskr.space/pkg/meshtastic-firmware/1.0.0.zip
printf '%s %s\n' '03d656c88be6106a70e8a98aae7a214db4584a16087ecb32a28b5b0ade8ea924' '1.0.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/1.0.0.zip"
$out = "1.0.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "03d656c88be6106a70e8a98aae7a214db4584a16087ecb32a28b5b0ade8ea924") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 1.0.0.tar.gz https://ratatoskr.space/pkg/meshtastic-firmware/1.0.0.tar.gz
printf '%s %s\n' '73a4692e8f56a37b8a6e915bdc153cb78094bdf32a26eaa6a219e4012062c3fd' '1.0.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-firmware/1.0.0.tar.gz"
$out = "1.0.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "73a4692e8f56a37b8a6e915bdc153cb78094bdf32a26eaa6a219e4012062c3fd") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 1.0.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/1.0.0.zip
printf '%s %s\n' '03d656c88be6106a70e8a98aae7a214db4584a16087ecb32a28b5b0ade8ea924' '1.0.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/1.0.0.zip"
$out = "1.0.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "03d656c88be6106a70e8a98aae7a214db4584a16087ecb32a28b5b0ade8ea924") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 1.0.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/1.0.0.tar.gz
printf '%s %s\n' '73a4692e8f56a37b8a6e915bdc153cb78094bdf32a26eaa6a219e4012062c3fd' '1.0.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/1.0.0.tar.gz"
$out = "1.0.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "73a4692e8f56a37b8a6e915bdc153cb78094bdf32a26eaa6a219e4012062c3fd") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 1.0.0.zip | zip | 19.5 MiB |
blake3-24 b068817664885bb2e0c61356bab2ff8ba85ca1523a7cf47c
sha256 03d656c88be6106a70e8a98aae7a214db4584a16087ecb32a28b5b0ade8ea924
sha1 361c95e6fe759366150b3ba3abdc5ec284389685
|
| 1.0.0.tar.gz | tar.gz | 19.4 MiB |
blake3-24 3fb19ae29efdfeaf63a31a0d64bdb9788be011d73c553fd4
sha256 73a4692e8f56a37b8a6e915bdc153cb78094bdf32a26eaa6a219e4012062c3fd
sha1 7e04a850aba177a09ca65093d0f74fd5d8a43ab9
|
install
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["https://ratatoskr.space/pkg/meshtastic-firmware/1.0.0.tar.gz"],
integrity = "sha256-c6RpLo9Wo3uKbpFb3BU8t4CUvfMqJuqmohnkASBiw/0=",
strip_prefix = "meshtastic-firmware-1.0.0",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-firmware/1.0.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-firmware",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/1.0.0.tar.gz"],
integrity = "sha256-c6RpLo9Wo3uKbpFb3BU8t4CUvfMqJuqmohnkASBiw/0=",
strip_prefix = "meshtastic-firmware-1.0.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-firmware/1.0.0.tar.gz",