Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-12-04 | Set auto_reconnect to True by default | Florent Le Coz | |
2014-11-29 | Add our own JID to the roster | mathieui | |
2014-11-02 | Add a stream error handler in order to display error messages | mathieui | |
2014-10-31 | Merge branch 'master' of git.poez.io:poezio into slix | mathieui | |
Conflicts: src/bookmark.py src/config.py src/connection.py src/core/commands.py src/core/core.py src/core/handlers.py src/windows/info_bar.py src/windows/muc.py src/windows/roster_win.py src/windows/text_win.py src/xhtml.py | |||
2014-10-30 | Fix the ssl check for asyncio | mathieui | |
2014-10-20 | Remove the (sometimes wrong) default values in the config.get() calls | mathieui | |
2014-10-20 | Change the API of Config.get_by_tabname | mathieui | |
Make the "default" parameter optional and thus move it to the end of the command with the other optional parameters. And change all the calls. | |||
2014-10-16 | Extract XHTML-IM inline imags by default | mathieui | |
- Add two new options: tmp_image_dir and extract_inline_images - tmp_image_dir is $XDG_CACHE_HOME(usually ~/.cache)/poezio/images if unset - Name the images from a SHA-1 of their data and their mimetype - Output file:// links inside the message | |||
2014-10-16 | Do not ignore empty topics | Florent Le Coz | |
2014-10-14 | Merge branch 'master' of git.poez.io:poezio into slix | mathieui | |
Conflicts: src/core/handlers.py src/tabs/xmltab.py | |||
2014-10-12 | Add an open_all_bookmarks option | mathieui | |
this option determines if the non-autojoin bookmarks will be opened on startup or not. It is false by default. | |||
2014-10-08 | Use SHA-2 (SHA-512) to store the certificate fingerprint instead of SHA-1 | mathieui | |
Because SHA-1 is not really relevant anymore. Too bad it's significantly longer and tiring to check, even if that is to be expected. | |||
2014-09-30 | Fix an other call to an old SleekXMPP function name | Florent Le Coz | |
2014-08-01 | Fix a traceback when a receiving a message from a bare JID | Florent Le Coz | |
2014-08-01 | Fix a few blocking iq, and remove all block=False function arguments | Florent Le Coz | |
2014-08-01 | First implementation of auto_reconnect, poezio-side | Florent Le Coz | |
2014-08-01 | Display “authentication failed” only when all auth methods failed | Florent Le Coz | |
2014-07-30 | Make the bookmark stuff non-blocking | Florent Le Coz | |
2014-07-30 | Fix all the connect() reconnect() stuff | Florent Le Coz | |
The /reconnect command should now properly work everytime. | |||
2014-07-30 | Send pings only when we are connected | Florent Le Coz | |
2014-07-28 | Do not traceback when we receive a message from a JID with no resource | Florent Le Coz | |
2014-07-24 | First adaptation to slixmpp | Florent Le Coz | |
2014-07-24 | Use slixmpp | Florent Le Coz | |
2014-07-06 | Fix #2534 (display who changed the topic) | mathieui | |
2014-05-31 | get_tab_by_name() should specify a tab type whenever possible | Florent Le Coz | |
For example, a tab can be named muc.example.com, if you do /list muc.example.com. If you then do /join muc.example.com, the error handler needs to get the correct tab (the MucTab, not the MucListTab previously opened). This commit fixes the above issue (a traceback), and maybe some others like that. | |||
2014-05-08 | Fix a hidden traceback on error message outside MUCs | mathieui | |
2014-05-05 | Fix a traceback on adhoc error | mathieui | |
2014-05-04 | Do not beep in a MUC if we receive a message from one of our resources | mathieui | |
happens when beep_on contains "message". thanks eijebong | |||
2014-05-04 | Implement the execution of ad-hoc commands (#1832) | Florent Le Coz | |
2014-04-30 | Remove Tab.get_name() and use Tab.name instead | mathieui | |
(keep a get_name() fallback just in case for now) | |||
2014-04-29 | Do not ask for receipts in messages without a body | mathieui | |
2014-04-29 | Fix most UI issues with introduced in 0caf941 | mathieui | |
2014-04-28 | Make the size modular, remove small-size lock (also seems to fix #2155) | mathieui | |
some stuff is now hidden wen the window size gets too small (might need some adjustments). The info buffer in the roster tab, the userlist in mucs, the vertical tab list, the info buffer everywhere, etc… | |||
2014-04-27 | Provide our own wrapper for checking the host category (ref #2511?) | mathieui | |
xmpp.plugin['xep_0030'].has_identity appears to be unreliable at best, so we provide our own. Might help the case of carbons not displayed. | |||
2014-04-27 | Fix #2106 (implement message delivery receipts) | mathieui | |
- two options request/ack_message_receipts - two new theme parameters : CHAR_ACK_RECEIVED and COLOR_CHAR_ACK - if a message has a receipt, the character is displayed between the timestamp and the nick, using the color | |||
2014-04-26 | Fix the nickname of server-generated messages | mathieui | |
2014-04-25 | Fix #2516 (display error with carbons) | mathieui | |
- fix the bug where messages from our own jid were incorrectly displayed - the nick is now fixed for the whole conversation | |||
2014-04-15 | Fix #2440 (highlight composing tabs) | mathieui | |
- add a show_composing_tabs option, default value: "direct" - todo: find a nice different color for this | |||
2014-04-14 | Implement XEP-0249 (Direct MUC Invitations) | mathieui | |
- fallback to mediated invitations if only the bare jid is given to the command or if the jid does not advertise support TODO: provide a way to send passwords | |||
2014-04-06 | Code cleanup | mathieui | |
fixes whitespace issues, some builtin overrides, and some enormous lines might make poezio run nanoseconds faster! | |||
2014-04-05 | Split the Core class | mathieui | |
Although the logic stays the same, and everything is put back together in a single class. |