summaryrefslogtreecommitdiff
path: root/poezio/windows
AgeCommit message (Collapse)Author
2018-07-23windows: Reexport BaseTextWin to fix f107ecd9536d114a1aef54ce426b5b5c7c97861f.Emmanuel Gil Peyrot
2018-07-22Replace list() with [] everywhere.Emmanuel Gil Peyrot
2018-07-21Update poezio for the new tabs modulemathieui
2018-07-21Add exceptions for some pylint errorsmathieui
until we find out where type inference has gone very wrong.
2018-07-21yapf -ripmathieui
2018-07-14Stop making classes inherit from object.Emmanuel Gil Peyrot
2018-06-28Replace the '%s' % var pattern with str(var).Emmanuel Gil Peyrot
2018-03-12Add a “name” column to /bookmarks.Emmanuel Gil Peyrot
2018-01-25Optimise the half-block codepath slightly.Emmanuel Gil Peyrot
2018-01-25Fix blinking in ImageWin.Emmanuel Gil Peyrot
Also display the border according to the theme.
2018-01-25Use full-blocks by default for images.Emmanuel Gil Peyrot
This prevents bugs in some terminals.
2018-01-13yapf -irmathieui
2018-01-10Fix typos, thanks `codespell`!Emmanuel Gil Peyrot
2017-11-14Make italics workmathieui
2017-11-14yapf -irEmmanuel Gil Peyrot
2017-11-12Replace italics with reversed when the curses module is too old to support it.Emmanuel Gil Peyrot
2017-11-12yapf -irmathieui
2017-11-12Fix the bookmarks management windowmathieui
2017-10-18Check whether curses.A_ITALIC exists, fixes a traceback on <em/> on Python < ↵Emmanuel Gil Peyrot
3.7.
2017-10-14Add support for italic on ^Ci.Emmanuel Gil Peyrot
Fixes #2722.
2017-10-14Use _ for unused arguments in tuple assignmentmathieui
2017-10-13Fix the last pylint error (do not set the roster contact filter to None)mathieui
2017-10-13Fix more pylint errorsmathieui
2017-10-12Set a default (noop) callback for Input.on_input instead of Nonemathieui
2017-10-09Fix resize in some unknown condition, thanks eijebong.Emmanuel Gil Peyrot
2017-10-09Properly use ellipsis in #3293Georg Lukas
2017-10-08Fix #3293 (provide detailed presence in status line)mathieui
Less eye travel for short statuses. (patch from Ge0rG)
2017-10-07ImageWin: Remove some Python 3.6+ syntax.Emmanuel Gil Peyrot
2017-10-07windows: Add an ImageWin.Emmanuel Gil Peyrot
This adds an optional dependency on PIL.
2017-10-07windows: Remove useless __init__ overrides.Emmanuel Gil Peyrot
2016-10-21Fill __all__ for tabs/ and windows/mathieui
2016-10-08Add a raw parameter to all data form windowsmathieui
Otherwise it will obviously traceback when calling it with that parameter
2016-10-05Fix #3100 (Allow pasting in a data form)mathieui
2016-10-04"information" is already plural, fix wordingmathieui
2016-10-02Don’t put the cursor at the top-left if a move() failed.Emmanuel Gil Peyrot
2016-09-20Add a PgUp/PgDown keybind to /bookmarks.Eijebong
Fixes #3231
2016-08-28Really fix that tracebackmathieui
2016-08-28Fix a traceback introduced in the last commitmathieui
2016-08-28Fix some type inconsistenciesmathieui
(pylint)
2016-08-22Don’t use camelcase for accessing data formsmathieui
(except with getXML that will need more work)
2016-08-19Use the confirmtab for TLS cert validationmathieui
And wipe the YesNoInput from the codebase
2016-08-19Add a "confirm" tab typemathieui
This tab will be used when an external events prompts a boolean choice to a user, like a new ssl cert, or a XEP (e.g. 0070) that needs an answer, and for which a command-line interface with an info message would be a pain.
2016-07-14Fix a bug in multiline colored textmathieui
if the first, attribute color was negative, the color wasn’t passed on to the next line.
2016-07-12Improve refresh performance in big roomsmathieui
going through a list with more than 1000 elements, one at a time, can be a bit tedious. Especially if you go through it every time you receive one of those elements.
2016-07-07Fix the configure and bookmark tabmathieui
2016-07-07Fix a circular import introduced in 409b1513mathieui
It breaks python 3.4 which is touchy about them, https://bugs.python.org/issue17636
2016-07-06Merge remote-tracking branch 'linkmauve/big-performances-improvement'louiz’
2016-07-06Make UserList.refresh_if_possible not hyper dumb.Emmanuel Gil Peyrot
This function was actually calling refresh for every single item that was different from the cached version.
2016-07-06Move Win._tab_win into poezio.windows.TAB_WIN.Emmanuel Gil Peyrot
2016-07-06Always use the same argument name in Input.do_command.Emmanuel Gil Peyrot