failed WRONG_FIX UNSUBMITTED wrong_fix_unsubmitted(None) · None tool calls · 0 s · Textualize/rich
(not found in data/tasks.jsonl)
| # | Tool | Arguments | Result |
|---|---|---|---|
| No trace captured. | |||
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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).
+## [12.4.3] - 2022-05-23
+
+### Changed
+
+- Further tweaks to SVG character matrix
+- Added clip rect to SVG to prevent box characters overlapping bottom of terminal
+
## [12.4.2] - 2022-05-23
### Fixed
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -2,7 +2,7 @@
name = "rich"
homepage = "https://github.com/willmcgugan/rich"
documentation = "https://rich.readthedocs.io/en/latest/"
-version = "12.4.2"
+version = "12.4.3"
description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal"
authors = ["Will McGugan <willmcgugan@gmail.com>"]
license = "MIT"
--- a/rich/_export_format.py
+++ b/rich/_export_format.py
@@ -56,8 +56,15 @@ CONSOLE_SVG_FORMAT = """\
{styles}
</style>
+
+ <defs>
+ <clipPath id="{unique_id}-clip-terminal">
+ <rect x="0" y="0" width="{terminal_width}" height="{terminal_height}" />
+ </clipPath>
+ </defs>
+
{chrome}
- <g transform="translate({terminal_x}, {terminal_y})">
+ <g transform="translate({terminal_x}, {terminal_y})" clip-path="url(#{unique_id}-clip-terminal)">
{backgrounds}
<g class="{unique_id}-matrix">
{matrix}
--- a/rich/console.py
+++ b/rich/console.py
@@ -2292,7 +2292,7 @@ class Console:
padding_top = 40
padding_right = 8
- padding_bottom = 12
+ padding_bottom = 8
padding_left = 8
padding_width = padding_left + padding_right
@@ -2380,9 +2380,9 @@ class Console:
"rect",
fill=background,
x=x * char_width,
- y=y * line_height,
- width=char_width * text_length + 1,
- height=line_height + 1,
+ y=y * line_height + 1.5,
+ width=char_width * text_length,
+ height=line_height + 0.25,
)
)
@@ -2416,7 +2416,7 @@ class Console:
y=margin_top,
width=terminal_width,
height=terminal_height,
- rx=12,
+ rx=8,
)
title_color = _theme.foreground_color.hex
@@ -2431,7 +2431,7 @@ class Console:
y=margin_top + char_height + 6,
)
chrome += f"""
- <g transform="translate(30,24)">
+ <g transform="translate(26,22)">
<circle cx="0" cy="0" r="7" fill="#ff5f57"/>
<circle cx="22" cy="0" r="7" fill="#febc2e"/>
<circle cx="44" cy="0" r="7" fill="#28c840"/>
@@ -2443,6 +2443,8 @@ class Console:
char_width=char_width,
char_height=char_height,
line_height=line_height,
+ terminal_width=char_width * width,
+ terminal_height=(y + 1) * line_height,
width=terminal_width + margin_width,
height=terminal_height + margin_height,
terminal_x=margin_left + padding_left,
...................F
=================================== FAILURES ===================================
_______________________________ test_print_json ________________________________
def test_print_json():
console = Console(file=io.StringIO(), color_system="truecolor")
console.print_json('[false, true, null, "foo"]', indent=4)
result = console.file.getvalue()
print(repr(result))
expected = '\x1b[1m[\x1b[0m\n \x1b[3;91mfalse\x1b[0m,\n \x1b[3;92mtrue\x1b[0m,\n \x1b[3;35mnull\x1b[0m,\n \x1b[32m"foo"\x1b[0m\n\x1b[1m]\x1b[0m\n'
> assert result == expected
E AssertionError: assert '\x1b[1m[\x1b...[1m]\x1b[0m\n' == '\x1b[1m[\x1b...[1m]\x1b[0m\n'
E
E [1m[[0m
E - [3;91mfalse[0m,
E ? ---
E + [3mfalse[0m,
E - [3;92mtrue[0m,
E ? ---...
E
E ...Full output truncated (7 lines hidden), use '-vv' to show
tests/test_console.py:205: AssertionError
----------------------------- Captured stdout call -----------------------------
'\x1b[1m[\x1b[0m\n \x1b[3mfalse\x1b[0m,\n \x1b[3mtrue\x1b[0m,\n \x1b[3mnull\x1b[0m,\n "foo"\n\x1b[1m]\x1b[0m\n'
!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!
1 failed, 19 passed in 0.19s