summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2011-02-25Fix a tb when receiving the first private message of a conversationFlorent Le Coz
2011-02-24Display chatstates in the user list in MucTabsFlorent Le Coz
2011-02-24end and handle chatstates in privateconversationsFlorent Le Coz
2011-02-24Send chat states in muc and private conversations.Florent Le Coz
Also, do not send active/inactive states if we switch tab while we are composing a message
2011-02-24Send active/inactive if we are focused on the tab or not. And sendFlorent Le Coz
"gone" when we close the tab
2011-02-24Do not send chat states if send_chat_states = false in configFlorent Le Coz
2011-02-24Refresh the tab when we receive a chat stateFlorent Le Coz
2011-02-24Better handle the 'not composing, just typing a command',Florent Le Coz
the user cannot trick the system by doing (e.g), "w, ←, /, ENTER"
2011-02-24Pass the message tooFlorent Le Coz
2011-02-24Do not send the composing chatstate if we are typing a commandFlorent Le Coz
2011-02-24In normal conversations: Send composing and active chat statesFlorent Le Coz
and display the state of the remote contact
2011-02-21Avoid crash when write to log file failsFlorent Le Coz
2011-02-18Properly take into account the length of the characters, fixingFlorent Le Coz
some display issues (for example the cursor position when entering stranges characters likes 癔)
2011-02-17Re-add the /configure commandFlorent Le Coz
2011-02-16Fix the info_win of the InfoTab (anon mode)Florent Le Coz
2011-02-15Change the timer to avoid split of big pastesFlorent Le Coz
2011-02-15Line ^M are now converted to ^J if we are pastingFlorent Le Coz
from the clipboard, making it possible to paste huge multi-lines texts in only one message
2011-02-15^J now inserts a line break in the input.Florent Le Coz
It is now possible to send multi-lines messages
2011-02-15Remove ^J from the shortcuts triggering the Enter event, becauseFlorent Le Coz
we’ll use it to add a (real) \n into the input’s text. Also remove "\n" because it’s useless
2011-02-15Ctrl+Shift+left and right switch to the previous/next tabFlorent Le Coz
2011-02-15Ctrl+up and down go to the next/previous group in the rosterFlorent Le Coz
2011-02-15Ctrl+left and right jump a word in the inputFlorent Le Coz
2011-02-15Keyboard can now read all shortcuts with Ctrl (e.g Ctrl+left)Florent Le Coz
Any unicode character is accepted after the meta key The meta key can be concatened until a non-meta key is pressed (e.g M-M-M-M-M-M-M-M-e)
2011-02-15PgUp and PgDown scroll one page in the rosterFlorent Le Coz
M-u, M-y Moves to the next/previous roster group
2011-02-15Scroll user list by "height-1" lines, instead of 4Florent Le Coz
2011-02-15/message command. Fixed #2106Florent Le Coz
2011-02-15Remove the resize timer etc, because the resize processFlorent Le Coz
is waaaaaay faster now.
2011-02-15Make the resize faster by resizing each tabFlorent Le Coz
only at its next refresh
2011-02-14Automated merge with http://hg.louiz.org/poezioFlorent Le Coz
2011-02-14Make the number of lines and messages kept in memory configurableFlorent Le Coz
and lower (a lot) the number of lines kept in the info_win buffers This lower the memory usage.
2011-02-14Properly remove the info_win from the list of theFlorent Le Coz
global information_buffer to make it Garbage Collected when we close the tab
2011-02-13Make the tab collectable by remove self references when closingFlorent Le Coz
them.
2011-02-13Automated merge with http://hg.louiz.org/poezioFlorent Le Coz
2011-02-13Make it possible to define bold in the theme filesFlorent Le Coz
2011-02-10Fix /list completion (complete the servers only)Florent Le Coz
2011-02-10Fix the /help command with commands of the current tabFlorent Le Coz
2011-02-10/help completionFlorent Le Coz
2011-02-10/win completion and fix the return values of other completionsFlorent Le Coz
2011-02-10/show completionFlorent Le Coz
2011-02-10/unignore completionFlorent Le Coz
2011-02-10Topic completionFlorent Le Coz
2011-02-10Make the shell split do a normal split if the syntax is wrongFlorent Le Coz
2011-02-10Remove a useless UnicodeError checkFlorent Le Coz
2011-02-09update version to 0.7.5-dev and remove some debugFlorent Le Coz
2011-02-02Update to 0.7.1Florent Le Coz
2011-02-02euh okFlorent Le Coz
2011-02-02Disable /configure while it's broken with sleekxmppFlorent Le Coz
2011-02-02fixed #2115mathieui
2011-01-31Avoid crash if info_win_size is over the window height. fixed #2114Florent Le Coz
2011-01-26get_tab_by_name is safer now, by passing the type of the tab we want.Florent Le Coz
This avoid confusion between various tabs having an identical name (which should not happen anyway…)