fyne @ v1.1.1
integrity
- size
- 4.9 MiB
- downloaded
- last checked
- overlays
- go
- detected
- go module fyne.io/fyne
release notes
A mostly bugfix release for v1.1 that includes optimisations as well as essential fixes. In this release we also changed how the hidden property is interpreted so that child objects could remain hidden whilst tab contains show and hide groups.
Added
- Add support for custom Windows manifest files in fyne package
Changed
- Dismiss non-modal popovers on secondary tap
- Only measure visible objects in layouts and minSize calculations (#343)
- Don't propagate show/hide in the model - allowing children of tabs to remain hidden
- Disable cut/copy for password fields
- Correctly calculate grid layout minsize as width changes
- Select text at end of line when double tapping beyond width
Fixed
- Scale could be too large on macOS Retina screens
- Window with fixed size changes size when un-minimized on Windows (#300)
- Setting text on a label could crash if it was not yet shown (#381)
- Multiple Entry widgets could have selections simultaneously (#341)
- Hover effect of radio widget too low (#383)
- Missing shadow on Select widget
- Incorrect rendering of subimages within Image object
- Size calculation caches could be skipped causing degraded performance
download
unix · zip
curl -fL -o v1.1.1.zip https://ratatoskr.space/pkg/fyne/v1.1.1.zip
printf '%s %s\n' '5cfff4fa42ddde0a564a592c857c72c8a3412374a61442179af3ba3aaa9be684' 'v1.1.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v1.1.1.zip"
$out = "v1.1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5cfff4fa42ddde0a564a592c857c72c8a3412374a61442179af3ba3aaa9be684") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.1.tar.gz https://ratatoskr.space/pkg/fyne/v1.1.1.tar.gz
printf '%s %s\n' '470665c81c49e6425946eabaf8104b562cb31d3d8cbf66d23d5f3ed6c231addd' 'v1.1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v1.1.1.tar.gz"
$out = "v1.1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "470665c81c49e6425946eabaf8104b562cb31d3d8cbf66d23d5f3ed6c231addd") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.1.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.1.1.zip
printf '%s %s\n' '5cfff4fa42ddde0a564a592c857c72c8a3412374a61442179af3ba3aaa9be684' 'v1.1.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.1.1.zip"
$out = "v1.1.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5cfff4fa42ddde0a564a592c857c72c8a3412374a61442179af3ba3aaa9be684") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.1.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.1.1.tar.gz
printf '%s %s\n' '470665c81c49e6425946eabaf8104b562cb31d3d8cbf66d23d5f3ed6c231addd' 'v1.1.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.1.1.tar.gz"
$out = "v1.1.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "470665c81c49e6425946eabaf8104b562cb31d3d8cbf66d23d5f3ed6c231addd") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.1.1.zip | zip | 5.0 MiB |
blake3-24 cc5289a9bdf1096956294cc3dfe5512f52beeae3a00a049b
sha256 5cfff4fa42ddde0a564a592c857c72c8a3412374a61442179af3ba3aaa9be684
sha1 7b245dce5f3ecb824f7b1bcfafa1ee3733d398df
|
| v1.1.1.tar.gz | tar.gz | 4.7 MiB |
blake3-24 8ea421430c223190731212a76cad1ac4bf00431917019c98
sha256 470665c81c49e6425946eabaf8104b562cb31d3d8cbf66d23d5f3ed6c231addd
sha1 38f5b0cd4c7056c2c84f0f57151776cbf2e79130
|
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.1.1.zip | zip | 3.2 MiB |
blake3-24 fba967eac84730cbabf444bee7b8fdd98a601be7cfbeadec
sha256 54cb14e020f10232d5830986f783071426f8e57084ca1a694a853f479214e999
sha1 ab9df565c1abae525b5b3055d56955512065df72
|
install
bazel
http_archive(
name = "fyne",
urls = ["https://ratatoskr.space/pkg/fyne/v1.1.1.tar.gz"],
integrity = "sha256-RwZlyBxJ5kJZRuq6+BBLViyzHT2Mv2bSPV8+1sIxrd0=",
strip_prefix = "fyne-v1.1.1",
)
zig
.url = "https://ratatoskr.space/pkg/fyne/v1.1.1.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fyne@v1.1.1
install via yggdrasil mesh
bazel
http_archive(
name = "fyne",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.1.1.tar.gz"],
integrity = "sha256-RwZlyBxJ5kJZRuq6+BBLViyzHT2Mv2bSPV8+1sIxrd0=",
strip_prefix = "fyne-v1.1.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.1.1.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne@v1.1.1