yggvault ratatoskr-space connected via regular web
Color theme
also available via yggdrasil mesh http://[203:b338:2a84:a18f:986:47ae:1a4:d8d3]/pkg/fyne/v2.1.2
vault / fyne / v2.1.2

fyne @ v2.1.2

integrity

size
10.0 MiB
downloaded
last checked
overlays
go
detected
go module fyne.io/fyne/v2
source https://github.com/fyne-io/fyne · available · github

release notes

This bug fix release on the 2.1 feature set of Fyne brings various stability improvements amd re-introduces support for older macOS devices. You can use the -tags legacy to add support for older SDKs that are no longer supported by the OS provider.

Fixed

As always please let us know how you find this release so we can keep on improving!

download

unix · zip
curl -fL -o v2.1.2.zip https://ratatoskr.space/pkg/fyne/v2.1.2.zip
                    printf '%s  %s\n' '260630cdac55acb2e1cdd2d6de3ae024f0de146858351ce057bd7038b9af046c' 'v2.1.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v2.1.2.zip"
$out = "v2.1.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "260630cdac55acb2e1cdd2d6de3ae024f0de146858351ce057bd7038b9af046c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.1.2.tar.gz https://ratatoskr.space/pkg/fyne/v2.1.2.tar.gz
                    printf '%s  %s\n' '7d0f3872f315a49beda564a05fe7e3b53f5364ceb85cc6670b30be63a8b9ec47' 'v2.1.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v2.1.2.tar.gz"
$out = "v2.1.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7d0f3872f315a49beda564a05fe7e3b53f5364ceb85cc6670b30be63a8b9ec47") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v2.1.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.2.zip
                    printf '%s  %s\n' '260630cdac55acb2e1cdd2d6de3ae024f0de146858351ce057bd7038b9af046c' 'v2.1.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.2.zip"
$out = "v2.1.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "260630cdac55acb2e1cdd2d6de3ae024f0de146858351ce057bd7038b9af046c") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.1.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.2.tar.gz
                    printf '%s  %s\n' '7d0f3872f315a49beda564a05fe7e3b53f5364ceb85cc6670b30be63a8b9ec47' 'v2.1.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.2.tar.gz"
$out = "v2.1.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7d0f3872f315a49beda564a05fe7e3b53f5364ceb85cc6670b30be63a8b9ec47") { throw "sha256 mismatch" }
artifact format size hashes
v2.1.2.zip zip 10.1 MiB
blake3-24 0a897a4ce3289d407696ba834ac5b54a68b7ed0c1945acd9
sha256 260630cdac55acb2e1cdd2d6de3ae024f0de146858351ce057bd7038b9af046c
sha1 1fa507eece1caa8c9354d7c8c2e0302c5b51a6c2
v2.1.2.tar.gz tar.gz 8.8 MiB
blake3-24 fc5d4b1713f59f47b385bc5f5bcf8e43e0ea244038fbf1c9
sha256 7d0f3872f315a49beda564a05fe7e3b53f5364ceb85cc6670b30be63a8b9ec47
sha1 18b270719141249e163a92dd6495f5b3951adc06

go module archive

module zip with the module path rewritten to this mirror; fetched by go get through the GOPROXY route

artifact format size hashes
v2.1.2.zip zip 6.1 MiB
blake3-24 329e90928b39e0d3dc5b8f9e3c188f74e6b1fa9543b2c004
sha256 4e6903a2161bc45c3e0187802a91aea2bdec9dcab3e257e8368657ad3df223c3
sha1 0e36e3364f0cd0e3e0e1271adacf4e2ae5debee8

install

bazel
http_archive(
    name = "fyne",
    urls = ["https://ratatoskr.space/pkg/fyne/v2.1.2.tar.gz"],
    integrity = "sha256-fQ84cvMVpJvtpWSgX+fjtT9TZM64XMZnCzC+Y6i57Ec=",
    strip_prefix = "fyne-v2.1.2",
)
zig
.url = "https://ratatoskr.space/pkg/fyne/v2.1.2.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fyne/v2@v2.1.2
install via yggdrasil mesh
bazel
http_archive(
    name = "fyne",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.2.tar.gz"],
    integrity = "sha256-fQ84cvMVpJvtpWSgX+fjtT9TZM64XMZnCzC+Y6i57Ec=",
    strip_prefix = "fyne-v2.1.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.2.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2@v2.1.2
← v2.1.3v2.1.1 →