mirror of https://github.com/Textualize/rich.git
changelog tweak
This commit is contained in:
parent
84d9a1d879
commit
de1e33e5e2
|
@ -5,14 +5,21 @@ 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).
|
||||
|
||||
## [1.2.3] - Unreleased
|
||||
## [1.2.3] - 2020-05-24
|
||||
|
||||
### Added
|
||||
|
||||
- Added `padding` parameter to Panel
|
||||
- Added 'indeterminate' state when progress bars aren't started
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed Progress deadlock https://github.com/willmcgugan/rich/issues/90
|
||||
|
||||
### Changed
|
||||
|
||||
- Auto-detect "truecolor" color system when in Windows Terminal
|
||||
|
||||
## [1.2.2] - 2020-05-22
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -30,7 +30,7 @@ class Panel:
|
|||
width, otherwise it will be sized to fit the contents. Defaults to True.
|
||||
style (str, optional): The style of the border. Defaults to "none".
|
||||
width (Optional[int], optional): Optional width of panel. Defaults to None to auto-detect.
|
||||
padding (Optional[PaddingDimensions]): Optional padding. Defaults to 0
|
||||
padding (Optional[PaddingDimensions]): Optional padding around renderable. Defaults to 0.
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
|
|
Loading…
Reference in New Issue