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/v1.3.0
vault / fyne / v1.3.0

fyne @ v1.3.0

integrity

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

release notes

After a lot of hard work (over 1000 commits) by our hard working team (including many new contributors) we are excited to announce our v1.3 release!

The main API additions are file dialogs for opening files across all our platforms (though on mobile save will arrive a little later), simple notifications to alert your users, some cross-platform file IO handling and new widgets including Accordion, SplitContainer and TextGrid.

We also added splash windows, image scaling configuration and the ability to set cursors and keyboard hints where platforms support that. Please dive in and let us know how you find this huge update.

Added

Changed

Fixed (highlights)

download

unix · zip
curl -fL -o v1.3.0.zip https://ratatoskr.space/pkg/fyne/v1.3.0.zip
                    printf '%s  %s\n' '76ed6d0c5d60b79251046157f1ecd33580caad056689bdb0adeafebad038ccf0' 'v1.3.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v1.3.0.zip"
$out = "v1.3.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "76ed6d0c5d60b79251046157f1ecd33580caad056689bdb0adeafebad038ccf0") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.3.0.tar.gz https://ratatoskr.space/pkg/fyne/v1.3.0.tar.gz
                    printf '%s  %s\n' '11ec265c24141eed718ef8c6416f8fd842f07e9d52cc53c187638029bc4efc28' 'v1.3.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v1.3.0.tar.gz"
$out = "v1.3.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "11ec265c24141eed718ef8c6416f8fd842f07e9d52cc53c187638029bc4efc28") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.3.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.3.0.zip
                    printf '%s  %s\n' '76ed6d0c5d60b79251046157f1ecd33580caad056689bdb0adeafebad038ccf0' 'v1.3.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.3.0.zip"
$out = "v1.3.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "76ed6d0c5d60b79251046157f1ecd33580caad056689bdb0adeafebad038ccf0") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.3.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.3.0.tar.gz
                    printf '%s  %s\n' '11ec265c24141eed718ef8c6416f8fd842f07e9d52cc53c187638029bc4efc28' 'v1.3.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.3.0.tar.gz"
$out = "v1.3.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "11ec265c24141eed718ef8c6416f8fd842f07e9d52cc53c187638029bc4efc28") { throw "sha256 mismatch" }
artifact format size hashes
v1.3.0.zip zip 8.3 MiB
blake3-24 5b6ecf5db1e7486a0d651a66b2f1463b07079af4689514b6
sha256 76ed6d0c5d60b79251046157f1ecd33580caad056689bdb0adeafebad038ccf0
sha1 2a93a1a298050184d9dd58fe14e21d4d7ed88c66
v1.3.0.tar.gz tar.gz 7.3 MiB
blake3-24 56fb78fb000e84544b3fc1c2a51af6e157cbfd01c7dbcd03
sha256 11ec265c24141eed718ef8c6416f8fd842f07e9d52cc53c187638029bc4efc28
sha1 3087c848edc82cd768d6fea7b65ac20539df616a

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
v1.3.0.zip zip 4.8 MiB
blake3-24 097035accc1fc54114f54bee7ccbafa5f52f79db1d91c734
sha256 730b334f087ab032e84f494398c21d753971392e66c1c344b571c32e6bb030a1
sha1 a7095148e421d79f380a1b4b5d3719e529115bba

install

bazel
http_archive(
    name = "fyne",
    urls = ["https://ratatoskr.space/pkg/fyne/v1.3.0.tar.gz"],
    integrity = "sha256-EewmXCQUHu1xjvjGQW+P2ELwfp1SzFPBh2OAKbxO/Cg=",
    strip_prefix = "fyne-v1.3.0",
)
zig
.url = "https://ratatoskr.space/pkg/fyne/v1.3.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fyne@v1.3.0
install via yggdrasil mesh
bazel
http_archive(
    name = "fyne",
    urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.3.0.tar.gz"],
    integrity = "sha256-EewmXCQUHu1xjvjGQW+P2ELwfp1SzFPBh2OAKbxO/Cg=",
    strip_prefix = "fyne-v1.3.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.3.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne@v1.3.0
← v1.3.2v1.2.4 →