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 @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Updated the widths of some characters https://github.com/Textualize/rich/pull/3289
13
13
14
+ ### Added
15
+
16
+ - Included a ` name ` attribute to the ` Spinner ` class https://github.com/Textualize/rich/pull/3359
17
+
14
18
## [ 13.7.0] - 2023-11-15
15
19
16
20
### Added
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ The following people have contributed to the development of Rich:
18
18
- [ Aryaz Eghbali] ( https://github.com/AryazE )
19
19
- [ Oleksis Fraga] ( https://github.com/oleksis )
20
20
- [ Andy Gimblett] ( https://github.com/gimbo )
21
+ - [ Kai Giokas] ( https://github.com/kaisforza )
21
22
- [ Michał Górny] ( https://github.com/mgorny )
22
23
- [ Nok Lam Chan] ( https://github.com/noklam )
23
24
- [ Leron Gray] ( https://github.com/daddycocoaman )
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