Releases: Textualize/rich
Releases · Textualize/rich
Allow builtin print with progress
[2.2.0] - 2020-06-14
Added
- Added redirect_stdout and redirect_stderr to Progress
Changed
- printing to console with an active Progress doesn't break visuals
v2.1.0
[2.1.0] - 2020-06-11
Added
- Added 'transient' option to Progress
### Changed
- Truncated overly long text in Rule with ellipsis overflow
v2.0.1
[2.0.1] - 2020-06-10
Added
- Added expand option to Padding
Changed
- Some minor optimizations in Text
Fixed
- Fixed broken rule with CJK text
v2.0.0
A new major version due to some backwards incompatible changes. A name change of JustifyValues to JustifyMethod, and the introduction of some keyword only arguments. Most code using an earlier version will require no changes.
[2.0.0] - 2020-06-06
Added
- Added overflow methods
- Added no_wrap option to print()
- Added width option to print
- Improved handling of compressed tables
Fixed
- Fixed erroneous space at end of log
- Fixed erroneous space at end of progress bar
Changed
- Renamed _ratio.ratio_divide to _ratio.ratio_distribute
- Renamed JustifyValues to JustifyMethod (backwards incompatible)
- Optimized _trim_spans
- Enforced keyword args in Console / Text interfaces (backwards incompatible)
- Return self from text.append
v1.3.1
[1.3.1] - 2020-06-01
Changed
- Changed defaults of Table.grid
- Polished listdir.py example
Added
- Added width argument to Columns
Fixed
- Fixed for
columns_first
argument in Columns - Fixed incorrect padding in columns with fixed width
v1.3.0
[1.3.0] - 2020-05-31
Added
- Added rich.get_console() function to get global console instance.
- Added Columns class
Changed
- Updated
markdown.Heading.create()
to work with subclassing. - Console now transparently works with Jupyter
Fixed
- Fixed issue with broken table with show_edge=False and a non-None box arg
v1.2.3
v1.2.2
[1.2.2] - 2020-05-22
Fixed
- Issue with right aligned wrapped text adding extra spaces
Fixed issue with `sum` builtin < Python3.8
Note to self: Don't publish until GH actions tests on all Python versions.
[1.2.1] - 2020-05-22
Fixed
- Issue with sum and Style
v1.2.0
[1.2.0] - 2020-05-22
Added
- Support for double underline, framed, encircled, and overlined attributes
Changed
- Optimized Style
- Changed methods
__console__
to__rich_console__
, and__measure__
to__rich_measure__