summaryrefslogtreecommitdiff
path: root/src/windows.py
AgeCommit message (Collapse)Author
2012-10-14Correctly use MORE instead of PLUS.Florent Le Coz
2012-10-13Fixes #2374 (Crash on " " in the MUC list)mathieui
- Also fixes arefresh issue (up&down keys didn’t refresh the win) - Rework the style of the Columns a bit (was 2-spaces indent & trailing spaces)
2012-10-09Send a real \t when pasting a text containing tabs.Florent Le Coz
2012-09-26Rewrite the tab number handlingmathieui
- Now the tab number is computed instead of assigned and fixed - Added tabs.GapTab to keep the old behaviour - Added a create_gaps option, defaults to true (may change in the future) - If there are gaps before using /set to change the option to false, they will be removed. (this is a preparation for the move_tab command)
2012-08-06Add a common.safeJID function, and use it everywheremathieui
2012-08-05Should fix most tracebacks due to the new sleek versionmathieui
(sleekxmpp added JID validation, which means that JID(something) now raises an exception if the jid is invalid, instead of failing silently and having JID('') as a default)
2012-08-01Add a roster_group_sort option, which works like roster_sortmathieui
- defaults to "name" (sort by group name) - document it - also, micro-optimize get_nb_connected_contacts()
2012-07-31Add a roster_sort option to sort the contacts inside the roster groupsmathieui
- defaults to jid_show (which means that they are sorted into sub-groups by show and are sorted by JID inside those) - See the default config file or the documentation for details
2012-07-26Change how scrolling is donemathieui
- All functions involved return a boolean, and the core function use that value to determine if a refresh is needed or not. (avoids useless refreshs) - Scrolling with PGUP/DOWN on the roster now only does _one_ action, an not a range corresponding to the screen size (should be way faster)
2012-07-19Remove the shell_completionmathieui
- completion is normal with no way to change it (shell_completion was buggy) - remove it in the default config and in the doc too
2012-07-03Add a new color to the theme, for the warning promptmathieui
- Currently only used by the SSL checking prompt - fg: black ; bg: red ; bold
2012-05-24Truncate everything in the roster if needed.mathieui
Group names, resources jids, and bare jid/roster name combinations are now truncated if they are bigger than the window size. If there is a resource (for a contct) or a number of online contacts (for groups), it will still be displayed at the end of the line.
2012-05-17Do not add a '…' if the nick has the exact same size as the limitmathieui
2012-05-17Add a shortcut to go to the first unread message (separator) with M-pmathieui
2012-05-17Fix a crash if there are no messages in the roommathieui
2012-05-17Resolves separator persistence problems - Fixes #2073mathieui
Now we have to pass the textbuffer object when we want to add a line separator.
2012-05-17Add a way to review room highlights - Fixes #1673mathieui
This new features is available with M-p and M-n (previous/next). It saves the last highlight viewed, meaning that if you scroll in the buffer, M-n or M-p will take you to the next or previous hl compared to the one before you started scrolling. For convenience, going to the previous highlight of the first highlight will take you to the bottom of the buffer, and going to the next highlight of the last highlight will do *the same*. If there are several highlights in one message, only the first line will be considered a highlight.
2012-05-05Fix some completionsmathieui
2012-04-27Prevent some iteration problemsmathieui
2012-04-27Roster update: Merge branch 'master' of https://git.louiz.org/poeziomathieui
Conflicts: src/core.py src/tabs.py
2012-04-27Necessary modifications for the API changemathieui
2012-04-19Add a show_roster_jids optionmathieui
2012-04-19Show the current status in the ContactInfoWinmathieui
2012-04-18Add new options use_tab_nicks, show_tab_numbers, and show_tab_namesmathieui
(thanks gio)
2012-04-18Quote everything that is completed by default, except commandsmathieui
2012-03-08Validate the SSL cert using the TOFU (Trust On First Use) modelmathieui
2012-02-25Second and third of #2336mathieui
2012-02-15Merge branch 'master' of https://git.louiz.org/poezioFlorent Le Coz
2012-02-15Add an option to configure the max nick lengthFlorent Le Coz
2012-02-14Fixes #2303 (add user_list_sort option)mathieui
2012-02-14Add 'joined' tab state, and rewrite the function handling the prioritiesmathieui
2012-01-25Fixes #2316mathieui
2012-01-25Add affiliation chars in the thememathieui
2012-01-24New participant list. Displaying the nick color, the affiliation, role, ↵Florent Le Coz
chatstate and status!
2011-12-09Fix sorting columns when a room has no name. (we use '' instead of None)Florent Le Coz
2011-12-09Fixe 2104manfraid
2011-11-30show_tab_names option lets you display the name of the tabs in the ↵Florent Le Coz
horizontal bar
2011-11-29Fix a traceback when using ^W with xhtml-immathieui
(it does not work perfectly as it should, but it doesn’t crash anymore, at least)
2011-11-28Curses operations must operate within the lockmathieui
2011-11-20May improve some performance, but should be unnoticeable.Florent Le Coz
2011-11-19Restaure try: except: on derwinFlorent Le Coz
2011-11-18Pasting text is now handled has one single big key.Florent Le Coz
This avoids looping over each char we are pasting, making it a lot faster (actually, should be instant).
2011-11-16Merge branch 'master' of http://git.louiz.org/poezioFlorent Le Coz
2011-11-16Add a vertical separator between the vertical tab list and the restFlorent Le Coz
2011-11-16Add CHAR_CHATSTATE_* to the available theme optionsmathieui
2011-11-16Add an option to display vertical tabs from bottom to top.Florent Le Coz
2011-11-16Add an optional vertical tab list.Florent Le Coz
2011-11-15Use Theme.CHAR_STATUS whenever it is possiblemathieui
Fixes #2293
2011-11-13Tweak auto_completion in order to add quotes only when neededmathieui
2011-11-13Fix the completion with space-separated itemsmathieui
Fixes #2261