robotgo icon indicating copy to clipboard operation
robotgo copied to clipboard

Error version @latest version is v0.100.10.

Open Suceru opened this issue 1 year ago • 2 comments

  • Robotgo version (or commit ref):
  • Go version:
  • Gcc version:
  • Operating system and bit:
  • Resolution:
  • Can you reproduce the bug at Examples:
    • [ ] Yes (provide example code)
    • [ ] No
    • [ ] Not relevant
  • Provide example code:

  • Log gist:

Description

The @latest version referenced in the https://pkg.go.dev/github.com/go-vgo/robotgo error is v0.100.10; the go mod must be specified as @master version to download the latest version. ...

Suceru avatar May 01 '23 13:05 Suceru

just open the file path & line according to the notice, edit it like the following, works for me:

// change the line
return geve == 0
// to
return geve == false

hick avatar May 29 '23 09:05 hick

Because that's how go get is defined.

# Upgrade or downgrade to a specific version of a module.
$ go get golang.org/x/[email protected]

# Update to the commit on the module's master branch.
$ go get golang.org/x/text@master

# Upgrade to the latest release version.
$ go get golang.org/x/text@latest

Refer to https://go.dev/ref/mod#go-get.

wilon avatar Aug 09 '23 01:08 wilon