summaryrefslogtreecommitdiff
path: root/urwid
Commit message (Expand)AuthorAgeFilesLines
...
* | | vterm: Fix handling of NUL charactersaszlig2016-02-112-1/+5
* | | fix #172 - html_fragment errors on Python 3.4Michael Keirnan2016-02-051-0/+2
* | | Merge pull request #158 from benjamin9999/fbtermIan Ward2015-11-011-8/+18
|\ \ \
| * | | Add 256-color support for fbtermBenjamin Yates2015-10-181-4/+14
| * | | Store envron's TERM value as a Screen attributeBenjamin Yates2015-10-181-4/+4
* | | | drop -dev from 1.3.1Ian Ward2015-11-011-1/+1
|/ / /
* | | fixes https://github.com/wardi/urwid/issues/96Esteban null2015-09-201-1/+1
| |/ |/|
* | Reset screen to original state on any exception.Rian Hunter2015-09-061-2/+2
* | A better fix for #127 and #60, added self.flush() instead of carriage returnJared Winborne2015-07-021-2/+2
* | fix for #127 Added a \r for the screen to be properly restored after screen.s...Jared Winborne2015-06-291-1/+2
* | Merge pull request #88 from hkoof/fix-bargraph-hlinesIan Ward2015-04-211-0/+1
|\ \ | |/ |/|
| * fix hlines in BarGraph.set_data(): sort descendingHeiko Noordhof2014-11-041-0/+1
* | Add bracketed paste mode escape sequencesTom Dryer2015-04-121-0/+2
* | Fix typo in AttrSpec error messageRandom User2015-03-261-1/+1
* | Merge pull request #100 from kurlyk/masterIan Ward2015-01-041-0/+9
|\ \
| * | Add "clear" method to monitored listsneumond2014-12-201-0/+9
| |/
* | Merge pull request #91 from rndusr/masterIan Ward2015-01-041-0/+7
|\ \
| * | AttrSpec.__eq__: compare _value instead of foreground and backgroundRandom User2014-11-181-3/+1
| * | Make AttrSpec comparable *and* not break completelyRandom User2014-11-181-2/+5
| * | Add __eq__ and __ne__ to AttrSpecRandom User2014-11-181-0/+6
| |/
* | cleanup screen claim on runtime exceptionRuurd Moelker2014-12-051-1/+5
|/
* fix for bg bug introduced by #75Ian Ward2014-10-181-1/+1
* start 1.3.1-devIan Ward2014-10-171-1/+1
* drop -dev from 1.3.0Ian Ward2014-10-171-1/+1
* Merge pull request #74 from jeblair/masterIan Ward2014-10-171-1/+5
|\
| * Fix GridFlow focus issueJames E. Blair2014-08-201-1/+5
* | Merge pull request #85 from hkoof/negative-indicesIan Ward2014-10-171-45/+22
|\ \
| * | make __delitem__ support negative indicesHeiko Noordhof2014-10-171-1/+2
| * | add doctest examples of negative indicesHeiko Noordhof2014-10-171-1/+18
| * | turn deprecated slice methods into wrappersHeiko Noordhof2014-10-171-43/+2
* | | Merge pull request #75 from rwarren/bright_bg_for_linux_termIan Ward2014-10-171-7/+11
|\ \ \ | |/ / |/| |
| * | fix bright bg rendering on linux termrwarren2014-08-271-7/+11
| |/
* | working on release 1.3Ian Ward2014-10-051-1/+1
* | raw_display: enable code for skipping unchanged rows during redrawAnton Khirnov2014-09-271-1/+1
|/
* Merge pull request #67 from eevee/loop-cleanupJonas Wielicki2014-08-0417-254/+474
|\
| * Fix calling get_input() on the raw screen.Eevee (Alex Munroe)2014-07-271-7/+13
| * Stop screen even without external event loopJonas Wielicki2014-07-091-1/+4
| * Adapt docstrings to changed argumentsJonas Wielicki2014-07-091-2/+2
| * Fix a doctest.Eevee (Alex Munroe)2014-06-031-7/+7
| * Add Screen.write and Screen.flush.Eevee (Alex Munroe)2014-06-031-13/+31
| * MainLoop.start/stop now start/stop the screen, too.Eevee (Alex Munroe)2014-06-031-2/+5
| * Make BaseScreen.start() and stop() idempotent.Eevee (Alex Munroe)2014-06-037-42/+40
| * Put run_wrapper in the base class; make BaseScreen.start() a contextmanager.Eevee (Alex Munroe)2014-06-038-37/+39
| * Fix Screen.parse_input to be easily reused by subclasses.Eevee (Alex Munroe)2014-05-121-7/+12
| * Fix some Python 3 things that work fine in 2.6 anyway.Eevee (Alex Munroe)2014-05-119-31/+34
| * Split up MainLoop._run, so the loop can be managed outside urwid.Eevee (Alex Munroe)2014-05-111-18/+50
| * Add AsyncioEventLoop. Fixes #52.Eevee (Alex Munroe)2014-05-113-5/+136
| * Fix `except ... as`.Eevee (Alex Munroe)2014-05-115-8/+8
| * Fix up the Twisted example.Eevee (Alex Munroe)2014-05-111-2/+2
| * Have the Screen call back into MainLoop on new input.Eevee (Alex Munroe)2014-05-112-91/+103