vault / meshtastic-android / 0.6.8
meshtastic-android @ 0.6.8
integrity
- size
- 2.0 MiB
- downloaded
- last checked
release notes
- Thanks to @neklan for adding Japanese translations
- Add GUI for message delivery/status notifications. Will show a cloud icon with checkmark when delivered, empty cloud for in the mesh but not yet delivered, cloud with uparrow for waiting to upload to device
- Make a Soyes XS phone work - the root cause was an old google bluetooth bug - might help some other phones also
- Don't put duplicate entries into the bluetooth scan screen
- Allow devices to specifiy a minimum app version, if app is too old force an upgrade. This will be useful for some device updates that are coming next week.
- fix a few rare autobugs
- Change to use the 'new' phone API - devices have supported this API for a long time, but now I default to use it. This will make some future changes easier
download
unix · zip
curl -fL -o 0.6.8.zip https://ratatoskr.space/pkg/meshtastic-android/0.6.8.zip
printf '%s %s\n' '98fbc9a75344e31f835fd732c024632dfef857aa8474289e316765d13f11f007' '0.6.8.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-android/0.6.8.zip"
$out = "0.6.8.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "98fbc9a75344e31f835fd732c024632dfef857aa8474289e316765d13f11f007") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.6.8.tar.gz https://ratatoskr.space/pkg/meshtastic-android/0.6.8.tar.gz
printf '%s %s\n' '1241ba88eb3b7a454efe5241ac7b8ef83f40870749df8bbe7fe378497f00a722' '0.6.8.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-android/0.6.8.tar.gz"
$out = "0.6.8.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1241ba88eb3b7a454efe5241ac7b8ef83f40870749df8bbe7fe378497f00a722") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 0.6.8.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/0.6.8.zip
printf '%s %s\n' '98fbc9a75344e31f835fd732c024632dfef857aa8474289e316765d13f11f007' '0.6.8.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/0.6.8.zip"
$out = "0.6.8.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "98fbc9a75344e31f835fd732c024632dfef857aa8474289e316765d13f11f007") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 0.6.8.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/0.6.8.tar.gz
printf '%s %s\n' '1241ba88eb3b7a454efe5241ac7b8ef83f40870749df8bbe7fe378497f00a722' '0.6.8.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/0.6.8.tar.gz"
$out = "0.6.8.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "1241ba88eb3b7a454efe5241ac7b8ef83f40870749df8bbe7fe378497f00a722") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 0.6.8.zip | zip | 2.0 MiB |
blake3-24 ba48cb5f07c0d63b1380bbcc92b75d4e5b662ad80e3124fc
sha256 98fbc9a75344e31f835fd732c024632dfef857aa8474289e316765d13f11f007
sha1 8c334b1d51604d2b78aa35091b21673bde2e35b6
|
| 0.6.8.tar.gz | tar.gz | 1.9 MiB |
blake3-24 19feeae080dda27ab433d19ff8fbd68bb29eb34a039f6358
sha256 1241ba88eb3b7a454efe5241ac7b8ef83f40870749df8bbe7fe378497f00a722
sha1 66e3e7aba3015c5bb58fa96a531505d399cb5772
|
install
bazel
http_archive(
name = "meshtastic-android",
urls = ["https://ratatoskr.space/pkg/meshtastic-android/0.6.8.tar.gz"],
integrity = "sha256-EkG6iOs7ekVO/lJBrHuO+D9AhwdJ34u+f+N4SX8ApyI=",
strip_prefix = "meshtastic-android-0.6.8",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-android/0.6.8.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-android",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/0.6.8.tar.gz"],
integrity = "sha256-EkG6iOs7ekVO/lJBrHuO+D9AhwdJ34u+f+N4SX8ApyI=",
strip_prefix = "meshtastic-android-0.6.8",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/0.6.8.tar.gz",