File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
77
8+ ## [ 6.7.1] - 2025-12-1
9+
10+ ### Fixed
11+
12+ - Fixed ` Content.fold ` https://github.com/Textualize/textual/pull/6256
13+
814## [ 6.7.0] - 2025-11-29
915
1016### Added
@@ -3208,6 +3214,7 @@ https://textual.textualize.io/blog/2022/11/08/version-040/#version-040
32083214- New handler system for messages that doesn't require inheritance
32093215- Improved traceback handling
32103216
3217+ [ 6.7.1 ] : https://github.com/Textualize/textual/compare/v6.7.0...v6.7.1
32113218[ 6.7.0 ] : https://github.com/Textualize/textual/compare/v6.6.0...v6.7.0
32123219[ 6.6.0 ] : https://github.com/Textualize/textual/compare/v6.5.0...v6.6.0
32133220[ 6.5.0 ] : https://github.com/Textualize/textual/compare/v6.4.0...v6.5.0
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " textual"
3- version = " 6.7.0 "
3+ version = " 6.7.1 "
44homepage = " https://github.com/Textualize/textual"
55repository = " https://github.com/Textualize/textual"
66documentation = " https://textual.textualize.io/"
Original file line number Diff line number Diff line change @@ -967,12 +967,12 @@ def wrap(
967967 return content_lines
968968
969969 def fold (self , width : int ) -> list [Content ]:
970- """Fold this line into a list of lines which have a cell length no greater than `width`.
970+ """Fold this line into a list of lines which have a cell length no less than 2 and no greater than `width`.
971971
972972 Folded lines may be 1 less than the width if it contains double width characters (which may
973973 not be subdivided).
974974
975- Note that this method will not do any word wrappig . For that, see [wrap()][textual.content.Content.wrap].
975+ Note that this method will not do any word wrapping . For that, see [wrap()][textual.content.Content.wrap].
976976
977977 Args:
978978 width: Desired maximum width (in cells)
@@ -1303,7 +1303,6 @@ def render(
13031303 An iterable of string and styles, which make up the content.
13041304
13051305 """
1306-
13071306 if not self ._spans :
13081307 yield (self ._text , base_style )
13091308 if end :
Original file line number Diff line number Diff line change @@ -409,6 +409,7 @@ def from_styles(cls, styles: StylesBase) -> Style:
409409 underline2 = text_style .underline2 ,
410410 reverse = text_style .reverse ,
411411 strike = text_style .strike ,
412+ blink = text_style .blink ,
412413 auto_color = styles .auto_color ,
413414 )
414415
You can’t perform that action at this time.
0 commit comments