Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-21 | Hack to make importlib work on python < 3.3 | mathieui | |
2012-11-18 | Fix #2154 | mathieui | |
2012-11-18 | For some reasons, importlib.machinery does not work on some platforms | mathieui | |
2012-11-17 | Changes to the plugin_dir option are now taken into account on runtime | mathieui | |
2012-11-17 | Fix #2151 (cannot reload the OTR plugin) | mathieui | |
We were using the deprecated imp methods, now we use importlib | |||
2012-11-17 | Fix the history numbers when re-joining a room | mathieui | |
the <history/> element had a xmlns="" instead of the proper namespace. | |||
2012-11-11 | Preload history into discussion windows (à la mcabber) | mathieui | |
- New option load_log defaulting to 200 to indicate the number of lines to be loaded - It’s still very raw, and the format of the message does not match the format of the normal room history, for example - Works in the Private chat, MUC, and Conversation tabs Thanks to labedz <github@labedz.org> for the original code | |||
2012-11-06 | Add a add_space_after_completion bool option. | Florent Le Coz | |
fix #2150 | |||
2012-11-05 | Fix the completion for /info | mathieui | |
2012-11-05 | Fix a traceback when opening a conversation with a resource from the roster | mathieui | |
2012-11-05 | Catch IqTimeout exception when removing a contact from the roster. | Florent Le Coz | |
2012-10-22 | Make the Executor class reliable. | Florent Le Coz | |
Plugins do not need to escape the command arguments or remove the line breaks and care about how the will get parsed anymore, they just need to pass a list of args. Do not spawn an additional shell, for more clarity, simplicity and possibly security. | |||
2012-10-15 | Fix a refresh issue with /message | mathieui | |
2012-10-15 | Fixes #2368 (/join /nick not working) | mathieui | |
2012-10-15 | Prettify the /names command | mathieui | |
2012-10-15 | Fix the number of connected contacts/total number in the roster | mathieui | |
2012-10-15 | Put back the “truc@chose.com is now online” messages | mathieui | |
2012-10-14 | Fix a traceback on completion_version | mathieui | |
2012-10-14 | Rename /connect to /reconnect and make it rostertab-only | mathieui | |
2012-10-14 | Also add the decorators module | mathieui | |
2012-10-14 | Do not display "None" in the /self command | mathieui | |
2012-10-14 | Add decorators to handle refreshs more easily | mathieui | |
(and fix one more issue with the refresh in the roster) | |||
2012-10-14 | Add a space after a nick completion not at the start of the line. | Florent Le Coz | |
2012-10-14 | Do not quotify the status in /status command. | Florent Le Coz | |
2012-10-14 | Correctly use MORE instead of PLUS. | Florent Le Coz | |
2012-10-14 | Fix a refresh issue on space in the roster | mathieui | |
2012-10-14 | Should boost the roster speed | mathieui | |
- use a generator instead of a listcomp - don’t use a JID for the resource | |||
2012-10-13 | Fixes #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-13 | Fixes #2376 (Only open one XMLTab) | mathieui | |
- Also make Core.focus_tab_named take an optional type, and return a boolean | |||
2012-10-13 | Add a “debug” attribute to Core | mathieui | |
2012-10-13 | Fixes #2380 (traceback on /invite) | mathieui | |
2012-10-12 | Correctly rebuild the messages when we corrected one. And avoid code duplicates | Florent Le Coz | |
2012-10-12 | When a message is corrected, display it correctly in place of the previous one. | Emmanuel Gil Peyrot | |
2012-10-12 | Implement message correction. | Emmanuel Gil Peyrot | |
2012-10-09 | Transform a char (\xf1) into what we meant (Ctrl+/, apparently). | Florent Le Coz | |
If we try to send that, we get disconnected… | |||
2012-10-09 | Send a real \t when pasting a text containing tabs. | Florent Le Coz | |
2012-10-09 | Refresh less often when entering text. | Florent Le Coz | |
2012-10-09 | Separate special keys from normal chars when receving a batch of chars. | Florent Le Coz | |
In case of lags or paste of text, the input can yield a list of chars instead of just one char. In case of lags, keyboard special keys (KEY_BACKSPACE, ^W, etc) are mixed with other “normal” chars ('a', 'b', 'D', ' ' etc). Instead of handling that whole batch in one go (which requires us to ignore all the special keys, otherwise they would be displayed in the input, which are both bad ways to handle that), we separate special keys from the normal ones, and we handle that big batch as one or more smaller batches. This should make the input behave correctly in case of lag AND in case of paste of huge text (only one refresh per batch, respond instantly, no key lost or ignored, etc) fixed #2365 | |||
2012-10-02 | Revert "Add a tab-specific “ignore_changes” option" | Florent Le Coz | |
This reverts commit c66ec81c4530a806b0aacc2933f6493cdcbbfc82. | |||
2012-09-30 | Add a tab-specific “ignore_changes” option | mathieui | |
- The documentation is included in the commit | |||
2012-09-27 | Prevent special keys to appear in the input when lagging | mathieui | |
2012-09-27 | Fix the bug of Alt-e (go to important room) | mathieui | |
2012-09-26 | Add a /move_tab command | mathieui | |
And break it down into understandable functions | |||
2012-09-26 | Rewrite the tab number handling | mathieui | |
- 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-09-13 | Fix TBs when the system is not in utf-8 by default | mathieui | |
(force every file opening to be with the utf-8 encoding) | |||
2012-09-13 | Make the toggle left pane permanent | mathieui | |
previously, the change wasn’t saved | |||
2012-09-02 | An history_length of 0 was ignored (and the default length would be received) | Florent Le Coz | |
2012-09-02 | added muc_history_length support | Johannes Krude | |
2012-09-01 | Add a <body xmlns='http://www.w3.org/1999/xhtml'/> element on /xhtml command | Florent Le Coz | |
Because not having that element is not allowed by the xhtml-im XEP, poezio should put that by default. | |||
2012-08-31 | Give an empty name to a group if it hasn’t got one | mathieui | |