Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
| * | Documentation update. I think this covers most of the channel-related ui-fix | Wilmer van der Gaast | 2010-07-04 | -7/+153 | |
| | | | | | | | | | | changes. | ||||
| * | Auto joins for chatrooms. | Wilmer van der Gaast | 2010-07-04 | -0/+24 | |
| | | |||||
| * | Added automatic joining of channels. Auto-rejoin functionality for | Wilmer van der Gaast | 2010-07-04 | -2/+52 | |
| | | | | | | | | | | groupchats not reimplemented yet but that's the next step. | ||||
| * | Show a user going offline as a QUIT, not as one or more PARTs, like in the | Wilmer van der Gaast | 2010-07-03 | -43/+59 | |
| | | | | | | | | | | | | old-style BitlBee. This so that the IRC client will show the notification in query windows as well. Make it a setting though, for bug #539. | ||||
| * | Use irc_send_msg instead of irc_send_msg_raw() to echo messages to self, | Wilmer van der Gaast | 2010-07-03 | -1/+1 | |
| | | | | | | | | | | | | | | to make sure CTCP ACTIONs work. Not important, just more correct. Other CTCPs sent to oneself are dropped, but why CTCP yourself anyway? | ||||
| * | Initialize the show variable in channel_update. This shouldn't have caused | Wilmer van der Gaast | 2010-07-03 | -1/+1 | |
| | | | | | | | | | | | | any troubles, only unpredictable behaviour for users trying out unimplemented functionality. | ||||
| * | Fix handling of outgoing CTCP ACTIONs. | Wilmer van der Gaast | 2010-07-03 | -1/+1 | |
| | | |||||
| * | A few Twitter fixes from mainline. | Wilmer van der Gaast | 2010-07-01 | -13/+24 | |
| |\ | |/ |/| | |||||
* | | D'oh. Of course the getter functions should also treat next_cursor as a | Wilmer van der Gaast | 2010-06-30 | -10/+10 | |
| | | | | | | | | | | | | 64-bit integer. This code now successfully fetches lists with up to ~900 items. (Since this takes quite long, maybe there should be an upper limit.) | ||||
* | | next_cursor is a 64-bit integer. Make it so. This should fix issues with | Wilmer van der Gaast | 2010-06-30 | -3/+7 | |
| | | | | | | | | | | | | | | | | getting contact lists containing >100 people. I'm still not getting a full list but even Twitter claims I'm at the end of the list. Will investigate later. | ||||
* | | Strip whitespace in Twitter OAuth PIN responses. | Wilmer van der Gaast | 2010-06-30 | -1/+8 | |
| | | |||||
| * | When receiving a channel name hint, and a channel with that name already | Wilmer van der Gaast | 2010-07-01 | -10/+29 | |
| | | | | | | | | | | | | exists, remove it if it's fully unused, instead of failing immediately. (Fixes #639.) | ||||
| * | Disable the code added in the previous change during shutdown, since it's | Wilmer van der Gaast | 2010-07-01 | -1/+7 | |
| | | | | | | | | | | pointless at that stage and may cause crashes. | ||||
| * | Flush channels when the user leaves them. Also, don't update a control | Wilmer van der Gaast | 2010-07-01 | -1/+13 | |
| | | | | | | | | | | channel if the user isn't in it. | ||||
| * | Support /NOTICE, although for now just to yourself - some IRC clients use | Wilmer van der Gaast | 2010-07-01 | -3/+15 | |
| | | | | | | | | | | this to measure lag. | ||||
| * | Also, automatically set up per-protocol channels if the name's a protocol | Wilmer van der Gaast | 2010-06-30 | -0/+4 | |
| | | | | | | | | | | name. | ||||
| * | Also allow selecting contacts for a channel by protocol instead of account. | Wilmer van der Gaast | 2010-06-30 | -0/+30 | |
| | | | | | | | | | | | | If someone has two MSN accts and wants contacts from both in one channel, this is now possible. | ||||
| * | Allow joining multiple channels at once. Although BitlBee doesn't advertise | Wilmer van der Gaast | 2010-06-28 | -21/+40 | |
| | | | | | | | | | | support for this, irssi tries to do this anyway. | ||||
| * | An empty string is not a valid channel name. | Wilmer van der Gaast | 2010-06-28 | -0/+3 | |
| | | |||||
| * | Callers shouldn't have to expect that irc_channel_del_user() frees the channel | Wilmer van der Gaast | 2010-06-28 | -1/+36 | |
| | | | | | | | | | | so if it wants to (temporary channels), do it via a timer. | ||||
| * | Hacky support for short subcommands (i.e. "ac l" instead of "account list".). | Wilmer van der Gaast | 2010-06-28 | -11/+19 | |
| | | |||||
| * | Mark nameless groupchat channels as temporary so they don't stick around | Wilmer van der Gaast | 2010-06-28 | -5/+36 | |
| | | | | | | | | | | forever. | ||||
| * | irc_channel_name_strip() instead of nick_strip(). | Wilmer van der Gaast | 2010-06-27 | -2/+16 | |
| | | |||||
| * | Save and load channels. Also fixing a bug in creating non-control channels | Wilmer van der Gaast | 2010-06-27 | -9/+48 | |
| | | | | | | | | | | with a &-name. | ||||
| * | Import chatrooms configured in older BitlBee versions. Settings are currently | Wilmer van der Gaast | 2010-06-27 | -274/+24 | |
| | | | | | | | | | | | | ignored though. Also removing the old chat.[ch] files since they're really not important anymore. | ||||
| * | Changed account set (and other account commands) syntax. Instead of | Wilmer van der Gaast | 2010-06-27 | -202/+118 | |
| | | | | | | | | | | | | | | | | | | | | "account set acc/key value" you now do "account acc set key value". So just the regular set syntax with a "account acc" prefix. The slash has been a source of confusion for long enough now. For consistency, commands like "account on acc" should now also be "account acc on" instead. Same for the new "channel" comand, of course. | ||||
| * | Remember in which channel the user talked to someone and show responses in | Wilmer van der Gaast | 2010-06-26 | -20/+22 | |
| | | | | | | | | | | that same channel. | ||||
| * | Merging bugfix from mainline. | Wilmer van der Gaast | 2010-06-26 | -4/+8 | |
| |\ | |/ |/| | |||||
* | | Don't create multiple main loops if the user follows >100 people. | Wilmer van der Gaast | 2010-06-24 | -4/+8 | |
| | | |||||
| * | Merging a few revisions from mainline. | Wilmer van der Gaast | 2010-06-24 | -30/+85 | |
| |\ | |/ |/| | |||||
* | | Fixed an access-after-free() bug in the Jabber keepalive + cache cleanup | Wilmer van der Gaast | 2010-06-24 | -1/+2 | |
| | | | | | | | | | | code. | ||||
* | | Load the whole Twitter contact list at login time if mode=chat/many, | Wilmer van der Gaast | 2010-06-24 | -26/+64 | |
| | | | | | | | | | | | | instead of adding contacts as they post tweets. Also in mode=chat, populate the channel *before* adding the user to it, avoiding a flood of joins. | ||||
* | | Fixed a NULL pointer dereference in the Jabber module. | Wilmer van der Gaast | 2010-06-23 | -1/+1 | |
| | | |||||
* | | Added user_agent setting to Jabber accounts so people can get around | Wilmer van der Gaast | 2010-06-23 | -2/+18 | |
| | | | | | | | | | | | | | | ridiculous user agent restrictions on certain Jabber servers. Obviously this is pretty simple to detect and break, but it works at least with Openfire. | ||||
| * | Automatically call the "channel" command for the now-gone chat subcommands. | Wilmer van der Gaast | 2010-06-23 | -0/+7 | |
| | | |||||
| * | More correct handling of channel names (according to RFC 1459). Pretty | Wilmer van der Gaast | 2010-06-16 | -56/+50 | |
| | | | | | | | | | | | | much any 8-bit character is allowed in there - while nicknames are very restricted. | ||||
| * | s/buddy_sendbuffer/paste_buffer/ in the docs as well. | Wilmer van der Gaast | 2010-06-14 | -33/+33 | |
| | | |||||
| * | Small doc update on multi-channel stuff. The "channel" command is not | Wilmer van der Gaast | 2010-06-13 | -0/+47 | |
| | | | | | | | | | | documented yet. | ||||
| * | Added away_reply_timeout setting so BitlBee will suppress away messages sent | Wilmer van der Gaast | 2010-06-11 | -4/+34 | |
| | | | | | | | | | | | | | | in response to PRIVMSG if one was sent recently - some IRC clients including irssi don't do this very well (when talking to >1 people who are away for example). | ||||
| * | Create new MSN groups when necessary. | Wilmer van der Gaast | 2010-06-11 | -11/+104 | |
| | | |||||
| * | Fixed extremely stupid NULLptr dereference. | Wilmer van der Gaast | 2010-06-10 | -1/+1 | |
| | | |||||
| * | Fixing hostname in "exiting" opermsgs. | Wilmer van der Gaast | 2010-06-10 | -2/+2 | |
| | | |||||
| * | Moving MSN contacts between groups is now possible, but no support yet for | Wilmer van der Gaast | 2010-06-09 | -10/+28 | |
| | | | | | | | | | | creating new groups. | ||||
| * | Allow moving contacts around between groups. Works with at least Jabber, | Wilmer van der Gaast | 2010-06-09 | -6/+30 | |
| | | | | | | | | | | will check the others now. | ||||
| * | Some cleanup improvements. | Wilmer van der Gaast | 2010-06-08 | -0/+10 | |
| | | |||||
| * | Merging memory leak fixes from devel, time to find the ui-fix-specific | Wilmer van der Gaast | 2010-06-08 | -3/+34 | |
| |\ | |/ |/| | | | | | leaks. | ||||
* | | Fixing some memory leakage. | Wilmer van der Gaast | 2010-06-08 | -0/+31 | |
| | | |||||
* | | Use mkstemp() instead of just a tilde-file when writing new configs to a | Wilmer van der Gaast | 2010-06-06 | -3/+3 | |
| | | | | | | | | | | | | | | temporary file. This solves hard-to-debug issues where for example the user hand-edited his configs as root and left a root-owned user.xml~ file behind. | ||||
| * | Merging Debian fixes that I missed in the previous merge. | Wilmer van der Gaast | 2010-06-08 | -6/+10 | |
| |\ | |||||
| | * | Some more fixes to make this work with older distros (Hardy's stuck with | Wilmer van der Gaast | 2010-06-06 | -5/+7 | |
| | | | | | | | | | | | | | | | | | | debhelper 6) and on de code.b.o build bot (a substvars file I wasn't using anymore caused troubles). |