Skip to content

Releases: golang-design/clipboard

v0.7.0

05 Mar 12:03
72ffba4
Compare
Choose a tag to compare

This release will require Go 1.17 or higher.

What's Changed

New Contributors

Full Changelog: v0.6.3...v0.7.0

v0.6.3

28 Oct 05:39
64c2cf5
Compare
Choose a tag to compare

This release only contains minor bug fixes, and no visible change exists.

v0.6.2

10 Apr 14:54
42a12a8
Compare
Choose a tag to compare

This is a minor release that fixes build issue on Android (#26 thanks @52funny).

v0.6.1

29 Mar 10:41
Compare
Choose a tag to compare

v0.6.0

22 Jan 13:10
076d92f
Compare
Choose a tag to compare

This is release is backward compatible but may change the behavior of using this package.

Previously, the package implicitly checks the capability of using this package at init(). If the requirement is not satisfied, it panics with a helper message for the user. However, panic at init is not recoverable hence we added a new API Init() in this release.

Hence, one may add the following code in the main package to verify if the package is functioning:

package main

import "golang.design/x/clipboard"

func init() {
    err := clipboard.Init()
    if err != nil {
        panic(err)
    }
}

v0.5.3

22 Sep 16:03
10ba29a
Compare
Choose a tag to compare

This version adds backward compatibility for Go versions before 1.17.

v0.5.2

20 Sep 14:34
Compare
Choose a tag to compare

This version improves the error messaging when CGO_ENABLED is set to 0.

v0.5.1

29 Aug 16:40
Compare
Choose a tag to compare

This version improves the error messaging before using this package (see #10). Now the package provides setup instructions for Linux systems if the environtment is missing required dependencies (libx11-dev or xvfb).

v0.5.0

24 Aug 23:12
Compare
Choose a tag to compare

This release adds mobile platform supports, it bumps the required Go version to Go 1.17. For users who do not need mobile support may still use the v0.4.7 release.

Here are more details of the release:

  • Add Android and iOS support 馃帀 (with the collaboration of gomobile)
  • A GUI application for functionality verification and usage demonstration
  • Bump up to require Go 1.17
  • Replace internal/cgo to runtime/cgo (this is our contribution to the Go project)

v0.4.6

17 May 12:31
Compare
Choose a tag to compare

This is a duplicated version of v0.4.5 for letting sum.golang.org update their database.