aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* Merging msn-offline branch. A tiny bit of MSNP13, and it works for the firstWilmer van der Gaast2010-08-08-10/+462
|\ | | | | | | | | | | minute of the session (after that the MSN server finds out the rest of BitlBee still speaks MSNP8).
| * Use local memory in http_encode() instead of malloc().Wilmer van der Gaast2010-08-08-5/+2
| |
| * Error reporting and added a msgq_send function. Need to put some moreWilmer van der Gaast2010-03-20-20/+51
| | | | | | | | | | intelligence into it later.
| * Killing some memory leaks.Wilmer van der Gaast2010-03-20-4/+10
| |
| * Added soap.c with a fairly reusable SOAP framework and simple code forWilmer van der Gaast2010-03-20-3/+325
| | | | | | | | | | | | sending offline messages. It works somewhat, just that Pidgin shows the messages as empty. :-(
| * Add MSNP11 challenge code which I'll need for doing this SOAP stuff.Wilmer van der Gaast2010-03-20-2/+101
| |
* | Add a few more commands (including RT) and the ability to send replies.Wilmer van der Gaast2010-08-08-15/+105
| | | | | | | | | | | | That's it for now, this is already not very pretty, but just offers the bare basic functionality.
* | Allow protocol modules to keep per-contact protocol-specific data. UseWilmer van der Gaast2010-08-07-3/+42
| | | | | | | | | | | | this in the Twitter module to remember the id and timestamp of a contact's last tweet, which can later be used for simple replies/retweets.
* | Add commands to the Twitter module, starting with undo (which deletesWilmer van der Gaast2010-08-07-24/+113
| | | | | | | | | | either your most recent tweet, or a specific id (pass it as an argument)).
* | OpenSolaris (non-gcc) fixes, patches from Dagobert Michelsen <dam@opencsw.org>Wilmer van der Gaast2010-08-07-35/+52
| | | | | | | | | | with some changes.
* | Applied patch from wahjava (with some modifications) for bug #644. ThisWilmer van der Gaast2010-08-07-51/+54
| | | | | | | | | | lets proxy_connect() connect to IPv6 hosts.
* | Reconstruct incoming truncated retweets.Wilmer van der Gaast2010-08-07-1/+26
| |
* | Alright, let's try a dev snapshot.1.3devWilmer van der Gaast2010-08-06-5/+15
| |
* | Some fixes for compiler warnings that only show up when compiling with -O2,Wilmer van der Gaast2010-08-05-12/+12
| | | | | | | | | | and some additions to the Debian package description.
* | To address bugs #77 and #661, add some code that should avoid triggeringWilmer van der Gaast2010-08-04-0/+29
| | | | | | | | | | infinite loops between keyboard and chair.
* | For bug #660, add a /LIST command.Wilmer van der Gaast2010-08-04-0/+15
| |
* | Set channel mode +C for control channels.Wilmer van der Gaast2010-08-04-1/+54
| |
* | Try another way to silence int-pointer cast warnings in the Yahoo! module.Wilmer van der Gaast2010-08-04-5/+5
| | | | | | | | | | -Wno-pointer-to-int-cast is not supported by gcc3.
* | Bump up the version number, and also copy bee.h to the public includeWilmer van der Gaast2010-08-02-3/+3
| | | | | | | | | | | | directory. This should fix compatibility with the Skype module (together with some changes there).
* | Make the "chop off +b stuff from version number" more specific to match justWilmer van der Gaast2010-07-30-1/+1
| | | | | | | | | | binary NMUs.
* | Don't notify the UI about group changes if there wasn't, in fact, a change.Wilmer van der Gaast2010-07-30-1/+3
| | | | | | | | | | This should stop the odd left+joins that were happening sometimes.
* | Show a friendly warning message when running in inetd mode on the commandWilmer van der Gaast2010-07-29-23/+31
| | | | | | | | | | | | | | line (if stdin is a TTY). This hopefully answers a FAQ. Also moved stuff around in README a little bit, daemon mode should be described before obsolete inetd stuff.
* | Make the unittests work *slightly* better with libevent. (Still won't workWilmer van der Gaast2010-07-29-0/+1
| | | | | | | | | | | | completely because events.h doesn't export a way to run a single event loop iteration.
* | Restore default_target setting, kill last_root_cmd variable and just useWilmer van der Gaast2010-07-29-55/+42
| | | | | | | | | | the last_channel variable, like for any other user.
* | Clean up references from irc_user structs to channels that are being free()d.Wilmer van der Gaast2010-07-29-3/+21
| |
* | Fixing http_encode(): BitlBee now calls setlocale() (for nicknameWilmer van der Gaast2010-07-29-4/+19
| | | | | | | | | | | | | | | | | | transliteration to work), which changes the behaviour of isalpha() (turns out it's not a simple macro). For HTTP-encoding, this sucks, especially when doing OAuth (which is very picky about the way HTTP encoding is done). This should fix problems some people were seeing with posting Twitter messages containing accents.
* | "Fix up" unittests enough to at least compile. Never touched these duringWilmer van der Gaast2010-07-29-55/+6
| | | | | | | | | | the ui-fix works.
* | Allow including account tags in nicknames, and be a bit more clever aboutWilmer van der Gaast2010-07-28-6/+28
| | | | | | | | | | the default tags (recognize AIM/ICQ/GTalk/Facebook).
* | Don't crash when trying to join a channel with an invalid name.Wilmer van der Gaast2010-07-28-5/+6
| |
* | MSN: Don't show any "special" messages when breaking down switchboards withWilmer van der Gaast2010-07-28-4/+14
| | | | | | | | | | | | queued messages. They were never supposed to be seen by the user. Also, don't send them all to offline users.
* | Source documentation update, including a short HACKING file.Wilmer van der Gaast2010-07-28-63/+178
| |
* | Fixed shutdown sequence (could cause 100% CPU usage on SIGTERM).Wilmer van der Gaast2010-07-27-33/+19
| |
* | Block CTCPs to channels instead of sending them as plain messages. MaybeWilmer van der Gaast2010-07-27-1/+5
| | | | | | | | | | some other day I'll find a reason for actually supporting them.
* | Install all new/moved header files in install-dev so bitlbee-skype andWilmer van der Gaast2010-07-27-1/+1
| | | | | | | | | | possibly other plugins become somewhat buildable again.
* | Some NULL pointer checks for libyahoo2 - this code's currently crashingWilmer van der Gaast2010-07-25-3/+6
| | | | | | | | | | because BitlBee ignores file transfers.
* | Allow change nicknames when moving contacts between groups. Also fixing aWilmer van der Gaast2010-07-25-1/+13
| | | | | | | | | | bug that caused many empty channel mode changes being sent.
* | Suppress GLib warning when trying to get a user's IP address while not anyWilmer van der Gaast2010-07-25-1/+1
| | | | | | | | | | IP information is available (yet).
* | Some support for changing group info on OSCAR.Wilmer van der Gaast2010-07-25-2/+10
| |
* | MSN supports having people in multiple groups and BitlBee does not. WhenWilmer van der Gaast2010-07-25-7/+23
| | | | | | | | | | | | moving people between groups, make sure they *are* removed from their old group.
* | Take the local address from the IM/IRC connection when setting up a listeningWilmer van der Gaast2010-07-25-4/+14
| | | | | | | | | | socket for file transfers.
* | Merge ui-fix (which includes killerbee (i.e. file transfers and libpurpleWilmer van der Gaast2010-07-24-6632/+15426
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | support)). ui-fix rewrites the complete IRC core, fixing many things that were broken/hacky/limited so far. The list is too long to include here, but http://wiki.bitlbee.org/UiFix has a summary, as does doc/CHANGES and of course the full revision history.
| * | Warn when adding an account twice. People are doing this a lot actually,Wilmer van der Gaast2010-07-24-1/+7
| | | | | | | | | | | | | | | and it's unlikely to be intentional.
| * | Account tag documentation update.Wilmer van der Gaast2010-07-24-4/+16
| | |
| * | Use the account tag in a few places and store it in the XML file as anWilmer van der Gaast2010-07-24-12/+11
| | | | | | | | | | | | | | | attribute, not as a setting (since all accounts have it anyway).
| * | Adding account tags as a way to 100% uniquely identify an account.Wilmer van der Gaast2010-07-24-3/+53
| | | | | | | | | | | | | | | | | | protocol(screenname) doesn't do this and is a little bit long. These will be used for nick_format and XML storage.
| * | Fixing chat_join() for OSCAR to return a struct groupchat* right away,Wilmer van der Gaast2010-07-24-2/+3
| | | | | | | | | | | | | | | without this we end up creating a #chat_000.
| * | Adding protocol-specific chatroom settings. First one to use this: AIMWilmer van der Gaast2010-07-24-9/+48
| | | | | | | | | | | | | | | chatrooms to use exchange numbers other than 4.
| * | Merging libyahoo2 fixes. Now completely up-to-date with libyahoo2 svnWilmer van der Gaast2010-07-24-2718/+3030
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | again, should try to keep it up a little bit better and submit my fixes upstream. This also adds code for Yahoo! file transfers but BitlBee isn't using it yet. (It doesn't seem to support flow control which makes this complicated.)
| | * | Inverting allow_reconnect logic on login failures. Automatic reconnects wereWilmer van der Gaast2010-07-24-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | getting im.bitlbee.org IP-banned sometimes. This fix keeps it happy for some time already.
| | * | Support buddy groups on Yahoo!Wilmer van der Gaast2010-07-24-3/+30
| | | |