Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use Jid datatype in chat rooms | James Booth | 2013-01-13 | 9 | -114/+133 |
| | |||||
* | Added jid_destroy() | James Booth | 2013-01-13 | 1 | -0/+12 |
| | |||||
* | Moved FREE_SET_NULL to common.h | James Booth | 2013-01-13 | 2 | -8/+8 |
| | |||||
* | Merge pull request #134 from pasis/fixes | James Booth | 2013-01-12 | 1 | -5/+8 |
|\ | | | | | fixed memory leak in parse_room_jid | ||||
| * | fixed memory leak in parse_room_jid | Dmitry Podgorny | 2013-01-13 | 1 | -5/+8 |
|/ | |||||
* | Added jid_create_room_jid | James Booth | 2013-01-13 | 3 | -0/+29 |
| | |||||
* | Renamed chat room type | James Booth | 2013-01-13 | 1 | -18/+18 |
| | |||||
* | Changed Jid typedef to be explicit pointer | James Booth | 2013-01-13 | 4 | -21/+22 |
| | |||||
* | Merge remote-tracking branch 'dmitry/fixes' | James Booth | 2013-01-12 | 1 | -1/+1 |
|\ | |||||
| * | windows.c: fixed gcc warning | Dmitry Podgorny | 2013-01-13 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #132 from pasis/next | James Booth | 2013-01-12 | 2 | -90/+65 |
|\ \ | | | | | | | Some code refactoring in jabber.c | ||||
| * | | check account->name == NULL | Dmitry Podgorny | 2013-01-13 | 1 | -0/+4 |
| | | | |||||
| * | | fixed resources release | Dmitry Podgorny | 2013-01-13 | 1 | -6/+9 |
| | | | | | | | | | | | | | | | * Use free instead of g_free as resources are allocated with strdup * Fixed memory leaks | ||||
| * | | don't release room and nick when parsing failed | Dmitry Podgorny | 2013-01-13 | 1 | -3/+0 |
| | | | |||||
| * | | room_jid should be (char *) | Dmitry Podgorny | 2013-01-12 | 1 | -1/+1 |
| | | | |||||
| * | | refactored jabber_set_autoping() | Dmitry Podgorny | 2013-01-12 | 1 | -3/+1 |
| | | | |||||
| * | | added JABBER_PRIORITY_* macros | Dmitry Podgorny | 2013-01-12 | 2 | -1/+4 |
| | | | |||||
| * | | fixed memory leak in jabber_subscription() | Dmitry Podgorny | 2013-01-12 | 1 | -1/+3 |
| | | | |||||
| * | | set NULL only when resource != NULL in FREE_SET_NULL | Dmitry Podgorny | 2013-01-12 | 1 | -3/+4 |
| | | | |||||
| * | | refactored jabber_connect functions | Dmitry Podgorny | 2013-01-12 | 2 | -71/+40 |
| | | | | | | | | | | | | | | | | | | * similar code moved to jabber_connect() * variables saved_* moved to a structure saved_user * 'user' renamed to 'jid' | ||||
| * | | jabber.c: use FREE_SET_NULL macro | Dmitry Podgorny | 2013-01-12 | 1 | -3/+1 |
| |/ | |||||
* | | Added jid datatype | James Booth | 2013-01-12 | 11 | -112/+384 |
| | | |||||
* | | Moved ChatSession typedef | James Booth | 2013-01-12 | 2 | -3/+4 |
|/ | |||||
* | Moved jid related functions to common | James Booth | 2013-01-12 | 6 | -115/+117 |
| | |||||
* | Renamed muc functions | James Booth | 2013-01-12 | 6 | -194/+198 |
| | |||||
* | Renamed room_chat module to muc | James Booth | 2013-01-12 | 7 | -8/+8 |
| | |||||
* | Added comments to room_chat.c | James Booth | 2013-01-12 | 1 | -8/+97 |
| | |||||
* | Added subject to chat room | James Booth | 2013-01-11 | 1 | -0/+5 |
| | |||||
* | If chat room already joined, just show window | James Booth | 2013-01-11 | 1 | -1/+3 |
| | |||||
* | Updated copyright | James Booth | 2013-01-11 | 52 | -54/+54 |
| | |||||
* | Check nick exists when private messaging | James Booth | 2013-01-11 | 2 | -13/+43 |
| | | | | Show nick part of jid in private messaging | ||||
* | Added win_current_is_console() | James Booth | 2013-01-11 | 3 | -2/+8 |
| | |||||
* | Use room nickname autocompleter on /info and /msg when in chat room | James Booth | 2013-01-11 | 3 | -22/+65 |
| | |||||
* | Autocomplete: added free function | James Booth | 2013-01-11 | 10 | -21/+38 |
| | | | | Fixed tests | ||||
* | Added nickname autocompleter to chat rooms | James Booth | 2013-01-11 | 1 | -1/+9 |
| | |||||
* | Added extra line after /wins | James Booth | 2013-01-10 | 1 | -0/+2 |
| | |||||
* | Merge remote-tracking branch 'dmitry/next' | James Booth | 2013-01-10 | 2 | -39/+31 |
|\ | |||||
| * | added resources release to connetion handler | Dmitry Podgorny | 2013-01-07 | 2 | -2/+8 |
| | | |||||
| * | jabber.c: removed xmpp_stop calls | Dmitry Podgorny | 2013-01-07 | 1 | -2/+0 |
| | | | | | | | | xmpp_stop() stops event loop xmpp_run() that profanity doesn't start. | ||||
| * | jabber.c: set jabber status in one place in connection handler | Dmitry Podgorny | 2013-01-07 | 1 | -15/+8 |
| | | |||||
| * | free resources when login attempt fails | Dmitry Podgorny | 2013-01-07 | 1 | -9/+1 |
| | | | | | | | | The next call of jabber_connect allocates these resources again. | ||||
| * | jabber.c: removed extra resources release | Dmitry Podgorny | 2013-01-07 | 1 | -8/+0 |
| | | | | | | | | These resources are released in jabber_free_resources(). | ||||
| * | jabber.c: added assert before reconnect_timer allocation | Dmitry Podgorny | 2013-01-07 | 1 | -0/+2 |
| | | | | | | | | | | Development build will be terminated if reconnect_timer was allocated previously and wasn't destroyed. | ||||
| * | free saved login information in jabber_free_resources() | Dmitry Podgorny | 2013-01-07 | 1 | -2/+11 |
| | | |||||
| * | jabber.c: removed explicit type conversion | Dmitry Podgorny | 2013-01-07 | 1 | -1/+1 |
| | | | | | | | | | | According to the C99 standard integer type will be converted to real floating type before the comparison. | ||||
* | | Remove whitespace | James Booth | 2013-01-07 | 1 | -2/+0 |
| | | |||||
* | | Temp fix for checking printable chars | James Booth | 2013-01-07 | 1 | -19/+10 |
| | | | | | | | | Use result of wget_wch to check for special keys | ||||
* | | Revert "Temp fix for handling printable characters" | James Booth | 2013-01-07 | 1 | -5/+15 |
| | | | | | | | | This reverts commit 8f5826b25613555cdf8d22d484609be5b1687c42. | ||||
* | | Temp fix for handling printable characters | James Booth | 2013-01-07 | 1 | -15/+5 |
|/ | |||||
* | Fix issue #121 | James Booth | 2013-01-06 | 1 | -0/+1 |
| |