Revisions of python-rich

Matej Cepl's avatar Matej Cepl (mcepl) accepted request 856924 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 20)
- Update to version 9.5.1
  * Fixed hex number highlighting
- Update to version 9.5.0
  Changed
  * If file is not specified on Console then the Console.file will
    return the current sys.stdout. Prior to 9.5.0 sys.stdout was
    cached on the Console, which could break code that wrapped
    sys.stdout after the Console was constructed.
  * Changed Color.__str__ to not include ansi codes
  * Changed Console.size to get the terminal dimensions via
    sys.stdin. This means that if you set file to be an
    io.StringIO file (for example) then the width will be set to
    the current terminal dimensions and not a default of 80.
  Added
  * Added stderr parameter to Console
  * Added rich.reconfigure
  * Added Color.__rich__
  * Added Console.style parameter
  * Added Table.highlight parameter to enable highlighting ofcells
  * Added Panel.highlight parameter to enable highlighting of panel
    title
  * Added highlight to ConsoleOptions
  Fixed
  * Fixed double output in rich.live #485
  * Fixed Console.out highlighting not reflecting defaults #827
  * FileProxy now raises TypeError for empty non-str arguments #828
- Update to version 9.5.0
  Added
  * Added rich.live #382
  * Added algin parameter to Rule and Console.rule
buildservice-autocommit accepted request 844275 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 19)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 844179 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 18)
- Kill dephell dependency
buildservice-autocommit accepted request 843924 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 17)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 843916 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 16)
- Update to version 9.1.0
  * New option to render 'indent guides' in Syntax and pretty
    printing.
  * Added a max_length argument to pretty printing which will
    truncate containers longer than a certain length.
- Update to version 9.0.0
  * Added a new pager method which will pipe any console output
    in to the system 'pager'.
  * There's also a new Bar renderable you could use to display a
    chart in a table. See bars.py for an example of how to use it.
buildservice-autocommit accepted request 838335 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 15)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 837924 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 14)
- Update to version 7.1.0
  Added
  * Added Console.begin_capture, Console.end_capture and
    Console.capture
  * Added Table.title_justify and Table.caption_justify
  Changed
  * Improved formatting of exceptions
  * Enabled Rich exceptions in logging https://github.com/taliraj
  * UTF-8 encoding is now mentioned in HTML head section
  Removed
  * Removed line_numbers argument from traceback.install, which
    was undocumented and did nothing

- Update to version 7.0.0
  Added
  * New ansi_dark and ansi_light themes
  * Added Text.append_tokens for fast appending of string + Style
    pairs
  * Added Text.remove_suffix
  * Added Text.append_tokens
  Changed
  * Text.tabs_to_spaces was renamed to Text.expand_tabs, which
    works in place rather than returning a new instance
  * Renamed Column.index to Column._index
  * Optimized Style.combine and Style.chain
  * Optimized text rendering by fixing internal cache mechanism
  * Optimized hash generation for Styles

- Update to version 6.1.1
  Added
buildservice-autocommit accepted request 828941 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 13)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 828878 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 12)
- Update to version 5.2.1
  * Fixed underscore with display hook
- Update to version 5.2.0
  * Added crop argument to Console.print
  * Added "ignore" overflow method
  * Added multiple characters per rule
- Update to version 5.1.2
  * Further optimized pretty printing ~5X.
- Update to version 5.1.1
  * Optimized pretty printing ~3X faster
- Update to version 5.1.0
  Added
  * Added Text.cell_len
  * Added helpful message regarding unicode decoding errors
  * Added display hook with pretty.install()
  Fixed
  * Fixed deprecation warnings re backslash
  * Fixed repr highlighting of scientific notation, e.g. 1e100
  Changed
  * Implemented pretty printing, and removed pprintpp from
    dependencies
  * Optimized Text.join
buildservice-autocommit accepted request 824958 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 11)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 824925 from John Vandenberg's avatar John Vandenberg (jayvdb) (revision 10)
- Update to v5.0.0
  * Change to console markup syntax to not parse Python structures
    as markup, i.e. `[1,2,3]` is treated as a literal, not a tag.
  * Standard color numbers syntax has changed to `"color(<number>)"`
    so that `[5]` (for example) is considered a literal.
  * Markup escape method has changed from double brackets to
    preceding with a backslash, so `foo[[]]` would be `foo\[bar]`
- From v4.2.2
  * Added thread to automatically call update() in progress.track().
    Replacing previous adaptive algorithm.
  * Second attempt at working around https://bugs.python.org/issue37871
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 823699 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 9)
- Update to version 4.2.1
  - Added show_time and show_level parameters to RichHandler https://github.com/willmcgugan/rich/pull/182
  - Fixed progress.track iterator exiting early https://github.com/willmcgugan/rich/issues/189
  - Added workaround for Python bug https://bugs.python.org/issue37871, fixing https://github.com/willmcgugan/rich/issues/186
  - Set overflow=fold for log messages https://github.com/willmcgugan/rich/issues/190
  - Fixed missing new lines https://github.com/willmcgugan/rich/issues/178
  - Fixed Progress.track https://github.com/willmcgugan/rich/issues/184
  - Remove control codes from exported text https://github.com/willmcgugan/rich/issues/181
  - Implemented auto-detection and color rendition of 16-color mode
  - Optimized progress.track for very quick iterations
  - Force default size of 80x25 if get_terminal_size reports size of 0,0
  - Added markup switch to RichHandler https://github.com/willmcgugan/rich/issues/171
  - Change signature of Text.stylize to accept style first
  - Remove Text.stylize_all which is no longer necessary
  - Fixed rendering of Confirm prompt https://github.com/willmcgugan/rich/issues/170
buildservice-autocommit accepted request 822299 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 8)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 822298 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 7)
- Update to version 3.4.1
  * Fixed incorrect default of expand in Table.grid
- Update to version 3.4.0
  Added
  * Added stream parameter to Console.input
  * Added password parameter to Console.input
  * Added description parameter to Progress.update
  * Added rich.prompt
  * Added detecting 'dumb' terminals
  * Added Text.styled alternative constructor
  Fixes
  * Fixed progress bars so that they are readable when color is
    disabled
- Update to version 3.3.2
  Changed
  * Optimized Text.pad
  Added
  * Added rich.scope
  * Change log_locals to use scope.render_scope
  * Added title parameter to Columns
buildservice-autocommit accepted request 820783 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 6)
baserev update by copy to link target
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 820749 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 5)
- Update to version 3.3.1
  Added
  * box.ASCII_DOUBLE_HEAD
  Changed
  * Removed replace of -- --- ... from Markdown, as it made it
    impossible to include CLI info
- Update to version 3.3.0
  Added
  * Added title and title_align options to Panel
  * Added pad and width parameters to Align
  * Added end parameter to Rule
  * Added Text.pad and Text.align methods
  * Added leading parameter to Table
- Update to version 3.2.0
  Added
  * Added Align.left Align.center Align.right shortcuts
  * Added Panel.fit shortcut
  * Added align parameter to Columns
  Fixed
  * Align class now pads to the right, like Text
  * ipywidgets added as an optional dependency
  * Issue with Panel and background color
  * Fixed missing __bool__ on Segment
  Changed
  * Added border_style argument to Panel (note, style now applies
    to interior of the panel)
- Update to version 3.1.0
  Changed
  * Progress bars now work in Jupyter
  Added
buildservice-autocommit accepted request 818402 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 4)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 818398 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 3)
- Update to version 3.0.2
  Added
  * Added rich.styled.Styled class to apply styles to renderable
  * Table.add_row now has an optional style parameter
  * Added table_movie.py to examples
  Changed
  * Modified box options to use half line characters at edges
  * Non no_wrap columns will now shrink below minimum width if
    table is compressed
Dominique Leuenberger's avatar Dominique Leuenberger (dimstar_suse) accepted request 818068 from Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) (revision 2)
initialized devel package after accepting 818068
Tomáš Chvátal's avatar Tomáš Chvátal (scarabeus_iv) accepted request 818066 from Martin Hauke's avatar Martin Hauke (mnhauke) (revision 1)
Initial package for python-rich
Displaying revisions 41 - 60 of 60
openSUSE Build Service is sponsored by