fyne @ v2.2.2
integrity
- size
- 12.1 MiB
- downloaded
- last checked
- overlays
- go
- detected
- go module fyne.io/fyne/v2
release notes
In this release we updated applications so that if a system tray icon was visible the app would not exit when the last window closes. You can still set a window to be master if you would like the app to exit on close.
We also have a great list of fixes to the command line and various widgets as follows:
- Windows missing version metadata when packaged (#3046)
- Fyne package would not build apps using old Fyne versions
- System tray icon may not be removed on app exit in Windows
- Emphasis in Markdown gives erroneous output in RichText (#2974)
- When last visible window is closed, hidden window is set visible (#3059)
- Do not close app when last window is closed but systrayMenu exists (#3092)
- Image with ImageFillOriginal not showing (#3102)
- Fix build issue with web target from macOS computers
download
unix · zip
curl -fL -o v2.2.2.zip https://ratatoskr.space/pkg/fyne/v2.2.2.zip
printf '%s %s\n' 'adb1da5356fdd887cced4ec495158ff427ecf4e10690bf486d6289b5c1ba2e83' 'v2.2.2.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v2.2.2.zip"
$out = "v2.2.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "adb1da5356fdd887cced4ec495158ff427ecf4e10690bf486d6289b5c1ba2e83") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.2.2.tar.gz https://ratatoskr.space/pkg/fyne/v2.2.2.tar.gz
printf '%s %s\n' '2711ca1e474242182ee7a6594f939947ec8a011407859d130042061b47d084ed' 'v2.2.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v2.2.2.tar.gz"
$out = "v2.2.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2711ca1e474242182ee7a6594f939947ec8a011407859d130042061b47d084ed") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v2.2.2.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.2.2.zip
printf '%s %s\n' 'adb1da5356fdd887cced4ec495158ff427ecf4e10690bf486d6289b5c1ba2e83' 'v2.2.2.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.2.2.zip"
$out = "v2.2.2.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "adb1da5356fdd887cced4ec495158ff427ecf4e10690bf486d6289b5c1ba2e83") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.2.2.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.2.2.tar.gz
printf '%s %s\n' '2711ca1e474242182ee7a6594f939947ec8a011407859d130042061b47d084ed' 'v2.2.2.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.2.2.tar.gz"
$out = "v2.2.2.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2711ca1e474242182ee7a6594f939947ec8a011407859d130042061b47d084ed") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v2.2.2.zip | zip | 12.2 MiB |
blake3-24 0758eb05f0bea17dd4fda14c9bf1997c2a96c268e1142c5a
sha256 adb1da5356fdd887cced4ec495158ff427ecf4e10690bf486d6289b5c1ba2e83
sha1 fa7070fd22ade116b4fd6fe3c549f5cdd609bcd4
|
| v2.2.2.tar.gz | tar.gz | 10.8 MiB |
blake3-24 ba2ae0a40b55842a2447880e13c393c5be691c94eeea0afc
sha256 2711ca1e474242182ee7a6594f939947ec8a011407859d130042061b47d084ed
sha1 928ed7c7f612427a6422113a767da1a87e84a49c
|
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.2.2.zip | zip | 7.6 MiB |
blake3-24 681528b2a75dfc9356d5689fbc8e37111c9df86b1bc88a27
sha256 6211ee274d9acb17271e58657dd71765294fa03e1a17edbecb4c7ca73299fd66
sha1 396890bf66c7bac9bf8ba6b331897120692b8dff
|
install
bazel
http_archive(
name = "fyne",
urls = ["https://ratatoskr.space/pkg/fyne/v2.2.2.tar.gz"],
integrity = "sha256-JxHKHkdCQhgu56ZZT5OZR+yKARQHhZ0TAEIGG0fQhO0=",
strip_prefix = "fyne-v2.2.2",
)
zig
.url = "https://ratatoskr.space/pkg/fyne/v2.2.2.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fyne/v2@v2.2.2
install via yggdrasil mesh
bazel
http_archive(
name = "fyne",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.2.2.tar.gz"],
integrity = "sha256-JxHKHkdCQhgu56ZZT5OZR+yKARQHhZ0TAEIGG0fQhO0=",
strip_prefix = "fyne-v2.2.2",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.2.2.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2@v2.2.2