summaryrefslogtreecommitdiff
path: root/poezio/windows
AgeCommit message (Collapse)Author
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
2016-07-06Rename a private method with an underscore.Emmanuel Gil Peyrot
2016-07-06Add missing return values in boolean functions.Emmanuel Gil Peyrot
2016-07-06Always import Win from base_wins.Emmanuel Gil Peyrot
2016-06-30Absolute imports everywheremathieui
2016-06-30Use absolute imports instead of relative onesmathieui
All this crap is very brittle due to circular deps and python handling them badly. This appears to be fixing some stuff, at the very least. This is sed, so cleanup of imports (which can now be grouped together) is not done yet.
2016-06-28Import Singleton instead of its module, and remove unused imports.Emmanuel Gil Peyrot
2016-06-27Make all relative imports explicit.Emmanuel Gil Peyrot