fyne @ v1.4.2
integrity
- size
- 9.5 MiB
- downloaded
- last checked
- overlays
- go
- detected
- go module fyne.io/fyne
release notes
In this bugfix release we delivered a number of improvements to the fyne command that give more
control when building releases and completes the code signing of macOS apps for the App Store as well!
A number of other fixes including improvements to Entry validation and Android keyboards are included as well.
Added
- [fyne-cli] Add support for passing custom build tags (#1538)
Changed
- Run validation on content change instead of on each Refresh in widget.Entry
Fixed
- [fyne-cli] Android: allow to specify an inline password for the keystore
- Fixed Card widget MinSize (#1581)
- Fix missing release tag to enable BuildRelease in Settings.BuildType()
- Dialog shadow does not resize after Refresh (#1370)
- Android Duplicate Number Entry (#1256)
- Support older macOS by default - back to 10.11 (#886)
- Complete certification of macOS App Store releases (#1443)
- Fix compilation errors for early stage Wayland testing
- Fix entry.SetValidationError() not working correctly
download
unix · zip
curl -fL -o v1.4.2.zip https://ratatoskr.space/pkg/fyne/v1.4.2.zip
printf '%s %s\n' '16debec609efef377ed111c59d3ad74e2be2f87398322607c603f88c70225524' 'v1.4.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v1.4.2.zip"
$out = "v1.4.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "16debec609efef377ed111c59d3ad74e2be2f87398322607c603f88c70225524") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.2.tar.gz https://ratatoskr.space/pkg/fyne/v1.4.2.tar.gz
printf '%s %s\n' '5786ed28cd2ae7c662cabd63df048260b701fd2ca807f535fb282d4eddae0dd8' 'v1.4.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v1.4.2.tar.gz"
$out = "v1.4.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5786ed28cd2ae7c662cabd63df048260b701fd2ca807f535fb282d4eddae0dd8") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.4.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.4.2.zip
printf '%s %s\n' '16debec609efef377ed111c59d3ad74e2be2f87398322607c603f88c70225524' 'v1.4.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.4.2.zip"
$out = "v1.4.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "16debec609efef377ed111c59d3ad74e2be2f87398322607c603f88c70225524") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.4.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.4.2.tar.gz
printf '%s %s\n' '5786ed28cd2ae7c662cabd63df048260b701fd2ca807f535fb282d4eddae0dd8' 'v1.4.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.4.2.tar.gz"
$out = "v1.4.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "5786ed28cd2ae7c662cabd63df048260b701fd2ca807f535fb282d4eddae0dd8") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.4.2.zip | zip | 9.6 MiB |
blake3-24 728f280a0533081a69f0b6ffad947f622a46a3b79bdc204b
sha256 16debec609efef377ed111c59d3ad74e2be2f87398322607c603f88c70225524
sha1 91a5861b0a6e55eddc0b26fe72652d74cd341f30
|
| v1.4.2.tar.gz | tar.gz | 8.5 MiB |
blake3-24 130dce7684902ae6dedcdfdfd8fc9034fde3fbd017f843a4
sha256 5786ed28cd2ae7c662cabd63df048260b701fd2ca807f535fb282d4eddae0dd8
sha1 a62afd549339a50b994089808896aba3ff4f8455
|
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.4.2.zip | zip | 5.9 MiB |
blake3-24 4d3c5c78afccc4f2100e527ac00ea2c9af189b7996f4add1
sha256 4874bf78610a273d818c9b78be059130d07160b04b94a4c516dec74a260e6ea8
sha1 0a6b43aec4f89099949421f2cf05a315bdfaf5c5
|
install
bazel
http_archive(
name = "fyne",
urls = ["https://ratatoskr.space/pkg/fyne/v1.4.2.tar.gz"],
integrity = "sha256-V4btKM0q58Ziyr1j3wSCYLcB/SyoB/U1+ygtTt2uDdg=",
strip_prefix = "fyne-v1.4.2",
)
zig
.url = "https://ratatoskr.space/pkg/fyne/v1.4.2.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fyne@v1.4.2
install via yggdrasil mesh
bazel
http_archive(
name = "fyne",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.4.2.tar.gz"],
integrity = "sha256-V4btKM0q58Ziyr1j3wSCYLcB/SyoB/U1+ygtTt2uDdg=",
strip_prefix = "fyne-v1.4.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.4.2.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne@v1.4.2