fyne @ v2.1.0
integrity
- size
- 10.0 MiB
- downloaded
- last checked
- overlays
- go
- detected
- go module fyne.io/fyne/v2
release notes
The v2.1.0 release represents a huge step forward since 2.0 - just as many commits as went into the v2.0.0 release! We added new widgets, a Lifecycle API, storage helpers, build metadata and lots of optimisations too. Check out the full release below and let us know what you think :)
Note that custom focusable widgets will not automatically be focussed on tap any more, you may wish to update your code so it requests focus on tapped (see https://developer.fyne.io/api/v2.1/upgrading).
Added
- DocTabs container for handling multiple open files
- Lifecycle API for handling foreground, background and other event
- Add RichText widget and Markdown parser
- Add TabWidth to TextStyle to specify tab size in spaces
- Add CheckGroup widget for multi-select
- Add FyneApp.toml metadata file to ease build commands
- Include http and https in standard repositories
- Add selection color to themes
- Include baseline information in driver font measurement
- Document storage API (App.Storage().Create() and others)
- Add "App Files" to file dialog for apps that use document storage
- Tab overflow on AppTabs
- Add URI and Unbound type to data bindings
- Add keyboard support for menus, pop-ups and buttons
- Add SimpleRenderer to help make simple widgets (#709)
- Add scroll functions for List, Table, Tree (#1892)
- Add selection and disabling to MenuItem
- Add Alignment to widget.Select (#2329)
- Expose ScanCode for keyboard events originating from hardware (#1523)
- Support macOS GPU switching (#2423)
Changed
- Focusable widgets are no longer focused on tap, add canvas.Focus(obj) in Tapped handler if required
- Move to background based selection for List, Table and Tree
- Update fyne command line tool to use --posix style parameters
- Switch from gz to xz compression for unix packages
- Performance improvements with line, text and raster rendering
- Items not yet visible can no longer be focused
- Lines can now be drawn down to 1px (instead of 1dp) (#2298)
- Support multiple lines of text on button (#2378)
- Improved text layout speed by caching string size calculations
- Updated to require Go 1.14 so we can use some new features
- Window Resize request is now asynchronous
- Up/Down keys take cursor home/end when on first/last lines respectively
Fixed
- Correctly align text tabs (#1791)
- Mobile apps theme does not match system (#472)
- Toolbar with widget.Label makes the ToolbarAction buttons higher (#2257)
- Memory leaks in renderers and canvases cache maps (#735)
- FileDialog SetFilter does not work on Android devices (#2353)
- Hover fix for List and Tree with Draggable objects
- Line resize can flip slope (#2208)
- Deadlocks when using widgets with data (#2348)
- Changing input type with keyboard visible would not update soft keyboards
- MainMenu() Close item does NOT call function defined in SetCloseIntercept (#2355)
- Entry cursor position with mouse is offset vertically by theme.SizeNameInputBorder (#2387)
- Backspace key is not working on Android AOSP (#1941)
- macOS: 'NSUserNotification' has been deprecated (#1833)
- macOS: Native menu would add new items if refreshed
- iOS builds fail since Go 1.16
- Re-add support for 32 bit iOS devices, if built with Go 1.14
- Android builds fail on Apple M1 (#2439)
- SetFullScreen(true) before ShowAndRun fails (#2446)
- Interacting with another app when window.SetFullScreen(true) will cause the application to hide itself. (#2448)
- Sequential writes to preferences does not save to file (#2449)
- Correct Android keyboard handling (#2447)
- MIUI-Android: The widget’s Hyperlink cannot open the URL (#1514)
- Improved performance of data binding conversions and text MinSize
download
unix · zip
curl -fL -o v2.1.0.zip https://ratatoskr.space/pkg/fyne/v2.1.0.zip
printf '%s %s\n' '3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531' 'v2.1.0.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/fyne/v2.1.0.zip"
$out = "v2.1.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.1.0.tar.gz https://ratatoskr.space/pkg/fyne/v2.1.0.tar.gz
printf '%s %s\n' 'bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5' 'v2.1.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/fyne/v2.1.0.tar.gz"
$out = "v2.1.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v2.1.0.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.zip
printf '%s %s\n' '3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531' 'v2.1.0.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.zip"
$out = "v2.1.0.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v2.1.0.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.tar.gz
printf '%s %s\n' 'bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5' 'v2.1.0.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.tar.gz"
$out = "v2.1.0.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v2.1.0.zip | zip | 10.1 MiB |
blake3-24 90278a6e8b035be9fc66f27f1aae1465f8b787618b18f6b0
sha256 3aec5fc60e1eb20525932ea866cfb9652301e41708183bb9e5a1afbfceb55531
sha1 964b6c7292c4eec51976de9fba9106aaa2cb67aa
|
| v2.1.0.tar.gz | tar.gz | 8.8 MiB |
blake3-24 30660e95e20562df763881f5879890281fcea2b12c380bcb
sha256 bee4433fd139fbbe6e036f8bb84607fc7dac628ebbc5f6a540c225f09c5595f5
sha1 517b76d99a23d46d7f7e0390fd66906fb8081bbc
|
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.1.0.zip | zip | 6.1 MiB |
blake3-24 a35351869fcc52e334fadda990a3ebe2c6fad2ad64fe931e
sha256 24029fa6dfaaf2052941ae3597bf52e6dd16689596a8b97847bbb3a213df9fe5
sha1 02401b0aafad9e6bf07ba26e1ea2e5098e7d3578
|
install
bazel
http_archive(
name = "fyne",
urls = ["https://ratatoskr.space/pkg/fyne/v2.1.0.tar.gz"],
integrity = "sha256-vuRDP9E5+75uA2+LuEYH/H2sYo67xfalQMIl8JxVlfU=",
strip_prefix = "fyne-v2.1.0",
)
zig
.url = "https://ratatoskr.space/pkg/fyne/v2.1.0.tar.gz",
go
GOPROXY=https://ratatoskr.space GOSUMDB=off go get ratatoskr.space/pkg/fyne/v2@v2.1.0
install via yggdrasil mesh
bazel
http_archive(
name = "fyne",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.tar.gz"],
integrity = "sha256-vuRDP9E5+75uA2+LuEYH/H2sYo67xfalQMIl8JxVlfU=",
strip_prefix = "fyne-v2.1.0",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2.1.0.tar.gz",
go
GOPROXY=http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg GOSUMDB=off GOINSECURE=14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/* go get 14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/fyne/v2@v2.1.0