Changelog¶
2.6.14¶
Released on 2024-06-12 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- GridFlow fixes for empty container by @penguinolog in #901
- Fix ScrollBar mouse_event handling with ListBox by @skimmmer in #905
Other Changes
- Test requirements: exceptiongroups -> exceptiongroup by @penguinolog in #897
New Contributors
Full Changelog: 2.6.13...2.6.14
2.6.13¶
Released on 2024-06-07 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Adopt
ExceptionGroup
handling without an external library in python 3.11+ by @penguinolog in #894 - Fix browse example by @penguinolog in #895
Other Changes
- Maintenance: update ruff and fix warnings by @penguinolog in #891
Full Changelog: 2.6.12...2.6.13
2.6.12¶
Released on 2024-05-14 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Prevent a possible infinite loop in WidgetDecoration.base_widget by @rsekman in #880
- ScrollBar will check wrapped widgets for SupportsScroll (Fixes #878) by @rsekman in #879
New Contributors
Full Changelog: 2.6.11...2.6.12
2.6.11¶
Released on 2024-04-22 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix
Widget.rows
annotation by @penguinolog in #874
Documentation 🕮
- Do not use deprecated positioning in the code and examples by @penguinolog in #869
- Docs: partial update of screenshots by @penguinolog in #873
Full Changelog: 2.6.10...2.6.11
2.6.10¶
Released on 2024-03-25 - GitHub - PyPI
What's Changed
New features 🗹
ScrollBar
: fully support__length_hint__
if notSized
by @penguinolog in #863
Other Changes
- Support PEP424 API as marker for limited size of ListBox body by @penguinolog in #861
Full Changelog: 2.6.9...2.6.10
2.6.9¶
Released on 2024-03-13 - GitHub - PyPI
What's Changed
New features 🗹
- Support relative scroll for
ListBox
by @penguinolog in #858
Absolute scrolling calculation is resource-hungry and can cause serious issues on the long lists.
This change also rework calculation allowing to useScrollBar
withTreeList
(users should prevent infinite load cycle on lazy-load self).
Bug fixes 🕷
- Support
<shift>
key reading for sgrmouse by @penguinolog in #859
Historically key reading was not implemented due to<shift><click>
for buttons 1-3 is handled by the most GUI terminal emulators itself. - Fix regression in
TreeWidget
: original widget can be overridden by @penguinolog in #860
Full Changelog: 2.6.8...2.6.9
2.6.8¶
Released on 2024-03-04 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix regression: Overlay not accepted relative positioning by @penguinolog in #854
Full Changelog: 2.6.7...2.6.8
2.6.7¶
Released on 2024-02-28 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix
MainLoop.watch_pipe
regression for the callback outcome notFalse
by @penguinolog in #848
Refactoring 🛠
- Refactor: fix static check warning for not using
min
inGridFlow.generate_display_widget
by @penguinolog in #849
Full Changelog: 2.6.6...2.6.7
2.6.6¶
Released on 2024-02-27 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix Columns sizing and pack behavior by @penguinolog in #846
Other Changes
- Extend
__repr__
andrich
repr for the sized containers by @penguinolog in #844
Full Changelog: 2.6.5...2.6.6
2.6.5¶
Released on 2024-02-26 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Allow
wcwidth
to select unicode version by @penguinolog in #840 TreeWidget
: do not use deprecated API inupdate_expanded_icon
by @penguinolog in #832
Refactoring 🛠
- Refactoring: move
monitored_list
module to thewidgets
package by @penguinolog in #833 - Refactoring: move
listbox
&treetools
modules to thewidgets
by @penguinolog in #834 - Use dataclass for symbols constants by @penguinolog in #842
- Special case: in case of
Columns
/Pile
empty - use fallback sizing by @penguinolog in #843
Other Changes
- Tests: Extend Tree tests: basic keys + nested behavior by @penguinolog in #831
Full Changelog: 2.6.4...2.6.5
2.6.4¶
Released on 2024-02-21 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix regression from 2.6.1:
ListBox
used for tree implementation. by @penguinolog in #829
Full Changelog: 2.6.3...2.6.4
2.6.3¶
Released on 2024-02-21 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix regression from 2.6.2: weight can be
float
by @penguinolog in #827
Full Changelog: 2.6.2...2.6.3
2.6.2¶
Released on 2024-02-20 - GitHub - PyPI
What's Changed
New features 🗹
- Feature: support
Widget
instance asFrame
focus part in constructor by @penguinolog in #820 - Feature:
EventLoop.run_in_executor
should accept**kwargs
by @penguinolog in #822 - Feature: extend validation for
Columns
andPile
by @penguinolog in #825
Bug fixes 🕷
- Fix: nonstandard display typing issues by @penguinolog in #818
- Fix: Text pack for
layout
withoutpack
by @penguinolog in #819 - Fix:
ListBox
render crash if empty elements in tail by @penguinolog in #824
Full Changelog: 2.6.1...2.6.2
2.6.1¶
Released on 2024-02-16 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix a scenario with ellipsis wrap not fit in screen columns by @penguinolog in #813
Full Changelog: 2.6.0...2.6.1
2.6.0.post0¶
Released on 2024-02-16 - GitHub - PyPI
Fix CI to upload wheel package.
Full Changelog: 2.6.0...2.6.0.post0
2.6.0¶
Released on 2024-02-16 - GitHub - PyPI
What's Changed
Compiled C extension is not used anymore.
It became a blocker for the future correct Unicode support and caused pain for some of end users building package separately.
Bug fixes 🕷
- Fix regression in the
LineBox._w
: should be a property by @penguinolog in #804 - Fix ellipsis encoding in the text layout by @penguinolog in #809
- Fix ListBox
MAX_LEFT
/MAX_RIGHT
report forkeypress
as unhandled by @penguinolog in #810
Other Changes
- remove .DS_Store by @penguinolog in #808
Full Changelog: 2.5.3...2.6.0
2.5.3¶
Released on 2024-02-12 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix render regression: khal Padding width > size by @penguinolog in #798
Other Changes
- Update unicode table to the version 15.1.0 by @penguinolog in #744
Full Changelog: 2.5.2...2.5.3
2.5.2¶
Released on 2024-02-09 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix Windows last line: use ICH * INSERT COLS by @penguinolog in #792
Refactoring 🛠
- Typing: annotate text_layout and extend
Text
/Edit
by @penguinolog in #793 - Fix incorrect
TextCanvas
typing by @penguinolog in #794
Other Changes
- RAW UTF-8 terminal: SI/SO/IBMPC_ON/IBMPC_OFF skip by @penguinolog in #787
- Unicode: use "target encoding" while transcoding for output by @penguinolog in #782
Full Changelog: 2.5.1...2.5.2
2.5.1¶
Released on 2024-02-01 - GitHub - PyPI
What's Changed
New features 🗹
- Columns special case: FIXED pack with not enough info by @penguinolog in #779
Bug fixes 🕷
- Windows and WSL: SI/SO/IBMPC_ON/IBMPC_OFF skip by @penguinolog in #785
Documentation 🕮
- Documentation: add Gitter badge to the README.rst by @penguinolog in #776
Refactoring 🛠
- Extend Command enum and update
Columns
&Pile
by @penguinolog in #778 - Fix double
Widget
inheritance in theLineBox
by @penguinolog in #780 - Optimization: RAW display block read by @penguinolog in #783
- Typing: correct annotations for
Canvas.content
by @penguinolog in #784
Other Changes
- Typing: Make
WidgetWrap
andWidgetDecoration
Generic
by @penguinolog in #777
Full Changelog: 2.5.0...2.5.1
2.5.0¶
Released on 2024-01-29 - GitHub - PyPI
What's Changed
New features 🗹
- Long awaited
Scrollable
andScrollBar
made by @rndusr with fixes from @markqvist was added to the urwid. - Add support
ScrollBar
to theListBox
widget.
While scrolling is done by theListBox
itself (as before), theScrollBar
can display progress. - Added common decoration symbols to the widget constants (
BOX_SYMBOLS
,BAR_SYMBOLS
,SHADE_SYMBOLS
)
and exposed in several widgets viaSymbols
enum on the class level:Divider
,LineBox
andScrollBar
.
Documentation 🕮
- Update examples: reduce amount of deprecated parameters by @penguinolog in #769
Full Changelog: 2.4.6...2.5.0
2.4.6¶
Released on 2024-01-22 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Special case: Columns PACK item not fit as FIXED and support FLOW by @penguinolog in #763
Full Changelog: 2.4.5...2.4.6
2.4.5¶
Released on 2024-01-22 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Special case: allow not subclassed incomplete widgets in
Columns
/Pile
by @penguinolog in #757 - Fix: columns rendered with a non-first Selectable widget should not skip other items by @penguinolog in #761
Documentation 🕮
- Documentation: get rid of deprecated code, typing by @penguinolog in #755
Refactoring 🛠
- Deduplicate code in
frame
module by @penguinolog in #759 - Extend typing annotations by @penguinolog in #760
Full Changelog: 2.4.4...2.4.5
2.4.4¶
Released on 2024-01-18 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix regression: Columns render incorrect BOX/FLOW widgets height by @penguinolog in #754
Full Changelog: 2.4.3...2.4.4
2.4.3¶
Released on 2024-01-17 - GitHub - PyPI
What's Changed
New features 🗹
- Feature:
Overlay
typing and proper repr by @penguinolog in #741 - Feature: support proper
repr
andstr
forCanvas
by @penguinolog in #740 - Feature: Support FIXED and FLOW operations for
Overlay
depends on options by @penguinolog in #743 - Feature:
Columns
accept focus widget as "focus_column" by @penguinolog in #747 - Feature:
Filler
can act as FLOW widget by @penguinolog in #749 - Feature: allow explicit focus in
GridFlow
constructor by @penguinolog in #752
Bug fixes 🕷
Columns
support correct BOX render only if ALL BOX by @penguinolog in #746LineBox
: make side only if side elements present, fix pack by @penguinolog in #748- Update source package manifest to include
_web.js
and_web.css
by @Hook25 in #750 - Fix
ListBox.contents
: it should return final entity by @penguinolog in #751
Documentation 🕮
New Contributors
Full Changelog: 2.4.2...2.4.3
2.4.2¶
Released on 2024-01-11 - GitHub - PyPI
What's Changed
New features 🗹
- Feature: support FIXED-only widgets and FIXED rendering for Columns by @penguinolog in #731
- Feature: Support FIXED-only widgets and FIXED rendering for PILE by @penguinolog in #733
- FIX Padding: support FIXED render mode by @penguinolog in #734, #735, #737
- Feature: support FIXED render type for GridFLow by @penguinolog in #738
Now it possible to quick check incomplete widgets prototypes without size counting like:
>>> import urwid
>>> grid = urwid.GridFlow(
...: (urwid.Button(tag, align=urwid.CENTER) for tag in ("OK", "Cancel", "Help")),
...: cell_width=10,
...: h_sep=1,
...: v_sep=1,
...: align=urwid.CENTER,
...: )
>>> body = urwid.Pile(
...: (
...: (urwid.Text("Window content text here and it should not touch line", align=urwid.CENTER)),
...: (urwid.PACK, grid),
...: )
...: )
>>> widget = urwid.LineBox(
...: urwid.Pile(
...: (
...: urwid.Text("Some window", align=urwid.CENTER),
...: urwid.Divider("─"),
...: urwid.Padding(body, width=urwid.PACK, left=1, right=1),
...: )
...: )
...: )
>>> print(b"\n".join(widget.render(()).text).decode("utf-8"))
┌───────────────────────────────────────────────────────┐
│ Some window │
│───────────────────────────────────────────────────────│
│ Window content text here and it should not touch line │
│ < OK > < Cancel > < Help > │
└───────────────────────────────────────────────────────┘
>>> widget.pack(())
(57, 6)
Bug fixes 🕷
- BUG: Columns with GIVEN width == 0 should not count in rows by @penguinolog in #736
Refactoring 🛠
- Remove unused deprecated "test_suite" directive from setup.py by @penguinolog in #729
Full Changelog: 2.4.1...2.4.2
2.4.1¶
Released on 2024-01-03 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix Regressions in 2.4.0 by @penguinolog in #727
Full Changelog: 2.4.0...2.4.1
2.4.0¶
Released on 2024-01-03 - GitHub - PyPI
What's Changed
New features 🗹
- Basic Windows OS support in RAW and Curses display.
-
- Fully functional RAW display support. Thanks to @mhils (initial RAW display)
-
- Limited Curses support due to windows-curses limitation (mouse support limited). Thanks to @asmith-kepler (windows-curses monkeypatch)
-
- UTF-8 only
-
- Force
SelectorEventLoop
for asyncio under Windows if event loop is not set by @penguinolog in #715
- Force
- Feature: switch from
select.select
toselectors
by @penguinolog in #691 - Feature: support FIXED render mode for Text by @penguinolog in #610
- Feature: extend functional keys handling with key modifiers by @penguinolog in #705
- Add
run_in_executor
helper to the event loop by @penguinolog in #712 - Feature: Add internal logging for behavioral debug by @penguinolog in #708
-
- Feature: Use module path + class name for loggers and init once by @penguinolog in #720
- Feature: Implement
keypress
andmouse_event
default handlers by @penguinolog in #721 -
- Not subclassing
Widget
base class during custom widget implementation will produceDeprecationWarning
- Not subclassing
Deprecations ⚡
- Refactor: join display modules in package by @penguinolog in #655
-
- Backward-compatible. Main display modules import will not produce
DeprecationWarning
.
- Backward-compatible. Main display modules import will not produce
Documentation 🕮
- Fix #186 -
disconnect_by_key
should be exposed and use correct name by @penguinolog in #688 - Extend input_test example for better debug capabilities by @penguinolog in #713
-
- Support alternative event loops and debug logging.
Refactoring 🛠
- Refactoring: remove dead code from Raw display by @penguinolog in #707
Full Changelog: 2.3.4...2.4.0
2.3.4¶
Released on 2023-12-05 - GitHub - PyPI
What's Changed
New features 🗹
- Replace deprecated use of MultiError with exceptiongroup by @DRMacIver in #679
- Declare extension use Py_LIMITED_API explicit also in setup.py by @penguinolog in #686
Bug fixes 🕷
- use Hashable for signal identifier types by @ju1ius in #669
- Fix #674 : old versions of setuptools_scm support by @penguinolog in #675
- Fix WSL support: filter-out SI/SO in case of WSL by @penguinolog in #656
Documentation 🕮
Refactoring 🛠
- Maintenance: apply
refurb
fixes and tighten ruff by @penguinolog in #671 - Fix exception re-raise in trio event loop by @penguinolog in #683
Other Changes
- Maintenance: Tests: Use explicit encoding for tests by @penguinolog in #685
New Contributors
- @ju1ius made their first contribution in #669
- @vindolin made their first contribution in #676
- @DRMacIver made their first contribution in #679
Full Changelog: 2.2.3...2.3.4
2.2.3¶
Released on 2023-10-19 - GitHub - PyPI
What's Changed
New features 🗹
- Expose
widget
andevent_loop
packages by @penguinolog in #646 - Introduce optional dependencies for package by @penguinolog in #650
Deprecations ⚡
- Refactoring numedit: PEP8 arguments, allow negative, type casts by @penguinolog in #636
USE PEP8 compliant arguments and deprecate old one
Allow cast IntEdit to int and FloatEdit to float
Allow negative values without changing default behavior
Bug fixes 🕷
- Fix import from deprecated internal module by @penguinolog in #645
- Fix deprecated
_set_focus
method usage by @penguinolog in #662
Documentation 🕮
- Documentation: Sphinx can build gh-pages ready by @penguinolog in #643
- Documentation: generate changelog from GH releases by @penguinolog in #648
- Documentation: Use static default text in BigText demo by @penguinolog in #651
- Documentation Remove unneeded closing tags in TOC by @penguinolog in #652
- Fix tutorial: rename
attr
tourwid_attr
by @penguinolog in #653 - Documentation: TrioEventLoop is missed by @penguinolog in #642
Refactoring 🛠
- Refactoring: Force automated import sorting for all code by @penguinolog in #637
- Refactoring: Force automated black formatting by @penguinolog in #638
- Refactoring: Force
ruff
static checker for project by @penguinolog in #639 - Refactor: fixup usage of contextlib.suppress() by @ulidtko in #640
Full Changelog: 2.2.2...2.2.3
2.2.2¶
Released on 2023-09-25 - GitHub - PyPI
What's Changed
New features 🗹
- Feature: Support pack() for CheckBox/RadioButton/Button by @penguinolog in #621
Deprecations ⚡
- Mark
AttrWrap
asPendingDeprecation
by @penguinolog in #619
Bug fixes 🕷
- Fix font in case Font.data is
str
by @penguinolog in #618
Documentation 🕮
- Enforce examples code-style by @penguinolog in #620
- Documentation: do not use
FlowWidget
as base class in examples by @penguinolog in #623 - README: suggest python3-urwid for debian/ubuntu by @chronitis in #444
Refactoring 🛠
- Packaging: stop tests distribution as part of package by @penguinolog in #622
New Contributors
- @chronitis made their first contribution in #444
Full Changelog: 2.2.1...2.2.2
2.2.1¶
Released on 2023-09-22 - GitHub - PyPI
What's Changed
Bug fixes 🕷
- Fix: deep TextEnum was improperly resolved by @penguinolog in #609
Documentation 🕮
- Documentation: mention correct python versions by @penguinolog in #608
- Documentation: add stripped changelog for 2.2.0 by @penguinolog in #612
Refactoring 🛠
- Refactoring: use
super()
calls if possible by @penguinolog in #611 - Typing: Extend wimp typing annotations by @penguinolog in #604
Full Changelog: 2.2.0...2.2.1
2.2.0¶
Released on 2023-09-21 - GitHub - PyPI
Main changes
Compatibility
- Fix #583: python 3.12 compatibility by @penguinolog in #598
- Python 37+ migration, Python < 3.7 support dropped by @penguinolog in #522
- make tests compatible with Python 3.11 by @dotlambda in #517
- Deprecate legacy property creation by @penguinolog in #533
- Deprecate
__super
hack by @penguinolog in #538 - [BREAKING CHANGE] Fixes: #90 Remove idle emulation from asyncio event loop by @penguinolog in #541
New Features
- ZMQ event loop by @waveform80 in #362
- Add two fonts based on Unicode 13 2x3 TRS-80/Teletext mosaic characters by @rbanffy in #434
- Adds 256 color and truecolor support to vterm. Fixes #457 by @danschwarz in #559
- Vterm now emits 'resize' signal upon terminal resize by @danschwarz in #584
- vterm.py: Adds support for bracketed paste mode. Fixes #452 by @danschwarz in #594
- Pass SelectableIcon
align
andwrap
arguments to parent by @penguinolog in #599
Fixes
- fix: restore normal screen on ctrl-z by @proskur1n in #477
- Reconnect the 'modified' signal after setting a new ListBox.body by @exquo in #474
- Allow signal handling interoperability with raw display by @AnonymouX47 in #557
- Fix alternate/normal screen buffer switch for raw display by @AnonymouX47 in #556
- Fix text layout for
align="center", wrap="clip"
whenmaxcol
==line_width - 1
by @AnonymouX47 in #543 - Fix assertion failure when string contains SO but not SI by @mfncooper in #489
- Fix empty markup handling by @penguinolog in #536
- Resolve #499 and add tests by @djyotta in #500
- vterm: Fixed OSC 0,2 to set widget title properly (decode bytestring) by @danschwarz in #561
- vterm: Fixed a crash bug with DECALN command by @danschwarz in #560
- Fix #443 : export ELLIPSIS constant by @penguinolog in #527
- Fix: #445 - add
__len__
to listbox with validation if bodySized
by @penguinolog in #534 - Fix old_str_util.decode_one : support bytes and str as arguments by @penguinolog in #531
- Use
locale.getpreferredencoding(False)
if possible (most systems) F… by @penguinolog in #528 - Fix
TextCanvas
CanvasError("Attribute extends beyond text...")
by @penguinolog in #555 - Fix merging attributes while decomposing tag markup by @mandre in #507
- fix: use trio.lowlevel instead of trio.hazmat with Trio >= 0.15 by @ntamas in #439
- Fix TypeError in signals module on weak object finalize by GC by @rvtpro in #503
- Include _resize_pipe_rd in fd_list for _wait_for_input_ready for raw_display by @inducer in #453
- container: fix duplicate text by @vapier in #490
- Provide 80x24 fallback for ansi and vt100 by @roadriverrail in #465
Refactoring
- Use == instead of "is" for equality testing by @naglis in #431
- Split event loop in several modules by @penguinolog in #537
- Drop some compat for python < 2.6 by @dlax in #409
- Annotate types in simple cases and use isinstance (& protocol) based type checking by @penguinolog in #529
- Add type annotations and optimize
urwid.font
by @penguinolog in #540 - Related #583: Cleanup C helper from python2-only code by @penguinolog in #597
- Optimize
vterm
: adopt data types and add annotations. Fix tests by @penguinolog in #547 - Split widget and introduce base enums by @penguinolog in #595
Documentation and examples
- Use non deprecated template by @jspricke in #424
- Mention asyncio event loop compatibility in readme by @johtso in #463
- Fix documentation of TrioEventLoop.run_async() by @ntamas in #438
- Fix column label typo in tour example by @devfull in #473
- Update index.rst by @adbenitez in #504
- fix typo by @doctorcolossus in #493
- Update README.rst by @yhh2021 in #481
- docs: fix simple typo, incompatable -> incompatible by @timgates42 in #446
- Fixed twisted example: use
implementer
decorator instead of deprecatedimplements
. by @penguinolog in #591 - examples/terminal.py can run against older versions of Urwid again by @danschwarz in #596
- fix: update links to examples by @geier in #577
Other changes
- Test fixes by @penguinolog in #524
- Fix input handling and extra type annotations by @penguinolog in #530
- Fix regression:
Pile()
focus_item can be Widget -> need to set prop… by @penguinolog in #535 - Fix incorrect type cast in vterm (
apply_mapping
should returnbytes
) by @penguinolog in #545 - Return original code to the deprecated getters and setters by @penguinolog in #549
- Fix CheckBox default state validation and initialization by @penguinolog in #553
New Contributors
- @johtso made their first contribution in #463
- @devfull made their first contribution in #473
- @adbenitez made their first contribution in #504
- @doctorcolossus made their first contribution in #493
- @yhh2021 made their first contribution in #481
- @dotlambda made their first contribution in #517
- @rvtpro made their first contribution in #503
- @vapier made their first contribution in #490
- @proskur1n made their first contribution in #477
- @naglis made their first contribution in #431
- @dlax made their first contribution in #409
- @mandre made their first contribution in #507
- @timgates42 made their first contribution in #446
- @djyotta made their first contribution in #500
- @penguinolog made their first contribution in #523
- @exquo made their first contribution in #474
- @roadriverrail made their first contribution in #465
- @rbanffy made their first contribution in #434
- @mfncooper made their first contribution in #489
- @AnonymouX47 made their first contribution in #543
- @danschwarz made their first contribution in #559
- @dependabot made their first contribution in #570
Full Changelog: https://github.com/urwid/urwid/commits/2.2.0
Urwid 2.1.2¶
2020-09-26
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))
Urwid 2.1.1¶
2020-07-26
Add TrioEventLoop.run_async(), removed nursery constructor arg (#392) (by Tamás Nepusz)
Add py38 to Travis tests (by Andrey Semakin)
Add popular IDEs folders to .gitignore (by Andrey Semakin)
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)
Set up Travis to run py38, speed up build (by Andrey Semakin)
Use comparison with a string instead of “is” test with a literal (by Andrej Shadura)
Urwid 2.1.0¶
2019-11-13
Add support for Python 3.7 and 3.8, drop support for Python 3.3
Add 24-bit (true color) support. (by Tony Cebzanov)
Add TrioEventLoop (by Tamas Nepusz)
Add support for input encoding in Terminal widget (by Tamas Nepusz)
Add ability to specify LineBox title attribute (by Tom Pickering)
Add custom checkbox symbol (by Krzysztof Królczyk)
Add installation instruction to README (by Patryk Niedźwiedziński)
Remove PollingListWalker class (by Heiko Noordhof)
Change SelectableIcon default cursor_position to 0. (by Werner Beroux)
Extended numerical editing: integers and floats (by hootnot)
Re-raise coroutine exceptions in AsyncioEventLoop properly (by nocarryr)
Fixed locale issue (by Andrew Dunai)
Gate SIGWINCH behind GLib 2.54+ (by Nick Chavez)
Remove method Text._calc_line_translation() (by rndusr)
Fix colon in HalfBlock5x4Font (by Alex Ozer)
Don’t use deprecated inspect.getargspec() with python3 (by rndusr)
Fix issue “Non-integer division in bargraph when using set_bar_width(1)” (by Carlos Jenkins)
Fix misleading indentation in Screen._stop() (by Akos Kiss)
Fix crash on click-Esc & Esc-click (by Maxim Ivanov)
Use ‘TimerHandle.cancelled()’ if available (by Mohamed Seleem)
Break rather than raising exception on shard calculation bug. (by Tony Cebzanov)
Increase _idle_emulation_delay. (by Tony Cebzanov)
Fix EOF detection for the Terminal widget on Python 3 (by Tamas Nepusz)
Fix the asyncio example, and make the raw Screen work without real files (by Eevee)
Unbreak python ./examples/treesample HOME END keys. (by Dimitri John Ledkov)
Urwid.util: Fix bug in rle_append_beginning_modify (by BkPHcgQL3V)
Fix AttributeError on mouse click (by mbarkhau)
Fix ProgressBar smoothing on Python 3.x (by Tamas Nepusz)
Fix asyncio event loop test on py3.4 (by Maxim Ivanov)
Handle case where MainLoop._topmost_widget does not implement mouse_event (by Rasmus Bondesson)
Implement ellipsis wrapping mode for StandardTextLayout (by Philip Matura)
Fix .pack call in Columns.column_widths (by Philip Matura)
Use ._selectable member for Edit widget (by Philip Matura)
Fix use of ignore_focus, for widgets inheriting from Text (by Philip Matura)
Remove some special handling for TreeListBox (by Philip Matura)
Make Columns and Pile selectable when any child widget is (by Philip Matura)
Implement get_cursor_coords for Frame widget (by Philip Matura)
Fix Frame mouse_event when footer is trimmed (by Philip Matura)
Fix Python 3.8 SyntaxWarning: ‘str’ object is not callable (by Anders Kaseorg)
README: Use SVG build status badge (by Olle Jonsson)
Urwid 2.0.1¶
2018-01-21
#275: Late fix for proper exception reraising from within main loop (by Andrew Dunai & Adam Sampson)
Urwid 2.0.0¶
2018-01-17
Full Python 2.x/3.x support (by Andrew Dunai)
Proper handling & customization of OS signals by GLib event loop (by Federico T)
vterm: Fix handling of NUL characters (by aszlig)
Add 256-color support for fbterm (by Benjamin Yates)
Italics support (by Ian D. Scott)
Store envron’s TERM value as a Screen attribute (by Benjamin Yates)
Replaced hashbangs to use proper Python binary (by Douglas La Rocca)
Post-change signal for Edit, CheckBox and RadioButton widgets (by Toshio Kuratomi)
ListBox.body update (by Random User)
SimpleListWalker is now default when setting ListBox.body (by Random User)
#246, #234: SelectEventLoop alarm improvements (by Dave Jones)
#211: Title align & borderless sides for LineBox (by Toshio Kuratomi)
Support for ‘home’ and ‘end’ keys in ListBox (by Random User)
Various code cleanups (by Jordan Speicher, Marin Atanasov Nikolov)
CI fixes (by Marlox, Ian Ward, Anatoly Techtonik, Tony Cebzanov & Ondřej Súkup)
Example fixes (by Kenneth Nielsen)
Documentation fixes (by anatoly techtonik, Marcin Kurczewski, mobyte0, Christian Geier & xndcn)
Code cleanup & typo fixes (by Jakub Wilk & Boris Feld)
Integration of tox for easier Python cross-version testing (by Andrew Dunai)
Test fixes (by Michael Hudson-Doyle, Mike Gilbert & Andrew Dunai)
Correct error messages in Decoration (by Marcin Kurczewski)
#141: Fix for StandardTextLayout.calculate_text_segments (by Grzegorz Aksamit)
#221: Fix for raw display should release file descriptors (by Alain Leufroy)
#261: Fix issues with unicode characters in ProgressBar (by Andrew Dunai)
Fix for ‘page up’ and ‘page down’ in ListBox when having focusable children (by Random User)
Fixes for examples compatibility with Python 3 (by Lars Kellogg-Stedman)
Fix default screen size on raw display (by Andreas Klöckner)
Fix underlining for padded text (by Random User)
Fix for terminal widget crash with Python 3 (by Sjc1000)
Fix for string formatting error (by Jakub Wilk)
Fix for iterator in WidgetContainerListContentsMixin (by Marlox)
Fix for missing modified signal in SimpleFocusListWalker (by Michael Hansen)
Dropped Python 3.2 support
Test coverage is now collected
Urwid 1.3.1¶
2015-11-01
Fix for screen not getting reset on exception regression (by Rian Hunter)
AttrSpec objects are now comparable (by Random User)
MonitoredList now has a clear method if list has a clear method (by neumond)
Fix for BarGraph hlines sort order (by Heiko Noordhof)
Fix for final output not appearing on exit with some terminals now that extra newline was removed (by Jared Winborne)
Fix for a resizing bug in raw_display (by Esteban null)
Urwid 1.3.0¶
2014-10-17
New AsyncioEventLoop for Python 3.4, Python 3.x with asyncio package or Python 2 with trollius package (by Alex Munroe, Jonas Wielicki, with earlier work by Kelketek Rritaa)
Screen classes now call back to MainLoop using event loop alarms instead of passing timeout values to MainLoop (by Alex Munroe)
Add support for bright backgrounds on linux console (by Russell Warren)
Allow custom sorting of MonitoredList (by Tony Cebzanov)
Fix support for negative indexes with MonitoredFocusList (by Heiko Noordhof)
Documentation fixes (by Ismail, Matthew Mosesohn)
SelectableIcon using cursor_position=0 by default instead of 1.
Urwid 1.2.2¶
2014-10-05
Fix for a serious raw_display performance regression (by Anton Khirnov)
Fix for high color palette detection (by extempo)
Small changes to enable windows support (by Jeanpierre Devin)
Urwid 1.2.1¶
2014-04-04
Fix false failures of event loop tests
Remove extra newline generated on exit of raw_display
Documentation fixes (by Paul Ivanov)
Urwid 1.2.0¶
2014-02-09
Add support for PyPy, drop support for Python 2.4, 2.5
Signals now support using weakly referenced arguments to help avoid leaking objects when a signal consumer is no longer referenced (by Matthijs Kooijman)
Add TornadoEventLoop class (by Alexander Glyzov)
Update GlibEventLoop to use python-gi for Python3 compatibility (by Israel Garcia)
Automate testing with Python 2.6, 2.7, 3.2, 3.3 and PyPy using travis-ci
New container method get_focus_widgets() (by Matthijs Kooijman)
Add support for double and triple click mouse events (by Igor Kotrasiński)
Allow disabling and re-enabling of mouse tracking (by Jim Garrison)
Create section in docs for example program screenshots generated as images like the tutorial examples
Add suggested basic color combination images to manual
Fall back to 80x24 if screen size detection fails
Fix screen.stop(), screen.start() disabling mouse events
Fix to make GridFlow v_sep argument behave as documented
Fix for registering high palette entries in the form “hX” where X > 15 so that basic colors are applied in 88-color mode
Fix for raw_display clear-right escape not working with standout attribute on some terminals
Fix for Terminal widget select loop: retry when interrupted
Urwid 1.1.2¶
2013-12-30
Move to urwid.org and use sphinx docs for generating whole site, move changelog to docs/changelog.rst
Fix encoding exceptions when unicode used on non-UTF-8 terminal
Fix for suspend and resume applications with ^Z
Fix for tmux and screen missing colors on right bug
Fix Pile zero-weighted items and mouse_event when empty
Fix Terminal select() not retrying when interrupted by signal
Fix for Padding.align and width change not invalidating
Urwid 1.1.1¶
2012-11-15
Fix for Pile not changing focus on mouse events
Fix for Overlay.get_cursor_coords()
Urwid 1.1.0¶
2012-10-23
New common container API: focus, focus_position, contents, options(), get_focus_path(), set_focus_path(), __getitem__, __iter__(), __reversed__() implemented across all included container widgets
A full description doesn’t fit here, see the Container Widgets section in the manual for details
New Sphinx-based documentation now included in source: Tutorial rewritten, manual revised and new reference based on updated docstrings (by Marco Giusti, Patrick Totzke)
New list walker SimpleFocusListWalker like SimpleListWalker but updates focus position as items are inserted or removed
New decoration widget WidgetDisable to disable interaction with the widgets it wraps
SelectableIcon selectable text widget used by button widgets is now documented (available since 0.9.9)
Columns widget now tries to keep column in focus visible, hiding columns on the left when necessary
Padding widget now defaults to (‘relative’, 100) instead of ‘pack’ so that left and right parameters are more useful and more child widgets are supported
New list walker “API Version 2” that is simpler for many list walker uses; “API Version 1” will still continue to be supported
List walkers may now allow iteration from the absolute top or bottom of the list if they provide a positions() method
raw_display now erases to the end of the line with EL escape sequence to improve copy+paste behavior for some terminals
Filler now has top and bottom parameters like Padding’s left and right parameters and accepts ‘pack’ instead of None as a height value for widgets that calculate their own number of rows
Pile and Columns now accepts ‘pack’ instead of ‘flow’ for widgets that calculate their own number of rows or columns
Pile and Columns now accept ‘given’ instead of ‘fixed’ for cases where the number of rows or columns are specified by the container options
Pile and Columns widgets now accept any iterable to their __init__() methods
Widget now has a default focus_position property that raises an IndexError when read to be consistent with new common container API
GridFlow now supports multiple cell widths within the same widget
BoxWidget, FlowWidget and FixedWidget are deprecated, instead use the sizing() function or _sizing attribute to specify the supported sizing modes for your custom widgets
Some new shift+arrow and numpad input sequences from RXVT and xterm are now recognized
Fix for alarms when used with a screen event loop (e.g. curses_display)
Fix for raw_display when terminal width is 1 column
Fixes for a Columns.get_cursor_coords() regression and a SelectableIcon.get_cursor_coords() bug
Fixes for incorrect handling of box columns in a number of Columns methods when that column is selectable
Fix for Terminal widget input handling with Python 3
Urwid 1.0.3¶
2012-11-15
Fix for alarms when used with a screen event loop (e.g. curses_display)
Fix for Overlay.get_cursor_coords()
Urwid 1.0.2¶
2012-07-13
Fix for bug when entering Unicode text into Edit widget with bytes caption
Fix a regression when not running in UTF-8 mode
Fix for a MainLoop.remove_watch_pipe() bug
Fix for a bug when packing empty Edit widgets
Fix for a ListBox “contents too long” error with very large Edit widgets
Prevent ListBoxes from selecting 0-height selectable widgets when moving up or down
Fix a number of bugs caused by 0-height widgets in a ListBox
Urwid 1.0.1¶
2011-11-28
Fix for Terminal widget in BSD/OSX
Fix for a Filler mouse_event() position bug
Fix support for mouse positions up to x=255, y=255
Fixes for a number of string encoding issues under Python 3
Fix for a LineBox border __init__() parameters
Fix input of UTF-8 in tour.py example by converting captions to unicode
Fix tutorial examples’ use of TextCanvas and switch to using unicode literals
Prevent raw_display from calling tcseattr() or tcgetattr() on non-ttys
Disable curses_display external event loop support: screen resizing and gpm events are not properly supported
Mark PollingListWalker as deprecated
Urwid 1.0.0¶
2011-09-22
New support for Python 3.2 from the same 2.x code base, requires distribute instead of setuptools (by Kirk McDonald, Wendell, Marien Zwart) everything except TwistedEventLoop and GLibEventLoop is supported
New experimental Terminal widget with xterm emulation and terminal.py example program (by aszlig)
Edit widget now supports a mask (for passwords), has an insert_text_result() method for full-field validation and normalizes input text to Unicode or bytes based on the caption type used
New TreeWidget, TreeNode, ParentNode, TreeWalker and TreeListBox classes for lazy expanding/collapsing tree views factored out of browse.py example program, with new treesample.py example program (by Rob Lanphier)
MainLoop now calls draw_screen() just before going idle, so extra calls to draw_screen() in user code may now be removed
New MainLoop.watch_pipe() method for subprocess or threaded communication with the process/thread updating the UI, and new subproc.py example demonstrating its use
New PopUpLauncher and PopUpTarget widgets and MainLoop option for creating pop-ups and drop-downs, and new pop_up.py example program
New twisted_serve_ssh.py example (by Ali Afshar) that serves multiple displays over ssh from the same application using Twisted and the TwistedEventLoop
ListBox now includes a get_cursor_coords() method, allowing nested ListBox widgets
Columns widget contents may now be marked to always be treated as flow widgets for mixing flow and box widgets more easily
New lcd_display module with support for CF635 USB LCD panel and lcd_cf635.py example program with menus, slider controls and a custom font
Shared command_map instance is now stored as Widget._command_map class attribute and may be overridden in subclasses or individual widgets for more control over special keystrokes
Overlay widget parameters may now be adjusted after creation with set_overlay_parameters() method
New WidgetPlaceholder widget useful for swapping widgets without having to manipulate a container widget’s contents
LineBox widgets may now include title text
ProgressBar text content and alignment may now be overridden
Use reactor.stop() in TwistedEventLoop and document that Twisted’s reactor is not designed to be stopped then restarted
curses_display now supports AttrSpec and external event loops (Twisted or GLib) just like raw_display
raw_display and curses_display now support the IBMPC character set (currently only used by Terminal widget)
Fix for a gpm_mev bug preventing user input when on the console
Fix for leaks of None objects in str_util extension
Fix for WidgetWrap and AttrMap not working with fixed widgets
Fix for a lock up when attempting to wrap text containing wide characters into a single character column
Urwid 0.9.9.2¶
2011-07-13
Fix for an Overlay get_cursor_coords(), and Text top-widget bug
Fix for a Padding rows() bug when used with width=PACK
Fix for a bug with large flow widgets used in an Overlay
Fix for a gpm_mev bug
Fix for Pile and GraphVScale when rendered with no contents
Fix for a Python 2.3 incompatibility (0.9.9 is the last release to claim support Python 2.3)
Urwid 0.9.9.1¶
2010-01-25
Fix for ListBox snapping to selectable widgets taller than the ListBox itself
raw_display switching to alternate buffer now works properly with Terminal.app
Fix for BoxAdapter backwards incompatibility introduced in 0.9.9
Fix for a doctest failure under powerpc
Fix for systems with gpm_mev installed but not running gpm
Urwid 0.9.9¶
2009-11-15
New support for 256 and 88 color terminals with raw_display and html_fragment display modules
New palette_test example program to demonstrate high color modes
New AttrSpec class for specifying specific colors instead of using attributes defined in the screen’s palette
New MainLoop class ties together widgets, user input, screen display and one of a number of new event loops, removing the need for tedious, error-prone boilerplate code
New GLibEventLoop allows running Urwid applications with GLib (makes D-Bus integration easier)
New TwistedEventLoop allows running Urwid with a Twisted reactor
Added new docstrings and doctests to many widget classes
New AttrMap widget supports mapping any attribute to any other attribute, replaces AttrWrap widget
New WidgetDecoration base class for AttrMap, BoxAdapter, Padding, Filler and LineBox widgets creates a common method for accessing and updating their contained widgets
New left and right values may be specified in Padding widgets
New command_map for specifying which keys cause actions such as clicking Button widgets and scrolling ListBox widgets
New tty_signal_keys() method of raw_display.Screen and curses_display.Screen allows changing or disabling the keys used to send signals to the application
Added helpful __repr__ for many widget classes
Updated all example programs to use MainLoop class
Updated tutorial with MainLoop usage and improved examples
Renamed WidgetWrap.w to _w, indicating its intended use as a way to implement a widget with other widgets, not necessarily as a container for other widgets
Replaced all tabs with 4 spaces, code is now more aerodynamic (and PEP 8 compliant)
Added saving of stdin and stdout in raw_display module allowing the originals to be redirected
Updated BigText widget’s HalfBlock5x4Font
Fixed graph example CPU usage when animation is stopped
Fixed a memory leak related to objects listening for signals
Fixed a Popen3 deprecation warning
Urwid 0.9.8.4¶
2009-03-13
Fixed incompatibilities with Python 2.6 (by Friedrich Weber)
Fixed a SimpleListWalker with emptied list bug (found by Walter Mundt)
Fixed a curses_display stop()/start() bug (found by Christian Scharkus)
Fixed an is_wide_character() segfault on bad input data bug (by Andrew Psaltis)
Fixed a CanvasCache with render() used in both a widget and its superclass bug (found by Andrew Psaltis)
Fixed a ListBox.ends_visible() on empty list bug (found by Marc Hartstein)
Fixed a tutorial example bug (found by Kurtis D. Rader)
Fixed an Overlay.keypress() bug (found by Andreas Klöckner)
Fixed setuptools configuration (by Andreas Klöckner)
Urwid 0.9.8.3¶
2008-07-14
Fixed a canvas cache memory leak affecting 0.9.8, 0.9.8.1 and 0.9.8.2 (found by John Goodfellow)
Fixed a canvas fill_attr() bug (found by Joern Koerner)
Urwid 0.9.8.2¶
2008-05-19
Fixed incompatibilities with Python 2.3
Fixed Pile cursor pref_col bug, WidgetWrap rows caching bug, Button mouse_event with no callback bug, Filler body bug triggered by the tutorial and a LineBox lline parameter typo.
Urwid 0.9.8.1¶
2007-06-21
Fixed a Filler render() bug, a raw_display start()/stop() bug and a number of problems triggered by very small terminal window sizes.
Urwid 0.9.8¶
2007-03-23
Rendering is now significantly faster.
New Widget base class for all widgets. It includes automatic caching of rows() and render() methods. It also adds a new __super attribute for accessing methods in superclasses.
Widgets must now call self._invalidate() to notify the cache when their content has changed.
To disable caching in a widget set the class variable no_cache to a list that includes the string “render”.
Canvas classes have been reorganized: Canvas has been renamed to TextCanvas and Canvas is now the base class for all canvases. New canvas classes include BlankCanvas, SolidCanvas and CompositeCanvas.
External event loops may now be used with the raw_display module. The new methods get_input_descriptors() and get_input_nonblocking() should be used instead of get_input() to allow input processing without blocking.
The Columns, Pile and ListBox widgets now choose their first selectable child widget as the focus widget by default.
New ListWalker base class for list walker classes.
New Signals class that will be used to improve the existing event callbacks. Currently it is used for ListWalker objects to notify their ListBox when their content has changed.
SimpleListWalker now behaves as a list and supports all list operations. This class now detects when changes are made to the list and notifies the ListBox object. New code should use this class to wrap lists of widgets before passing them to the ListBox constructor.
New PollingListWalker class is now the default list walker that is used when passing a simple list to the ListBox constructor. This class is intended for backwards compatibility only. When this class is used the ListBox object is unable to cache its render() method.
The curses_display module can now draw in the lower-right corner of the screen.
All display modules now have start() and stop() methods that may be used instead of calling run_wrapper().
The raw_display module now uses an alternate buffer so that the original screen can be restored on exit. The old behaviour is available by setting the alternate_buffer parameter of start() or run_wrapper() to False.
Many internal string processing functions have been rewritten in C to improve their performance.
Compatible with Python >= 2.2. Python 2.1 is no longer supported.
Urwid 0.9.7.2¶
2007-01-03
Improved performance in UTF-8 mode when ASCII text is used.
Fixed a UTF-8 input bug.
Added a clear() function to the display modules to force the screen to be repainted on the next draw_screen() call.
Urwid 0.9.7.1¶
2006-10-03
Fixed bugs in Padding and Overlay widgets introduced in 0.9.7.
Urwid 0.9.7¶
2006-10-01
Added initial support for fixed widgets - widgets that have a fixed size on screen. Fixed widgets expect a size parameter equal to (). Fixed widgets must implement the pack(..) function to return their size.
New BigText class that draws text with fonts made of grids of character cells. BigText is a fixed widget and doesn’t do any alignment or wrapping. It is intended for banners and number readouts that need to stand out on the screen.
Fonts: Thin3x3Font, Thin4x3Font, Thin6x6Font (full ascii)
UTF-8 only fonts: HalfBlock5x4Font, HalfBlock6x5Font, HalfBlockHeavy6x5Font, HalfBlock7x7Font (full ascii)
New function get_all_fonts() may be used to get a list of the available fonts.
New example program bigtext.py demonstrates use of BigText.
Padding class now has a clipping mode that pads or clips fixed widgets to make them behave as flow widgets.
Overlay class can now accept a fixed widget as the widget to display “on top”.
New Canvas functions: pad_trim() and pad_trim_left_right().
Fixed a bug in Filler.get_cursor_coords() that causes a crash if the contained widget’s get_cursor_coords() function returns None.
Fixed a bug in Text.pack() that caused an infinite loop when the text contained a newline. This function is not currently used by Urwid.
Edit.__init__() now calls set_edit_text() to initialize its text.
Overlay.calculate_padding_filler() and Padding.padding_values() now include focus parameters.
Urwid 0.9.6¶
2006-08-22
Fixed Unicode conversion and locale issues when using Urwid with Python < 2.4. The graph.py example program should now work properly with older versions of Python.
The docgen_tutorial.py script can now write out the tutorial example programs as individual files.
Updated reference documentation table of contents to show which widgets are flow and/or box widgets.
Columns.set_focus(..) will now accept an integer or a widget as its parameter.
Added detection for rxvt’s HOME and END escape sequences.
Added support for setuptools (improved distutils).
Urwid 0.9.5¶
2006-06-14
Some Unicode characters are now converted to use the G1 alternate character set with DEC special and line drawing characters. These Unicode characters should now “just work” in almost all terminals and encodings.
When Urwid is run with the UTF-8 encoding the characters are left as UTF-8 and not converted.
The characters converted are:
u00A3 (£), u00B0 (°), u00B1 (±), u00B7 (·), u03C0 (π), u2260 (≠), u2264 (≤), u2265 (≥), u23ba (⎺), u23bb (⎻), u23bc (⎼), u23bd (⎽), u2500 (─), u2502 (│), u250c (┌), u2510 (┐), u2514 (└), u2518 (┘), u251c (├), u2524 (┤), u252c (┬), u2534 (┴), u253c (┼), u2592 (▒), u25c6 (◆)
New SolidFill class for filling an area with a single character.
New LineBox class for wrapping widgets in a box made of line- drawing characters. May be used as a box widget or a flow widget.
New example program graph.py demonstrates use of BarGraph, LineBox, ProgressBar and SolidFill.
Pile class may now be used as a box widget and contain a mix of box and flow widgets.
Columns class may now contain a mix of box and flow widgets. The box widgets will take their height from the maximum height of the flow widgets.
Improved the smoothness of resizing with raw_display module. The module will now try to stop updating the screen when a resize event occurs during the update.
The Edit and IntEdit classes now use their set_edit_text() and set_edit_pos() functions when handling keypresses, so those functions may be overridden to catch text modification.
The set_state() functions in the CheckBox and RadioButton classes now have a do_callback parameter that determines if the callback function registered will be called.
Fixed a newly introduced incompatibility with python < 2.3.
Fixed a missing symbol in curses_display when python is linked against libcurses.
Fixed mouse handling bugs in the Frame and Overlay classes.
Fixed a Padding bug when the left or right has no padding.
Urwid 0.9.4¶
2006-05-30
Enabled mouse handling across the Urwid library.
Added a new mouse_event() method to the Widget interface definition and to the following widgets: Edit, CheckBox, RadioButton, Button, GridFlow, Padding, Filler, Overlay, Frame, Pile, Columns, BoxAdapter and ListBox.
Updated example programs browse.py, calc.py, dialog.py, edit.py and tour.py to support mouse input.
Released the files used to generate the reference and tutorial documentation: docgen_reference.py, docgen_tutorial.py and tmpl_tutorial.html. The “docgen” scripts write the documentation to stdout. docgen_tutorial.py requires the Templayer HTML templating library to run: http://excess.org/templayer/
Improved Widget and List Walker interface documentation.
Fixed a bug in the handling of invalid UTF-8 data. All invalid characters are now replaced with ‘?’ characters when displayed.
Urwid 0.9.3¶
2006-05-14
Improved mouse reporting.
The raw_display module now detects gpm mouse events by reading /usr/bin/mev output. The curses_display module already supports gpm directly.
Mouse drag events are now reported by raw_display in terminals that provide button event tracking and on the console with gpm. Note that gpm may report coordinates off the screen if the user drags the mouse off the edge.
Button release events now report which button was released if that information is available, currently only on the console with gpm.
Added display of raw keycodes to the input_test.py example program.
Fixed a text layout bug affecting clipped text with blank lines, and another related to wrapped text starting with a space character.
Fixed a Frame.keypress() bug that caused it to call keypress on unselectable widgets.
Urwid 0.9.2¶
2006-03-18
Preliminary mouse support was added to the raw_display and curses_display modules. A new Screen.set_mouse_tracking() method was added to enable mouse tracking. Mouse events are returned alongside keystrokes from the Screen.get_input() method.
The widget interface does not yet include mouse handling. This will be addressed in the next release.
A new convenience function is_mouse_event() was added to help in separating mouse events from keystrokes.
Added a new example program input_test.py. This program displays the keyboard and mouse input it receives. It may be run as a CGI script or from the command line. On the command line it defaults to using the curses_display module, use input_test.py raw to use the raw_display module instead.
Fixed an Edit.render() bug that caused it to render the cursor in a different location than that reported by Edit.get_cursor_coords() in some circumstances.
Fixed a bug preventing use of UTF-8 characters with Divider widgets.
Urwid 0.9.1¶
2006-03-06
BarGraph and ProgressBar can now display data more accurately by using the UTF-8 vertical and horizontal eighth characters. This behavior will be enabled when the UTF-8 encoding is detected and “smoothed” attributes are passed to the BarGraph or ProgressBar constructors.
New get_encoding_mode() function to determine how Urwid will treat raw string data.
New raw_display.signal_init() and raw_display.signal_restore() methods that may be overridden by threaded applications that need to call signal.signal() from their main thread.
Fixed a bug that prevented the use of UTF-8 strings in text markup.
Removed some forgotten asserts that broke 8-bit and CJK input.
Urwid 0.9.0¶
2006-02-18
New support for UTF-8 encoding including input, display and editing of narrow and wide (CJK) characters.
Preliminary combining (zero-width) character support is included, but full support will require terminal behavior detection.
Right-to-Left input and display are not implemented.
New raw_display module that handles console display without relying on external libraries. This module was written as a work around for the lack of UTF-8 support in the standard version of ncurses.
Eliminates “dead corner” in the bottom right of the screen.
Avoids use of bold text in xterm and gnome-terminal for improved text legibility.
Fixed Overlay bug related to UTF-8 handling.
Fixed Edit.move_cursor_to_coords(..) bug related to wide characters in UTF-8 encoding.
Urwid 0.9.0-pre3¶
2006-02-13
Fixed Canvas attribute padding bug related to -pre1 changes.
Urwid 0.9.0-pre2¶
2006-02-10
Replaced the custom align and wrap modes in example program calc.py with a new layout class.
Fixed Overlay class call to Canvas.overlay() broken by -pre1 changes.
Fixed Padding bug related to Canvas -pre1 changes.
Urwid 0.9.0-pre1¶
2006-02-08
New support for UTF-8 encoding. Unicode strings may be used and will be converted to the current encoding when output. Regular strings in the current encoding may still be used.
PLEASE NOTE: There are issues related to displaying UTF-8 characters with the curses_display module that have not yet been resolved.
New set_encoding() function replaces util.set_double_byte_encoding().
New supports_unicode() function to query if unicode strings with characters outside the ascii range may be used with the current encoding.
New TextLayout and StandardTextLayout classes to perform text wrapping and alignment. Text widgets now have a layout parameter to allow use of custom TextLayout objects.
New layout structure replaces line translation structure. Layout structure now allows arbitrary reordering/positioning of text segments, inclusion of UTF-8 characters and insertion of text not found in the original text string.
Removed util.register_align_mode() and util.register_wrap_mode(). Their functionality has been replaced by the new layout classes.
Urwid 0.8.10¶
2005-11-27
Expanded tutorial to cover advanced ListBox usage, custom widget classes and the Pile, BoxAdapter, Columns, GridFlow and Overlay classes.
Added escape sequence for “shift tab” to curses_display.
Added ListBox.set_focus_valign() to allow positioning of the focus widget within the ListBox.
Added WidgetWrap class for extending existing widgets without inheriting their complete namespace.
Fixed web_display/mozilla breakage from 0.8.9. Fixed crash on invalid locale setting. Fixed ListBox slide-back bug. Fixed improper space trimming in calculate_alignment(). Fixed browse.py example program rows bug. Fixed sum definition, use of long ints for python2.1. Fixed warnings with python2.1. Fixed Padding.get_pref_col() bug. Fixed Overlay splitting CJK characters bug.
Urwid 0.8.9¶
2005-10-21
New Overlay class for drawing widgets that obscure parts of other widgets. May be used for drop down menus, combo boxes, overlapping “windows”, caption text etc.
New BarGraph, GraphVScale and ProgressBar classes for graphical display of data in Urwid applications.
New method for configuring keyboard input timeouts and delays: curses_display.Screen.set_input_timeouts().
Fixed a ListBox.set_focus() bug.
Urwid 0.8.8¶
2005-06-13
New web_display module that emulates a console display within a web browser window. Application must be run as a CGI script under Apache.
Supports font/window resizing, keepalive for long-lived connections, limiting maximum concurrent connections, polling and connected update methods. Tested with Mozilla Firefox and Internet Explorer.
New BoxAdapter class for using box widgets in places that usually expect flow widgets.
New curses_display input handling with better ESC key detection and broader escape code support.
Shortened resize timeout on gradual resize to improve responsiveness.
Urwid 0.8.7¶
2005-05-21
New widget classes: Button, RadioButton, CheckBox.
New layout widget classes: Padding, GridFlow.
New dialog.py example program that behaves like dialog(1) command.
Pile widgets now support selectable items, focus changing with up and down keys and setting the cursor position.
Frame widgets now support selectable items in the header and footer.
Columns widgets now support fixed width and relative width columns, a minimum width for all columns, selectable items within columns containing flow widgets (already supported for box widgets), focus changing with left and right keys and setting the cursor position.
Filler widgets may now wrap box widgets and have more alignment options.
Updated tour.py example program to show new widget types and features.
Avoid hogging cpu on gradual window resize and fix for slow resize with cygwin’s broken curses implementation.
Fixed minor CJK problem and curs_set() crash under MacOSX and Cygwin.
Fixed crash when deleting cells in calc.py example program.
Urwid 0.8.6¶
2005-01-03
Improved support for CJK double-byte encodings: BIG5, UHC, GBK, GB2312, CN-GB, EUC-KR, EUC-CN, EUC-JP (JISX 0208 only) and EUC-TW (CNS 11643 plain 1 only)
Added support for ncurses’ use_default_colors() function to curses_display module (Python >= 2.4).
register_palette() and register_palette_entry() now accept “default” as foreground and/or background. If the terminal’s default attributes cannot be detected black on light gray will be used to accommodate terminals with always-black cursors.
“default” is now the default for text with no attributes. This means that areas with no attributes will change from light grey on black (curses default) to black on light gray or the terminal’s default.
Modified examples to not use black as background of Edit widgets.
Fixed curses_display curs_set() call so that cursor is hidden when widget in focus has no cursor position.
Urwid 0.8.5¶
2004-12-15
New tutorial covering basic operation of: curses_display.Screen, Canvas, Text, FlowWidget, Filler, BoxWidget, AttrWrap, Edit, ListBox and Frame classes
New widget class: Filler
New ListBox functions: get_focus(), set_focus()
Debian packages for Python 2.4.
Fixed curses_display bug affecting text with no attributes.
Urwid 0.8.4¶
2004-11-20
Improved support for Cyrillic and other simple 8-bit encodings.
Added new functions to simplify taking screenshots: html_fragment.screenshot_init() and html_fragment.screenshot_collect()
Improved urwid/curses_display.py input debugging
Fixed cursor in screenshots of CJK text. Fixed “end” key in Edit boxes with CJK text.
Urwid 0.8.3¶
2004-11-15
Added support for CJK double-byte encodings.
Word wrapping mode “space” will wrap on edges of double width characters. Wrapping and clipping will not split double width characters.
curses_display.Screen.get_input() may now return double width characters. Text and Edit classes will work with a mix of regular and double width characters.
Use new method Edit.set_edit_text() instead of Edit.update_text().
Minor improvements to edit.py example program.
Urwid 0.8.2¶
2004-11-08
Re-released under GNU Lesser General Public License.
Urwid 0.8.1¶
2004-10-29
Added support for monochrome terminals. see curses_display.Screen.register_palette_entry() and example programs. set TERM=xterm-mono to test programs in monochrome mode.
Added unit testing code test_urwid.py to the examples.
Can now run urwid/curses_display.py to test your terminal’s input and colour rendering.
Fixed an OSX browse.py compatibility issue. Added some OSX keycodes.
Urwid 0.8.0¶
2004-10-17
Initial Release