Projects STRLCPY termdash Commits e02ad317
🤬
  • ■ ■ ■ ■ ■ ■
    .travis.yml
    skipped 3 lines
    4 4   - 1.17.x
    5 5   - stable
    6 6  before_install:
    7  - - go get golang.org/x/tools/cmd/cover
    8  - - go get github.com/mattn/goveralls
     7 + - go install golang.org/x/tools/cmd/cover@latest
     8 + - go install github.com/mattn/goveralls@latest
     9 + - go install golang.org/x/lint/golint@latest
    9 10  script:
    10 11   - go get -t ./...
    11  - - go get -u golang.org/x/lint/golint
    12 12   # Temporarily set -mod=mod to allow modification of go.mod and go.sum.
    13 13   # This seems to be caused by a sum missing in the tcell dependency and
    14 14   # should be removed when no longer needed.
    skipped 1 lines
    16 16   - CGO_ENABLED=1 go test -mod=mod -race ./...
    17 17   - go vet ./...
    18 18   - diff -u <(echo -n) <(gofmt -d -s .)
    19  - - diff -u <(echo -n) <(./internal/scripts/autogen_licences.sh .)
     19 + - diff -u <(echo -n) <(./private/scripts/autogen_licences.sh .)
    20 20   - diff -u <(echo -n) <(golint ./...)
    21 21   - $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN
    22 22  env:
    skipped 4 lines
  • ■ ■ ■ ■ ■ ■
    CHANGELOG.md
    skipped 6 lines
    7 7   
    8 8  ## [Unreleased]
    9 9   
     10 +### Added
     11 + 
     12 +- Added support for `tcell`'s `Dim` text style.
     13 + 
     14 +### Changed
     15 + 
     16 +- Bump github.com/gdamore/tcell from 2.4.0 to 2.5.1.
     17 +- Bump github.com/nsf/termbox-go to v1.1.1.
     18 +- Change the Go version in `go.mod` to 1.17.
     19 +- Executed `go mod tidy`.
     20 + 
     21 +### Fixed
     22 + 
     23 +- Fixed invalid path to the `autogen_licences.sh` script in `.travis.ci`.
     24 + 
    10 25  ## [0.16.1] - 13-Jan-2022
    11 26   
    12 27  ### Changed
    skipped 486 lines
  • ■ ■ ■ ■ ■
    go.mod
    1 1  module github.com/mum4k/termdash
    2 2   
    3  -go 1.14
     3 +go 1.17
    4 4   
    5 5  require (
    6 6   github.com/gdamore/tcell/v2 v2.5.1
    7 7   github.com/kylelemons/godebug v1.1.0
    8 8   github.com/mattn/go-runewidth v0.0.13
    9  - github.com/nsf/termbox-go v0.0.0-20201107200903-9b52a5faed9e
     9 + github.com/nsf/termbox-go v1.1.1
     10 +)
     11 + 
     12 +require (
     13 + github.com/gdamore/encoding v1.0.0 // indirect
     14 + github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
     15 + github.com/rivo/uniseg v0.2.0 // indirect
     16 + golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e // indirect
     17 + golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 // indirect
     18 + golang.org/x/text v0.3.7 // indirect
    10 19  )
    11 20   
  • ■ ■ ■ ■ ■ ■
    go.sum
    skipped 5 lines
    6 6  github.com/kylelemons/godebug v1.1.0/go.mod h1:9/0rRGxNHcop5bhtWyNeEfOS8JIWk580+fNqagV/RAw=
    7 7  github.com/lucasb-eyer/go-colorful v1.2.0 h1:1nnpGOrhyZZuNyfu1QjKiUICQ74+3FNCN69Aj6K7nkY=
    8 8  github.com/lucasb-eyer/go-colorful v1.2.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
     9 +github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
    9 10  github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
    10 11  github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
    11  -github.com/nsf/termbox-go v0.0.0-20201107200903-9b52a5faed9e h1:T8/SzSWIDoWV9trslLNfUdJ5yHrIXXuODEy5M0vou4U=
    12  -github.com/nsf/termbox-go v0.0.0-20201107200903-9b52a5faed9e/go.mod h1:IuKpRQcYE1Tfu+oAQqaLisqDeXgjyyltCfsaoYN18NQ=
     12 +github.com/nsf/termbox-go v1.1.1 h1:nksUPLCb73Q++DwbYUBEglYBRPZyoXJdrj5L+TkjyZY=
     13 +github.com/nsf/termbox-go v1.1.1/go.mod h1:T0cTdVuOwf7pHQNtfhnEbzHbcNyCEcVU4YPpouCbVxo=
    13 14  github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
    14 15  github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
    15 16  golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
    16  -golang.org/x/sys v0.0.0-20220318055525-2edf467146b5 h1:saXMvIOKvRFwbOMicHXr0B1uwoxq9dGmLe5ExMES6c4=
     17 +golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    17 18  golang.org/x/sys v0.0.0-20220318055525-2edf467146b5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    18  -golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf h1:MZ2shdL+ZM/XzY3ZGOnh4Nlpnxz5GSOhOmtHo3iPU6M=
     19 +golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e h1:CsOuNlbOuf0mzxJIefr6Q4uAUetRUwZE4qt7VfzP+xo=
     20 +golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
    19 21  golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
     22 +golang.org/x/term v0.0.0-20220526004731-065cf7ba2467 h1:CBpWXWQpIRjzmkkA+M7q9Fqnwd2mZr3AFqexg8YTfoM=
     23 +golang.org/x/term v0.0.0-20220526004731-065cf7ba2467/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
    20 24  golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
    21 25  golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
    22 26  golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
    skipped 2 lines
  • ■ ■ ■ ■ ■ ■
    private/faketerm/diff_test.go
     1 +// Copyright 2022 Google LLC
     2 +//
     3 +// Licensed under the Apache License, Version 2.0 (the "License");
     4 +// you may not use this file except in compliance with the License.
     5 +// You may obtain a copy of the License at
     6 +//
     7 +// http://www.apache.org/licenses/LICENSE-2.0
     8 +//
     9 +// Unless required by applicable law or agreed to in writing, software
     10 +// distributed under the License is distributed on an "AS IS" BASIS,
     11 +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     12 +// See the License for the specific language governing permissions and
     13 +// limitations under the License.
     14 + 
    1 15  package faketerm
    2 16   
    3 17  import (
    skipped 67 lines
Please wait...
Page is in error, reload to recover