Skip to content

Tags: briandowns/spinner

Tags

v1.23.2

Toggle v1.23.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
remove format method call (#163)

Signed-off-by: Brian Downs <brian.downs@gmail.com>

v1.23.1

Toggle v1.23.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Consolidate the dependencies for the IsTerminal() API (#156)

* Consolidate the dependencies for the IsTerminal() API

The code was already using golang.org/x/term for the IsTerminal() API.
It seems better to stick to packages from the golang.org domain, because
they are likely to be more widely used than github.com/mattn/go-isatty,
and one less dependency is always a good thing.

This can reduce the number of dependencies for consumers of
github.com/briandowns/spinner, who may already have golang.org/x/term in
their dependency chain.

v1.23.0

Toggle v1.23.0's commit message
update deps

Signed-off-by: Brian Downs <brian.downs@gmail.com>

v1.22.0

Toggle v1.22.0's commit message
update go.mod

Signed-off-by: Brian Downs <brian.downs@gmail.com>

v1.21.0

Toggle v1.21.0's commit message
fix vendoring

Signed-off-by: Brian Downs <brian.downs@gmail.com>

v1.20.0

Toggle v1.20.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support for multi-line spinner strings (#146)

v1.19.0

Toggle v1.19.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
add enable/disable toggle (#144)

v1.18.1

Toggle v1.18.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
start spinner only when fd is terminal (#131)

v1.18.0

Toggle v1.18.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
updates (#129)

Signed-off-by: Brian Downs <brian.downs@gmail.com>

v1.17.0

Toggle v1.17.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Move cursor to the beginning of the line before erasing (#126)

The \033[K escape sequence signifies 'clear from cursor position to the
end of the line'. Without moving the cursor to the beggining of the line
first it results in no text being deleted. The behaviour of Carriage
Return (\r) in terminal emulators is not formally standardized but it is
generally interpreted as a move to the beginning of the line.

Fixes #123