bitchat @ v1.2.0
integrity
- size
- 305.3 KiB
- downloaded
- last checked
release notes
👾 purple release:
- mutual favorites bridge to nostr (NIP-17) to allow for out-of-mesh private messaging when internet is available
- removed RSSI indicators for better location privacy
- peer/battery/network optimizations
download
unix · zip
curl -fL -o v1.2.0.zip https://ratatoskr.space/pkg/bitchat/v1.2.0.zip
printf '%s %s\n' '8271adf4b82d751b39e12eeafa5b62ebbb238dc894fbd58f1f3b652860498e01' 'v1.2.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/bitchat/v1.2.0.zip"
$out = "v1.2.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8271adf4b82d751b39e12eeafa5b62ebbb238dc894fbd58f1f3b652860498e01") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.2.0.tar.gz https://ratatoskr.space/pkg/bitchat/v1.2.0.tar.gz
printf '%s %s\n' 'ab9f0cef358c1eed8c49c78cc8967f01a132b910e9582f1d944fb7b5e257e1db' 'v1.2.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/bitchat/v1.2.0.tar.gz"
$out = "v1.2.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ab9f0cef358c1eed8c49c78cc8967f01a132b910e9582f1d944fb7b5e257e1db") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.2.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/bitchat/v1.2.0.zip
printf '%s %s\n' '8271adf4b82d751b39e12eeafa5b62ebbb238dc894fbd58f1f3b652860498e01' 'v1.2.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/bitchat/v1.2.0.zip"
$out = "v1.2.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "8271adf4b82d751b39e12eeafa5b62ebbb238dc894fbd58f1f3b652860498e01") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.2.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/bitchat/v1.2.0.tar.gz
printf '%s %s\n' 'ab9f0cef358c1eed8c49c78cc8967f01a132b910e9582f1d944fb7b5e257e1db' 'v1.2.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/bitchat/v1.2.0.tar.gz"
$out = "v1.2.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "ab9f0cef358c1eed8c49c78cc8967f01a132b910e9582f1d944fb7b5e257e1db") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.2.0.zip | zip | 306.7 KiB |
blake3-24 e64c155b60ce20df099b4cea2c91ff0932abde6568ced9f8
sha256 8271adf4b82d751b39e12eeafa5b62ebbb238dc894fbd58f1f3b652860498e01
sha1 8d0924fab4d3d6bfc65cfdcf986b4696c44b9d56
|
| v1.2.0.tar.gz | tar.gz | 258.6 KiB |
blake3-24 271e7b406f21ec599006fdb0844e246638bfb517332aed20
sha256 ab9f0cef358c1eed8c49c78cc8967f01a132b910e9582f1d944fb7b5e257e1db
sha1 d564477ed28f04fca7181496f523681f25146be5
|
install
bazel
http_archive(
name = "bitchat",
urls = ["https://ratatoskr.space/pkg/bitchat/v1.2.0.tar.gz"],
integrity = "sha256-q58M7zWMHu2MSceMyJZ/AaEyuRDpWC8dlE+3teJX4ds=",
strip_prefix = "bitchat-v1.2.0",
)
zig
.url = "https://ratatoskr.space/pkg/bitchat/v1.2.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "bitchat",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/bitchat/v1.2.0.tar.gz"],
integrity = "sha256-q58M7zWMHu2MSceMyJZ/AaEyuRDpWC8dlE+3teJX4ds=",
strip_prefix = "bitchat-v1.2.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/bitchat/v1.2.0.tar.gz",