File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
68
68
69
69
- Updated the widths of some characters https://github.com/Textualize/rich/pull/3289
70
70
71
+ ### Added
72
+
73
+ - Included a ` name ` attribute to the ` Spinner ` class https://github.com/Textualize/rich/pull/3359
74
+
71
75
## [ 13.7.0] - 2023-11-15
72
76
73
77
### Added
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ The following people have contributed to the development of Rich:
20
20
- [ Aryaz Eghbali] ( https://github.com/AryazE )
21
21
- [ Oleksis Fraga] ( https://github.com/oleksis )
22
22
- [ Andy Gimblett] ( https://github.com/gimbo )
23
+ - [ Kai Giokas] ( https://github.com/kaisforza )
23
24
- [ Tom Gooding] ( https://github.com/TomJGooding )
24
25
- [ Michał Górny] ( https://github.com/mgorny )
25
26
- [ Nok Lam Chan] ( https://github.com/noklam )
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ def __init__(
38
38
self .text : "Union[RenderableType, Text]" = (
39
39
Text .from_markup (text ) if isinstance (text , str ) else text
40
40
)
41
+ self .name = name
41
42
self .frames = cast (List [str ], spinner ["frames" ])[:]
42
43
self .interval = cast (float , spinner ["interval" ])
43
44
self .start_time : Optional [float ] = None
You can’t perform that action at this time.
0 commit comments