Skip to content

Releases: briandowns/spinner

v1.23.2

20 Jan 04:30
5543086

Choose a tag to compare

remove format method call (#163)

Signed-off-by: Brian Downs <[email protected]>

v1.23.1

13 Jun 15:09
8f269dd

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.23.0...v1.23.1

v1.23.0

06 Mar 15:56

Choose a tag to compare

update deps

Signed-off-by: Brian Downs <[email protected]>

v1.22.0

27 Feb 03:28

Choose a tag to compare

update go.mod

Signed-off-by: Brian Downs <[email protected]>

v1.21.0

02 Feb 01:10

Choose a tag to compare

fix vendoring

Signed-off-by: Brian Downs <[email protected]>

v1.20.0

22 Dec 16:31
4a2bf41

Choose a tag to compare

Support for multi-line spinner strings (#146)

v1.19.0

31 Jul 03:38
329c376

Choose a tag to compare

add enable/disable toggle (#144)

v1.18.1

07 Feb 17:03
16b2c08

Choose a tag to compare

start spinner only when fd is terminal (#131)

v1.18.0

19 Dec 05:07
1935ea5

Choose a tag to compare

updates (#129)

Signed-off-by: Brian Downs <[email protected]>

v1.17.0

17 Dec 03:44
12b31a6

Choose a tag to compare

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 https://github.com/briandowns/spinner/issues/123