Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mattn/go-colorable
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.9
Choose a base ref
...
head repository: mattn/go-colorable
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.10
Choose a head ref
  • 4 commits
  • 4 files changed
  • 3 contributors

Commits on Sep 21, 2021

  1. Write plain text in chunks

    Instead of writing each byte alone to the console, always write the
    full plain text up to the next escape sequence or until the write
    is finished.
    Doing so means more copying around of bytes, but improves write
    performance significantly.
    secDre4mer committed Sep 21, 2021
    Configuration menu
    Copy the full SHA
    39a0e9a View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2021

  1. Add //go:build lines

    Starting with Go 1.17, //go:build lines are preferred over // +build
    lines, see https://golang.org/doc/go1.17#build-lines and
    https://golang.org/design/draft-gobuild for details.
    
    This change was generated by running Go 1.17 `go fmt ./...` which
    automatically adds //go:build lines based on the existing // +build
    lines.
    tklauser committed Sep 22, 2021
    Configuration menu
    Copy the full SHA
    4433af2 View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2021

  1. Merge pull request #59 from tklauser/go-build-lines

    Add //go:build lines
    mattn authored Sep 25, 2021
    Configuration menu
    Copy the full SHA
    a53eda5 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #56 from secDre4mer/master

    Write plain text in chunks
    mattn authored Sep 25, 2021
    Configuration menu
    Copy the full SHA
    6a118b2 View commit details
    Browse the repository at this point in the history
Loading