fyne @ v1.0.0
integrity
- size
- 21.7 MiB
- downloaded
- last checked
release notes
The first release of Fyne marks a milestone for the project. We now have a stable and performant base API. Moving forward we are excited to add new features and enhancements that have been requested over the months of development.
The main features of Fyne at this time are:
- Canvas API (rect, line, circle, text, image)
- Widget API (box, button, check, entry, form, group, hyperlink, icon, label, progress bar, radio, scroller, tabs and toolbar)
- Light and dark themes
- Pointer, key and shortcut APIs (generic and desktop extension)
- OpenGL driver for Linux, macOS and Windows
- Tools for embedding data and packaging releases
The entire toolkit is developed using scalable graphics so that it looks clean and crisp on different devices and screen densities. This release only supports desktop applications but watch this space :).
Get started today at https://fyne.io/develop.
download
unix · zip
curl -fL -o v1.0.0.zip https://ratatoskr.space/pkg/fyne/v1.0.0.zip
printf '%s %s\n' '11857e375a3618bfea29b5da241a71fc54164840163fc66765029990c13128a6' 'v1.0.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v1.0.0.zip"
$out = "v1.0.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "11857e375a3618bfea29b5da241a71fc54164840163fc66765029990c13128a6") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.0.0.tar.gz https://ratatoskr.space/pkg/fyne/v1.0.0.tar.gz
printf '%s %s\n' '2e53dcf14b957962d4ad14a86923f0042ef42114d8f424098211d3495db8a4bf' 'v1.0.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v1.0.0.tar.gz"
$out = "v1.0.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2e53dcf14b957962d4ad14a86923f0042ef42114d8f424098211d3495db8a4bf") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.0.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.0.0.zip
printf '%s %s\n' '11857e375a3618bfea29b5da241a71fc54164840163fc66765029990c13128a6' 'v1.0.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.0.0.zip"
$out = "v1.0.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "11857e375a3618bfea29b5da241a71fc54164840163fc66765029990c13128a6") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.0.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.0.0.tar.gz
printf '%s %s\n' '2e53dcf14b957962d4ad14a86923f0042ef42114d8f424098211d3495db8a4bf' 'v1.0.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.0.0.tar.gz"
$out = "v1.0.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2e53dcf14b957962d4ad14a86923f0042ef42114d8f424098211d3495db8a4bf") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.0.0.zip | zip | 22.0 MiB |
blake3-24 6dacb1ae3a26a99f108b50a3f614a0f2dc031f4fca6fd9cd
sha256 11857e375a3618bfea29b5da241a71fc54164840163fc66765029990c13128a6
sha1 6de978e805f5ea2a73693bfa1d05c51e96379a47
|
| v1.0.0.tar.gz | tar.gz | 20.6 MiB |
blake3-24 14b73de543a0f65d40190bb3c654cef5249720c8bc0d6fd7
sha256 2e53dcf14b957962d4ad14a86923f0042ef42114d8f424098211d3495db8a4bf
sha1 5f79186dd9430423ca1d8aaaf9ecccf9ce30a06a
|
install
bazel
http_archive(
name = "fyne",
urls = ["https://ratatoskr.space/pkg/fyne/v1.0.0.tar.gz"],
integrity = "sha256-LlPc8UuVeWLUrRSoaSPwBC70IRTY9CQJghHTSV24pL8=",
strip_prefix = "fyne-v1.0.0",
)
zig
.url = "https://ratatoskr.space/pkg/fyne/v1.0.0.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "fyne",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.0.0.tar.gz"],
integrity = "sha256-LlPc8UuVeWLUrRSoaSPwBC70IRTY9CQJghHTSV24pL8=",
strip_prefix = "fyne-v1.0.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v1.0.0.tar.gz",