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.0
vault / fyne / v2.1.0

fyne @ v2.1.0

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

The v2.1.0 release represents a huge step forward since 2.0 - just as many commits as went into the v2.0.0 release! We added new widgets, a Lifecycle API, storage helpers, build metadata and lots of optimisations too. Check out the full release below and let us know what you think :)

Note that custom focusable widgets will not automatically be focussed on tap any more, you may wish to update your code so it requests focus on tapped (see https://developer.fyne.io/api/v2.1/upgrading).

Added

Changed

Fixed

download

unix · zip
curl -fL -o v2.1.0.zip https://ratatoskr.space/pkg/fyne/v2.1.0.zip
                    printf '%s  %s\n' '3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531' 'v2.1.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v2.1.0.zip"
$out = "v2.1.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.1.0.tar.gz https://ratatoskr.space/pkg/fyne/v2.1.0.tar.gz
                    printf '%s  %s\n' 'bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5' 'v2.1.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v2.1.0.tar.gz"
$out = "v2.1.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v2.1.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.zip
                    printf '%s  %s\n' '3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531' 'v2.1.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.zip"
$out = "v2.1.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.1.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.tar.gz
                    printf '%s  %s\n' 'bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5' 'v2.1.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.tar.gz"
$out = "v2.1.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5") { throw "sha256 mismatch" }
artifact format size hashes
v2.1.0.zip zip 10.1 MiB
blake3-24 90278a6e8b035be9fc66f27f1aae1465f8b787618b18f6b0
sha256 3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531
sha1 964b6c7292c4eec51976de9fba9106aaa2cb67aa
v2.1.0.tar.gz tar.gz 8.8 MiB
blake3-24 30660e95e20562df763881f5879890281fcea2b12c380bcb
sha256 bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5
sha1 517b76d99a23d46d7f7e0390fd66906fb8081bbc

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.0.zip zip 6.1 MiB
blake3-24 a35351869fcc52e334fadda990a3ebe2c6fad2ad64fe931e
sha256 24029fa6dfaaf2052941ae3597bf52e6dd16689596a8b97847bbb3a213df9fe5
sha1 02401b0aafad9e6bf07ba26e1ea2e5098e7d3578

install

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