mirror of
https://github.com/Textualize/rich.git
synced 2026-02-06 10:58:48 +00:00
Compare commits
8 Commits
d7f45748b9
...
96dcec6ec3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96dcec6ec3 | ||
|
|
0752ff0472 | ||
|
|
54ae0cfbb8 | ||
|
|
07edb85f7e | ||
|
|
31930ddc84 | ||
|
|
454fcfc92c | ||
|
|
13f87a4007 | ||
|
|
31ce129a91 |
@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [14.3.2] - 2026-02-01
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed solo ZWJ crash https://github.com/Textualize/rich/pull/3953
|
||||
- Fixed control codes reporting width of 1 https://github.com/Textualize/rich/pull/3953
|
||||
|
||||
## [14.3.1] - 2026-01-24
|
||||
|
||||
### Fixed
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
name = "rich"
|
||||
homepage = "https://github.com/Textualize/rich"
|
||||
documentation = "https://rich.readthedocs.io/en/latest/"
|
||||
version = "14.3.1"
|
||||
version = "14.3.2"
|
||||
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
|
||||
authors = ["Will McGugan <willmcgugan@gmail.com>"]
|
||||
license = "MIT"
|
||||
|
||||
@ -55,23 +55,26 @@ def get_character_cell_size(character: str, unicode_version: str = "auto") -> in
|
||||
int: Number of cells (0, 1 or 2) occupied by that character.
|
||||
"""
|
||||
codepoint = ord(character)
|
||||
if codepoint and codepoint < 32 or 0x07F <= codepoint < 0x0A0:
|
||||
return 0
|
||||
table = load_cell_table(unicode_version).widths
|
||||
if codepoint > table[-1][1]:
|
||||
|
||||
last_entry = table[-1]
|
||||
if codepoint > last_entry[1]:
|
||||
return 1
|
||||
|
||||
lower_bound = 0
|
||||
upper_bound = len(table) - 1
|
||||
index = (lower_bound + upper_bound) // 2
|
||||
while True:
|
||||
|
||||
while lower_bound <= upper_bound:
|
||||
index = (lower_bound + upper_bound) >> 1
|
||||
start, end, width = table[index]
|
||||
if codepoint < start:
|
||||
upper_bound = index - 1
|
||||
elif codepoint > end:
|
||||
lower_bound = index + 1
|
||||
else:
|
||||
return 0 if width == -1 else width
|
||||
if upper_bound < lower_bound:
|
||||
break
|
||||
index = (lower_bound + upper_bound) // 2
|
||||
return width
|
||||
return 1
|
||||
|
||||
|
||||
@ -135,12 +138,14 @@ def _cell_len(text: str, unicode_version: str) -> int:
|
||||
|
||||
SPECIAL = {"\u200d", "\ufe0f"}
|
||||
|
||||
iter_characters = iter(text)
|
||||
index = 0
|
||||
character_count = len(text)
|
||||
|
||||
for character in iter_characters:
|
||||
while index < character_count:
|
||||
character = text[index]
|
||||
if character in SPECIAL:
|
||||
if character == "\u200d":
|
||||
next(iter_characters)
|
||||
index += 1
|
||||
elif last_measured_character:
|
||||
total_width += last_measured_character in cell_table.narrow_to_wide
|
||||
last_measured_character = None
|
||||
@ -148,6 +153,7 @@ def _cell_len(text: str, unicode_version: str) -> int:
|
||||
if character_width := get_character_cell_size(character, unicode_version):
|
||||
last_measured_character = character
|
||||
total_width += character_width
|
||||
index += 1
|
||||
|
||||
return total_width
|
||||
|
||||
|
||||
@ -34,6 +34,7 @@ from typing import (
|
||||
cast,
|
||||
runtime_checkable,
|
||||
)
|
||||
from os import PathLike
|
||||
|
||||
from rich._null_file import NULL_FILE
|
||||
|
||||
@ -2206,11 +2207,11 @@ class Console:
|
||||
del self._record_buffer[:]
|
||||
return text
|
||||
|
||||
def save_text(self, path: str, *, clear: bool = True, styles: bool = False) -> None:
|
||||
def save_text(self, path: Union[str, PathLike[str]], *, clear: bool = True, styles: bool = False) -> None:
|
||||
"""Generate text from console and save to a given location (requires record=True argument in constructor).
|
||||
|
||||
Args:
|
||||
path (str): Path to write text files.
|
||||
path (Union[str, PathLike[str]]): Path to write text files.
|
||||
clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
|
||||
styles (bool, optional): If ``True``, ansi style codes will be included. ``False`` for plain text.
|
||||
Defaults to ``False``.
|
||||
@ -2297,7 +2298,7 @@ class Console:
|
||||
|
||||
def save_html(
|
||||
self,
|
||||
path: str,
|
||||
path: Union[str, PathLike[str]],
|
||||
*,
|
||||
theme: Optional[TerminalTheme] = None,
|
||||
clear: bool = True,
|
||||
@ -2307,7 +2308,7 @@ class Console:
|
||||
"""Generate HTML from console contents and write to a file (requires record=True argument in constructor).
|
||||
|
||||
Args:
|
||||
path (str): Path to write html file.
|
||||
path (Union[str, PathLike[str]]): Path to write html file.
|
||||
theme (TerminalTheme, optional): TerminalTheme object containing console colors.
|
||||
clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``.
|
||||
code_format (str, optional): Format string to render HTML. In addition to '{foreground}',
|
||||
@ -2579,7 +2580,7 @@ class Console:
|
||||
|
||||
def save_svg(
|
||||
self,
|
||||
path: str,
|
||||
path: Union[str, PathLike[str]],
|
||||
*,
|
||||
title: str = "Rich",
|
||||
theme: Optional[TerminalTheme] = None,
|
||||
@ -2591,7 +2592,7 @@ class Console:
|
||||
"""Generate an SVG file from the console contents (requires record=True in Console constructor).
|
||||
|
||||
Args:
|
||||
path (str): The path to write the SVG to.
|
||||
path (Union[str, PathLike[str]]): The path to write the SVG to.
|
||||
title (str, optional): The title of the tab in the output image
|
||||
theme (TerminalTheme, optional): The ``TerminalTheme`` object to use to style the terminal
|
||||
clear (bool, optional): Clear record buffer after exporting. Defaults to ``True``
|
||||
|
||||
@ -187,3 +187,20 @@ def test_nerd_font():
|
||||
"""Regression test for https://github.com/Textualize/rich/issues/3943"""
|
||||
# Not allocated by unicode, but used by nerd fonts
|
||||
assert cell_len("\U000f024d") == 1
|
||||
|
||||
|
||||
def test_zwj():
|
||||
"""Test special case of zero width joiners"""
|
||||
assert cell_len("") == 0
|
||||
assert cell_len("\u200d") == 0
|
||||
assert cell_len("1\u200d") == 1
|
||||
# This sequence should really produce 2, but it aligns with with wcwidth
|
||||
# What gets written to the terminal is anybody's guess, I've seen multiple variations
|
||||
assert cell_len("1\u200d2") == 1
|
||||
|
||||
|
||||
def test_non_printable():
|
||||
"""Non printable characters should report a width of 0."""
|
||||
for ordinal in range(31):
|
||||
character = chr(ordinal)
|
||||
assert cell_len(character) == 0
|
||||
|
||||
Loading…
Reference in New Issue
Block a user