Results 45 comments of sqweek

As discussed in #82 the problem with these changes is they break compatibility with _older_ OSX releases. Ultimately I think dialog would benefit from some kind of backend selection mechanism,...

gioui is great! I would not object to having an example ready to go :) Is the additional module necessary? None of the existing examples are separate modules but afaik...

Look at `example/wde/main.go` -- it includes these imports: ``` import ( "github.com/skelterjohn/go.wde" // nolint: goimports _ "github.com/skelterjohn/go.wde/init" ) ``` Which are not part of dialog's `go.mod`¹ and as far as...

Haha damn, I tried to test this but: ``` $ go run main.go go: errors parsing go.mod: C:\code\go\src\github.com\sqweek\dialog\go.mod:3: invalid go version '1.21.7': must match format 1.23 ``` I edited go.mod...

> If you do go mod tidy right now, you will get this in go.mod > > ``` > module github.com/sqweek/dialog > > go 1.22.0 > > require ( >...