Changelog for
python311-urwid-2.5.3-2.1.i586.rpm :
* Tue Feb 27 2024 Markéta Machová
- Add missing runtime requirement typing_extensions
* Mon Feb 12 2024 Matej Cepl - Update to 2.5.3: - Fix render regression: khal Padding widh > size - Update unicode table to the version 15.1.0- Update to 2.5.2: - Fix Windows last line: use ICH
* INSERT COLS - Typing: annotate text_layout and extend Text/Edit - Fix incorrect TextCanvas typing - RAW UTF-8 terminal: SI/SO/IBMPC_ON/IBMPC_OFF skip - Unicode: use \"target encoding\" while transcoding for output
* Fri Feb 02 2024 Steve Kowalik - Update to 2.5.1:
* Extend Command enum and update Columns & Pile
* Fix double Widget inheritance in the LineBox
* Columns PACK item not fit as FIXED and support FLOW
* allow not subclassed incomplete widgets in Columns/Pile
* Columns rendered with a non-first Selectable widget should not skip other items
* Fix regression: Columns render incorrect BOX/FLOW widgets height
* Overlay typing and proper repr
* support proper repr and str for Canvas
* Support FIXED and FLOW operations for Overlay depends on options
* Columns accept focus widget as \"focus_column\"
* Filler can act as FLOW widget
* allow explicit focus in GridFlow constructor
* Columns support correct BOX render only if ALL BOX
* support FIXED-only widgets and FIXED rendering for Columns
* Support FIXED-only widgets and FIXED rendering for PILE
* support FIXED render type for GridFLow
* Add run_in_executor helper to the event loop
* Feature: Implement keypress and mouse_event default handlers
* use Hashable for signal identifier types
* Introduce optional dependencies for package
* Feature: Support pack() for CheckBox/RadioButton/Button
* Fix font in case Font.data is str
* Fix: deep TextEnum was improperly resolved
* Fix #583: python 3.12 compatibility
* Python 37+ migration, Python < 3.7 support dropped
* make tests compatible with Python 3.11
* Add two fonts based on Unicode 13 2x3 TRS-80/Teletext mosaic characters
* Fix assertion failure when string contains SO but not SI
* Use trio.lowlevel instead of trio.hazmat with Trio >= 0.15
* Provide 80x24 fallback for ansi and vt100- Switch to pyproject macros.- Drop patch python-311.patch, included upstream.- Clean up Python 2 leftovers.
* Fri Apr 21 2023 Dirk Müller - add sle15_python_module_pythons (jsc#PED-68)
* Mon Feb 20 2023 Daniel Garcia - Add python-311.patch to fix tests for python 3.11 gh#urwid/urwid#517
* Mon Nov 08 2021 Dirk Müller - add dependency for python 2 builds
* Tue Oct 12 2021 pgajdosAATTsuse.com- %check: use %pyunittest rpm macro
* Sat Dec 19 2020 Dirk Müller - update to 2.1.2:
* Add pack method to LineBox. Fixes: #346 (by Miguel de Dios)
* Add a test to check the linebox.pack is good. (by Miguel de Dios)
* Add bin/release.sh script to partially automate releases. (by Tony Cebzanov)
* Add workaround for #386 (by Tony Cebzanov)
* Fix curses_display python3 ord() (by Ya-Liang Chang (Allen))
* Fix bumping to dev version in release.sh script (by Tony Cebzanov)
* Fix focus_end on a collapsed tree (by Anonymous Maarten)
* Fix crash with \"ellipsis\" clipping for py2 tour.py works with py2 now Typo in tour.py (by akorb)
* Ignore resetting to invalid locale (Closes: #377) (by Jochen Sprickerhof)
* Use ord2 for python2/3 compatibility (by Ya-Liang Chang (Allen))
* Wed Sep 16 2020 Dirk Mueller - udpate to 2.1.1:
* Add TrioEventLoop.run_async(), removed nursery constructor arg (#392) (by Tamás Nepusz)
* Add wrap_around kwarg to SimpleListWalkers (by Krzysztof Królczyk)
* Change documentation on Terminal (by James Johnson)
* Remove debug documentation change test (by James Johnson)
* Remove support for py34 (by Andrey Semakin)
* Remove invalid escape sequence (by Andrey Lebedev)
* Fix GridFlow keypress handling when v_sep is 0 (by Aurelien Grenotton)
* Fix Terminal in ListBox (#382) (by James Johnson)
* Fix Crash on `fg`, SIGCONT (after Ctrl-Z, SIGSTOP, SIGTSTP) (by goncalopp)
* Fix 256-color mode on some terminals. Addresses #404. (by Tony Cebzanov)
* vterm: reduce __init__ boilerplate (by max ulidtko)
* vterm: errno 5 is not EOF. (by max ulidtko)
* Terminal: use UTF-8 by default. (by max ulidtko)
* Instance of Terminal has no __super attr -- thanks pylint! (by max ulidtko)
* Do not call wait_readable with a closed fd in TrioEventLoop (by Michael Hudson-Doyle)
* Make options a static method where applicable (by Philip Matura)
* Fri Feb 07 2020 Marketa Calabkova - update to 2.1.0
* Add support for Python 3.7 and 3.8, drop support for Python 3.3
* Add 24-bit (true color) support.
* Fix crash on click-Esc & Esc-click
* Break rather than raising exception on shard calculation bug.
* Fix EOF detection for the Terminal widget on Python 3
* Many more features and fixes