source: doc/CHANGES @ 262a82b

3.5.1
Last change on this file since 262a82b was 262a82b, checked in by dequis <dx@…>, at 2017-01-30T20:44:32Z

BitlBee 3.5.1

  • Property mode set to 100644
File size: 60.3 KB
RevLine 
[fb4e9a3f]1This ChangeLog mostly lists changes relevant to users. A full log can be
[a70b7d7]2found in the git commit logs, for example you can try:
[fb4e9a3f]3
[a70b7d7]4https://github.com/bitlbee/bitlbee/commits/master
5
[262a82b]6Version 3.5.1:
7
8- purple:
9  * Fix crash on file transfer requests from unknown contacts. This was the
10    result of an incomplete fix in the previous release and may result in
11    remote DoS. Read the full security advisory at:
12    https://bugs.bitlbee.org/ticket/1282
13- After some investigation we decided to reclassify a crash fix from the
14  previous release as a security issue. Read the full security advisory at:
15  https://bugs.bitlbee.org/ticket/1281
16- Included help.txt in the release tarball, which was missing in the previous
17  release and resulted in adding python as a build dependency. The release
18  tarball of 3.5.1 does not require python.
19
20Finished 30 Jan 2017
21
[e2a5be7]22Version 3.5:
23
24- ui:
25  * "chat list": shows a list of existing server-side chatrooms. With some
26    protocols, this is often the only way to add new channels.
27    See 'help chat list' for details. (jgeboski)
28  * "plugins": lists the installed plugins and their versions (jgeboski)
29  * Add 'nick_lowercase' and 'nick_underscores' settings.
30  * "handle_unknown" can be set per-account, not just globally
31
32- jabber:
33  * Add "always_use_nicks" channel setting, for non-anonymous MUCs (trac #415)
34    See 'help set always_use_nicks' for possible side effects.
35  * Properly handle rejected file transfers
36  * Don't send parts in a chat if someone is still connected from other devices
37  * hipchat: support personal oauth tokens (manually generated ones)
38
39- twitter:
40  * Hide muted tweets / no-retweets, add mute/unmute commands (Flexo)
41  * Show full version of extended tweets (with slightly more than 140 chars)
42
43- purple:
44  * Support setting chat room topics (EionRobb)
45  * Support for extra groupchat settings. Shows an error if any required
46    ones are missing. Look for purple_ prefixed settings in "chan #... set"
47  * SIPE: persistent chats can be joined now, thanks to the "chat list" command
48    and the above ("purple_uri" channel setting)
49  * Fix a file transfer crash bug (Mainly affected telegram)
50  * Honor protocol flag to not require a password (used in hangouts, telegram)
51  * Set the contacts' nicks to the %full_name for a few whitelisted protocols
52    (hangouts, funyahoo, icq, line)
53  * LINE: added a hack to save its auth token, to avoid re-auth every time
54  * Show self-messages in groupchat backlogs (before join)
55
56- yahoo:
57  * Removed because they killed their old protocol on a two month notice.
58    Use EionRobb's funyahoo purple plugin, or better yet, don't use yahoo.
59
60- Stuff for enterprise deployments (all done by Sevas)
61  * Locked down accounts, useful when pregenerating user config files. An
62    account that is marked with the locked="true" attribute can't be removed
63    and its username/password can't be changed.
64  * Locked down settings. Same as above, but for individual account settings.
65  * AllowAccountAdd setting in bitlbee.conf, to disable adding new accounts.
66  * PAM and LDAP authentication backends (not compiled by default)
67
68- For packagers:
69  * Enabled debug symbols in non-debug builds, disabled stripping by default.
70    This is closer to the default behavior of autotools, and --debug=1 is mostly
71    to set the DEBUG macro and disable optimization.
72
73- For plugin devs:
74  * Plugins should now include an "init_plugin_info" function which will be used
75    for ABI version checking in the future. It's optional for now, but will be
76    enforced later. See the commit log of d28fe1c for details. (jgeboski)
77
[79b83da]78Finished 8 Jan 2017
[e2a5be7]79
[55259c4]80Version 3.4.2:
81- irc:
82  * Self-messages (messages sent by yourself from other IM clients), given
83    support by the IM protocols and your IRC client. See this for details:
84    https://wiki.bitlbee.org/SelfMessages
85  * IRCv3.1 support and part of 3.2: cap-3.2, sasl-3.2, multi-prefix,
86    away-notify, extended-join, userhost-in-names
87  * Send numeric errors when failing to join a channel, to not confuse clients
88  * Channel autojoins should be more reliable now.
89- jabber:
90  * Carbons (XEP-0280), for self-message support. It's not widely supported
91    by most public XMPP servers (easier if you host your own), but this will
92    probably change in the next few years. Thanks kormat for the original patch.
93  * Fix typing notifications between two bitlbee users or with gtalk users
94  * Remove facebook XMPP code, point people at bitlbee-facebook.
95  * Show groupchat kick/ban/leave reasons
96  * SASL ANONYMOUS (XEP-0175), for "guest" logins, see "help set anonymous"
97  * Hipchat: 'chat add hipchat "channel name"' now tries to guess the JID
98- purple:
99  * Fix problems remembering SSL certificates as trusted
100  * Fix /join #channel, which joined a differently named channel
101  * Fix crash when doing "chat with" with skypeweb
102  * Fix html entities appearing in some protocols
103  * Fix setting away states in jabber, which failed silently
104  * Implement notify_message UI op, to be able to show some error messages.
105- skype:
106  * Show all messages as groupchats since we can't tell which ones are private.
107  * This plugin is mostly-deprecated and mostly-broken but it's still useful
108    for p2p-based groupchats, which aren't delivered over newer protocols.
109    Everyone else should use the skypeweb purple plugin or msn instead.
110- msn:
111  * Minor tweaks. Faster login, better error reporting, fixed add/remove.
112    Still MSNP21. Disregard that "Next release!" in the previous release.
113- otr:
114  * Don't use NOTICE for user messages (revmischa)
115  * Fix crashes when using the jabber xmlconsole
116  * A few minor fixes: color multiline messages, filter incoming color codes.
117- Packaging:
118  * Show ./configure args in bitlbee -V, config.h and Makefile.settings
119  * Allow setting the plugin dir in bitlbee.conf, for NixOS (anderspapitto)
120  * Improved cross compiler support (gamaral)
121- Other important bugfixes:
122  * Fix potential crashes when leaving temporary channels
123  * Fix all sorts of crashing bugs when cancelling in-progress connections.
124
[d701547]125Finished 19 Mar 2016
[55259c4]126
[9613dec]127Version 3.4.1:
128- msn:
129  * Upgraded protocol to MSNP21, works again (dx)
130  * Contact list management, groupchats and skype username logins won't work.
131    Next release!
132- jabber:
133  * Add "hipchat" protocol, for smoother login. Takes the same username as
134    the official client. Note that unlike the 'hip-cat' branch, this doesn't
[2f99f23]135    preload channels. https://wiki.bitlbee.org/HowtoHipchat for details (dx)
[9613dec]136  * Fixed a bug when receiving topics set by people who left the channel (dx)
137  * Create fake users instead of showing "unknown participant" errors (dx)
138  * Gmail mail notifications support (Artem Savkov)
139  * Lowering xmpp presence priority on away (Artem Savkov)
140- twitter:
[2f99f23]141  * Show quoted tweets/RTs with comment inline (wilmer)
[9613dec]142  * Added "url" command, can be used to quote tweets (wilmer)
143  * Make replies to self work (wilmer)
144- Building documentation is now done with a python script (both 2.x/3.x work)
145  Asciidoc/xsltproc/xmlto are no longer build dependencies (dx)
146
[2f99f23]147Finished 16 Jun 2015
[9613dec]148
[a70b7d7]149Version 3.4:
[61d21e5b]150- First release pretty much fully prepared by dx instead of Wilmer. Just look
151  at the tightly structured changelog!
[a70b7d7]152- Main repository migrated from bzr to git
153- Some API/ABI changes. Recompiling third party plugins is required!
154- Important bugfixes:
155  * Fix memory leak when calling word_wrap() on groupchat messages (dx)
156  * Fix segfault after a file transfer is complete (dx)
157  * Fix bug where NSS would refuse to work in forkdaemon mode (dx)
158  * Fix several bugs with UTF8 nicks (dx)
159  * Fix some nasty deadlocks that appared mostly with libpurple (dx)
160- General changes:
161  * Add a 'pattern' parameter to the blist command, to filter it (tribut)
162  * Implemented /kick support, only supported by purple for now (jgeboski)
163  * Add a "special" state to show_users (mapped to the % prefix) (jgeboski)
164  * Improved support for cygwin, openbsd and darwin (jcopenha)
165  * Create temporary users instead of showing "Message from unknown
166    participant" (jgeboski)
167- purple:
168  * Local contact lists for gadugadu and whatsapp (dx)
169  * Add topic and name_hint to groupchats (seirl)
170  * Support for 'input' requests (such as telegram auth codes) (seirl)
171    Note that telegram-purple itself is rather unstable ATM, it may crash.
172- jabber:
173  * Handle compressed DNS responses in SRV lookup (jcopenha)
174  * Fix case sensitivity issues with JIDs (GRMrGecko, dx)
175  * Implement XEP-0203 style message timestamps (dx)
176  * Fix "Server claims your JID is X instead of Y" warnings (dx)
177  * Account-wide display_name setting, mostly for hipchat (dx)
178- twitter:
179  * Filter channels. Search by keyword/hashtag or a list of users (jgeboski)
180  * Fix bug in "reply" command which removed the first quote character (dx)
181  * Add "rawreply" command, like reply but bitlbee won't add @mention (WillP)
182  * Add support for The United States of America (favorite/fav aliases) (dx)
183  * Default show_old_mentions to 0 (dx)
184  * Start stream from last tweet on connect/reconnect (roger)
185- msn:
186  * Disabled module by default. The protocol we used (MSNP18) stopped working
187    last week. This is being worked on, but it's far from ready for release.
188- And lots of small bugfixes, too many to list here.
189
[61d21e5b]190Finished 25 Mar 2015
[fb4e9a3f]191
[6f6b6c7]192Version 3.2.2:
193- The OTR plugin now uses libotr 4.0 (AKA libotr5 in debian based distros)
194- Rejecting buddy requests in jabber won't accept them. Sorry for that.
195- Purple builds can now enable built in protocols when configuring, by
196  passing a parameter such as --jabber=1 to configure
197- You can now use /oper to change passwords with "ac x set -del password"
198- Complex unicode characters (non-BMP) now display correctly in twitter.
199- A few init / build script / pkg-config fixes. Added "install-systemd"
200  make target.
201
202Finished 5 Jul 2014
203
[08224f5]204Version 3.2.1:
205- Most important change: http_client updated to use HTTP/1.1, now required
206  by Twitter.
207- fill_by setting can now be used to fill a channel contacts *not* in a
208  certain group/on a certain account/etc. See "help set fill_by"
209- Added utf8_nicks setting which lets you use non-ASCII nicknames for your
210  contacts. Might not work with all IRC clients, use at your own risk!
211- Lots of bugfixes.
212
213Finished 27 Nov 2013
214
[a906b77]215Version 3.2:
216- By far the most important change, a thorough update to the Twitter
217  module:
218  * Now using Twitter API 1.1,
219  * which means it's now using JSON instead of XML,
220  * which means access to the streaming API (Twitter only, other Twitter
221    API services don't seem to have it). No more 60-second polls, #twitter
222    looks even more like real IRC now!
223  * Also, the streaming API means nice things like receiving DMs.
224  * show_ids, already enabled by default for a while, now uses hexa-
225    decimal numbers, which means a 256-entry backlog instead of just 100.
226  * Added a mode=strict setting which requires everything to be a command.
227    The "post" command should then be used to post a Tweet.
228- Jabber module bugfix that fixes connection issues with at least Google
229  Talk but reportedly some other servers (OpenFire?) as well.
230- SSL modules improved a little bit. GnuTLS module now supports SNI and
231  session caching. Shouldn't change much, but hopefully reduces latency
232  and bandwidth usage a little bit. 
233- A bunch of other fixes/improvements here and there.
234
[106f19c]235Finished 6 Jan 2013
[a906b77]236
[13df515]237Version 3.0.6:
238- Updated MSN module to speak MSNP18:
239  * Biggest change is that this brings MPOP support (you can sign in to
240    one account from multiple locations).
241  * Restored support for *sending* offline messages.
242  * Some support for federated (i.e. Yahoo!) contacts. (Only messages
243    might work, you won't see them online.)
244- Twitter:
245  * Work-around for stalls that are still happening sometimes.
246  * Added "favourite" command.
247  * "show_ids" enabled by default.
248- Handle see-other-host Jabber messages which should fix support for
249  MSN-XMPP.
250- Misc. fixes and improvements.
251
252Finished 14 Oct 2012
253
[00d6760]254Version 3.0.5:
255- SSL certificate verification (edit your bitlbee.conf to enable it).
256  Works only with GnuTLS!
257- OAuth2 support in Jabber module (works with Google Talk, Facebook and
258  MSN Messenger).
259- Support for ad-hoc Jabber groupchats. Just create a channel and start
260  inviting people, similar to how this works on other IM networks. Works
261  fine with GTalk, depends on a conference server being set up on other
262  networks.
263- Allow old-style Jabber login (non-SASL), this solves problems with some
264  old/buggy Jabber servers. (acc jabber set sasl off)
265- Use HTTPS for OAuth1 authentication traffic.
266- Awareness of Twitter's t.co URL lengt^Wshortening when checking message
267  length.
268- Fixed identi.ca OAuth support. OAuth will now always be used for both
269  Twitter and identi.ca accounts.
270- Fix nick_format=%full_name with libpurple.
271- Instead of "protocol(handle)", use the account tags introduced in 3.0
272  when root wants to refer to an account (in log messages, queries, etc.)
273- Many small bugfixes, improvements, etc.
274
[c59f594]275Finished 18 Feb 2012
[00d6760]276
[df98ee8]277Version 3.0.4:
278- Merged Skype support. This used to be a separate plugin, and it still is,
279  but by including it with BitlBee by default it will be easier to keep it
280  in sync with changes to BitlBee.
281- Fixed a file descriptor leak bug that may have caused strange behaviour
282  in BitlBee sessions running for a long time.
283- Now fetches Twitter mentions as well if the "fetch_mentions" account
284  setting is enabled.
285- With t.co now all over Twitter, show the original (but truncated) URL
286  between <brackets>.
287- Fixed MSN Messenger login issues ("timeout" while fetching buddy list).
288- Another (related) GnuTLS compatibility fix (now 2.13+?).
289
290Finished 4 Dec 2011 (Exactly 6 years since 1.0!)
291
[52a735e]292Version 3.0.3:
293- Fixed Twitter compatibility. (The API call used to get the following list
294  was deprecated.)
295- Twitter: Enable the show_ids setting to assign a two-digit short ID to
296  recent tweets to use for retweets and replies (so you can RT/reply to more
297  than just a person's last message).
298- Some other Twitter fixes/improvements.
299- "otr reconnect" command and some other fixes.
300- GnuTLS 2.12 compatibility fix.
301- Include "FLOOD=0/9999" in the 005/ISUPPORT line at login to hint the IRC
302  client that rate limiting is not required. (Next step: Get IRC clients to
303  parse it.)
304- Other stuff too small to mention.
305
306Finished 12 Jun 2011
307
[f68fd5f]308Version 3.0.2:
309- Fixed MSN login issues with @msn.com accounts.
310- /CTCP support: You can CTCP VERSION Jabber contacts, and CTCP NUDGE MSN
311  contacts. More may come later, ideas are welcome.
312- By default, leave Twitter turned on for libpurple builds.
313- Allow using /OPER to identify/register as well. (Password security hack.)
314- Fixed proxy support with libpurple.
315- Some minor changes/fixes.
316
317Finished 7 Mar 2011
318
[bdedc14]319Version 3.0.1:
320- Fixed some bugs that were found only after releasing 3.0, including
321  Jabber contacts never going offline, MSN login issues, compilation
322  issues on some non-Linux systems, a fairly big memory leak in the MSN
323  SOAP code, etc...
324- Better handling of multiple control channels and set private=false.
325- Using login.icq.com for ICQ logins again since AOL sold ICQ so it
326  doesn't live on the AIM servers anymore.
327- Fixed ability to join password-protected Jabber rooms.
328- Time out if logging into an account takes too long.
329- Fixed NSS SSL module.
330- Support for server-side Gadu-Gadu contact lists (via libpurple, there's
331  still no native gg support).
[b11b781]332- Allow omitting password when using "account add", the password can be
333  entered using /OPER to prevent echoing to screen and logs.
[bdedc14]334
[b11b781]335Finished 24 Nov 2010
[bdedc14]336
337Version 3.0:
[ecae65f]338- Important: This version drops backward compatibility with the file format
339  used for user settings in versions before 1.2. If you're upgrading from
340  very old BitlBee versions (like 1.0.x), you'll have to recreate your
341  BitlBee account - or use an 1.2.x BitlBee once to do the conversion.
[262bc7e]342- Rewrote the IRC core, which brings:
343  * Support for multiple (control) channels, so you can have one channel per
344    buddy group, per IM account/protocol, or for example a &offline with all
345    offline contacts. See "help channels" for information on how to use this.
346  * You can also leave and rejoin all channels. Being in &bitlbee is no
347    longer required.
348  * Now you can start groupchats by just joining a new channel and inviting
349    contacts. (The "chat with" command still works as well.)
350  * You can change your nickname, whenever you want.
351  * Root commands:
352    + To hopefully resolve confusion about the "account set" syntax, the
353      ordering was changed slightly: "account set acc/setting value"
354      becomes "account acc set setting value". Obviously the same order
355      should now be used for other account subcommands.
356    + Shortcuts: Instead of "account list" you can say "acc li".
357  * /whois shows idle/login times of your contacts when available.
358  * paste_buffer (previously known as buddy_sendbuffer) now works for chats
359    as well.
360  * The nick_source setting was replaced with a nick_format setting, which
361    looks more or less like a format string, and lets you tweak how nicknames
[bf2ebd8]362    for contacts are generated in more detail. It also tries to convert non-
363    ASCII characters (i.e. accents) properly.
[262bc7e]364  * A per-channel show_users setting lets you configure exactly which kinds
365    of contacts (online/away/offline) should show up in a channel and what
[bf2ebd8]366    modes (none/voice/etc) they should have. Like show_offline, but together
367    with other new features it can for example create an &offline channel
368    with just offline contacts.
[262bc7e]369  * If you connect (and identify) to a BitlBee server you're already
370    connected to, you can take over the existing session instead of starting
371    a new one.
372  * More correct validation of channel names: They can contain pretty much
373    any character, unlike nicknames.
374- Support for using libpurple instead of BitlBee's built-in IM protocol
375  modules. This can be enabled by passing --purple=1 to the configure script.
376  * This adds support for many more IM protocols to BitlBee.
377  * And new functionality to existing protocols.
378  * This is and will always be optional and using it on public servers is
379    *not* recommended. It should be pretty stable, but costs more RAM/etc.
[bf2ebd8]380  * Switching to libpurple should be pretty transparent. See "help purple"
381    for a list of supported protocols (works only in libpurple-enabled
382    binaries).
[327af51]383- Rewritten MSN module, implementing MSNP15 instead of the old MSNP8:
384  * MSNP8 support from MSN was getting pretty unreliable. There were issues
[2af3e23]385    with remembering display names and adding contacts/auth requests (or
386    even contacts silently getting blocked!). This upgrade should fix all
387    of that.
[327af51]388  * Support for sending offline messages.
389  * Support for setting and reading status messages.
[7c5a3be5]390- Integrated the bitlbee-otr branch in a mostly non-intrusive way. Since
391  this is not end-to-end it should *not* be enabled on public servers.
392  Distro packagers are requested to offer OTR as a separately installable
393  plugin. (Compile with --otr=plugin) Please do not enable it by default as
394  there is no easy way to disable OTR once the plugin is loaded/built in.
[262bc7e]395- Support for file transfers, in and out. /DCC SEND a file to a contact and
396  it becomes a file transfer, and incoming file transfers become /DCC SENDs
397  to you. Note that this is mostly useful when combined with libpurple, as
398  only the Jabber native protocol module currently supports file transfers.
[bf2ebd8]399- Updated Yahoo! module to be in sync again with libyahoo2. This mostly
400  fixes issues with authorization requests.
[ecae65f]401- Show if a contact is mobile or not. See "help set mobile_is_away".
402- Easier handling of XMPP chatroom invitations.
403- The chatroom mode of the Twitter module is now enabled by default, since
404  this was by far the most popular. To disable it, see "help set mode".
405- Added some Twitter-specific commands that can only be used in the Twitter
406  window. Most important addition: Retweets. See "help set commands".
407- Removed some ancient account/nick migration scripts and added one for
408  easier switching from Pidgin and other libpurple-based clients to BitlBee.
409- Many bug fixes in both the core and IM modules, small feature enhancements
410  and other minor changes.
[262bc7e]411
[7c5a3be5]412Finished 22 Oct 2010
[262bc7e]413
[00540d4]414Version 1.2.8:
415- Now always using the AIM-style authentication method for OSCAR connections,
416  even when connecting to ICQ. This solves login issues some people were
417  having. (If you have problems, try changing the old_icq_auth setting.)
418- Twitter:
419  * Allow changing the Twitter API base URL so the module can also be used
420    for identi.ca or any other compatible network.
421  * Fetch the full list of Twitter contacts instead of slowly adding all
422    contacts as they post a message.
423  * Fixed message length counting.
424  * Allow following/unfollowing people using the usual add/remove commands.
425  * Better error reporting.
426- Added a user_agent setting to the Jabber module to get around artificial
427  client restrictions.
428- Allow nick changes (although only before register/identify).
429- Some more minor bugfixes/etc.
430
431Finished 4 Jul 2010
432
[df1ae622]433Version 1.2.7:
434- Fixed problems with MSN Messenger authentication. ("Could not parse
435  Passport server response")
436- Fixed broken typing notifications when talking to GTalk contacts.
437- Fixed an issue with non-anonymous Jabber chatrooms polluting the nick
438  namespace, sometimes generating odd warning messages.
439- Restored ability to start groupchats on ICQ.
440- Added show_offline setting that will also show offline contacts in the
441  control channel.
442- OAuth support for Twitter: This means the module will keep working after
443  June (this also changes "via API" under your tweets into "via BitlBee").
444
445Finished 15 May 2010
446
[db57e7c]447Version 1.2.6a:
448- Fixed a typo that renders the Twitter groupchat mode unusable. A last-
449  minute change that came a few minutes late.
450
451Finished 19 Apr 2010
452
[c0417e8]453Version 1.2.6:
[b6190ca]454- Native (very basic) support for Twitter, implemented by Geert Mulders.
455  Currently supported are posting tweets, reading the ones of people you
456  follow, and sending (not yet receiving!) direct messages.
[c0417e8]457- Fixed format of status messages in /WHOIS to improve IRC client
458  compatibility.
459- Show timestamps of offline messages/channel backlogs.
460- Allow saving MSN display names locally since sometimes this stuff breaks
461  server-side. (Use the local_display_name per-account setting.)
462- Suppress empty "Headline:" messages for certain new XMPP broadcast
463  messages.
464- Better handling of XMPP contacts with multiple resources on-line. Default
465  behaviour now is to write to wherever the last message came from, or to
466  the bare JID (usually becomes a broadcast) if there wasn't any recent msg.
[f4bcc22]467- Added a switchboard_keepalives setting which should solve some issues with
468  talking to offline MSN contacts. (Although full support for offline
469  messages is not ready yet!)
[c0417e8]470- The usual misc. bug fixes.
471
[f4bcc22]472Finished 19 Apr 2010
[c0417e8]473
[7e2b593]474Version 1.2.5:
475- Many bug fixes, including a fix for MSN login issues, Jabber login timing
476  issues, Yahoo! crashes at login time with huge contact lists,
477- Avoid linking in a static version of libresolv now that glibc has all
478  relevant functions available in the dynamic version.
479- Improved away state code and added the ability to set (non-away) status
[a1ac227]480  messages using "set status" (also possible per account) and see them in
481  blist and /whois output.
[7e2b593]482- Added a post-1.2 equivalent of encode/decode to quickly encrypt/decrypt
483  passwords in a way that BitlBee can read them.
484- Allow using the full name for generating nicknames, instead of just the
485  handle. This is especially useful when using the Facebook XMPP server.
486- Auto reconnect is now enabled by default since all protocols can properly
487  detect cases where auto reconnect should be avoided (i.e. concurrent
488  logins).
[f9928cb]489- Changed the default resource_select setting which should reduce message
490  routing issues on Jabber (i.e. messages going someone's phone instead of
491  the main client).
[7e2b593]492
[c0417e8]493Finished 17 Mar 2010
[a1ac227]494
[3650088]495Version 1.2.4:
496- Most important change (and main reason for releasing now): Upgraded Yahoo!
497  module to a newer version to get it working again.
498- join_chat command replaced with the much better chat command:
499  * Similar to how account replaced login/slist/logout. Add a chatroom once,
500    then just /join it like any other room. Also automatic joining at login
501    time is now possible.
502  * Note that the old way of starting groupchats (/join #nickname) is now
503    also deprecated, use "chat with" instead.
504  * See "help chat" and "help chat add" for more information.
505- Rewrote bitlbee.conf parser to be less dumb.
506- Fixed compatibility (hopefully) with AIM mobile messages, certain kinds
507  of Google Talk chatrooms.
508- Fixed numerous stability/reliability bugs over the last year.
509
510Finished 17 Oct 2009
511
[ba3a8a5]512Version 1.2.3:
513- Fixed one more flaw similar to the previous hijacking bug, caused by incon-
514  sistent handling of the USTATUS_IDENTIFIED state. All code touching these
515  variables was reviewed and should be correct now.
516
517Finished 7 Sep 2008
518
[b9e2539]519Version 1.2.2:
520- Security bugfix: It was possible to hijack accounts (without gaining access
521  to the old account, it's simply an overwrite)
522- Some more stability improvements.
523- Fixed bug where people with non-lowercase nicks couldn't drop their account.
524- Easier upgrades of non-forking daemon mode servers (using the DEAF
525  command).
526- Can be cross-compiled for Win32 now! (No support for SSL yet though, which
527  makes it less useful for now.)
528- Exponential backoff on auto-reconnect.
529- Changing passwords gives less confusing feedback ("password is empty") now.
530
531Finished 26 Aug 2008
532
[bfe7caa]533Version 1.2.1:
534- Fixed proxy support.
535- Fixed stalling issues while connecting to Jabber when using the OpenSSL
536  module.
537- Fixed problem with GLib and ForkDaemon where processes didn't die when
538  the client disconnects.
539- Fixed handling of "set charset none". (Which pretty much breaks the account
540  completely in 1.2.)
[5ecf96b]541- You can now automatically identify yourself to BitlBee by setting a server
542  password in your IRC client.
543- Compatible with all crazy kinds of line endings that clients can send.
[fb4e9a3f]544- Changed root nicknames are now saved.
545- Added ClientInterface setting to bind() outgoing connections to a specific
546  network interface.
547- Support for receiving Jabber chatroom invitations.
548- Relaxed port restriction of the Jabber module: added ports 80 and 443.
549- Preserving case in Jabber resources of buddies, since these should
550  officially be treated as case sensitive.
551- Fully stripping spaces from AIM screennames, this didn't happen completely
[e88fe7da]552  which severely breaks the IRC protocol.
[fb4e9a3f]553- Removed all the yellow tape around daemon mode, it's pretty mature by now:
554  testing.bitlbee.org serves all (~30) SSL users from one daemon mode
555  process without any serious stability issues.
556- Fixed GLib <2.6 compatibility issue.
557- Misc. memory leak/crash fixes.
[bfe7caa]558
[d048ffc]559Finished 24 Jun 2008
[bfe7caa]560
[8c2008e]561Version 1.2:
[a5ac9f9]562- Added ForkDaemon mode next to the existing Daemon- and inetd modes. With
563  ForkDaemon you can run BitlBee as a stand-alone daemon and every connection
564  will run in its own process. No more need to configure inetd, and still you
565  don't get the stability problems BitlBee unfortunately still has in ordinary
566  (one-process) daemon mode.
567- Added inter-process/connection communication. This made it possible to
568  implement some IRC operator features like WALLOPs, KILL, DIE, REHASH and
569  more.
570- Added hooks for using libevent instead of GLib for event handling. This
571  should improve scalability, although this won't really be useful yet because
572  the one-process daemon mode is not reliable enough.
573- BitlBee now makes the buddy quits when doing "account off" look like a
574  netsplit. Modern IRC clients show this in a different, more compact way.
[7df5a08]575  (This can be disabled if your client doesn't support this.)
[670204f]576- GLib 1.x compatibility was dropped. BitlBee now requires GLib 2.4 or newer.
577  This allows us to use more GLib features (like the XML parser). By now GLib
578  1.x is so old that supporting it really isn't necessary anymore.
[a5ac9f9]579- Many, many, MANY little changes, improvements, fixes. Using non-blocking
[d07c3a8]580  I/O as much as possible, replaced the Gaim (0.59, IOW heavily outdated)
581  API, fixed lots of little bugs (including bugs that affected daemon mode
582  stability). See the bzr logs for more information.
583- One of the user-visible changes from the API change: You can finally see
584  all away states/messages properly.
585- Added units tests. Test coverage is very minimal for now.
586- Better charset handling: Everything is just converted from/to UTF-8 right
587  in the IRC core, and charset mismatches are detected (if possible) and the
588  user is asked to resolve this before continuing. Also, UTF-8 is the default
589  setting now, since that's how the world seems to work these days.
[ec0355f]590- One can now keep hashed passwords in bitlbee.conf instead of the cleartext
591  version.
[9829ae0]592- Most important change: New file format for user data (accounts, nicks and
593  settings). Migration to the new format should happen transparently,
594  BitlBee will read the old files and once you quit/save it will save in the
595  new format. It is recommended to delete the old files (BitlBee doesn't do
596  this automatically, it will just ignore them) since they won't be used
597  anymore (and since the old file format is a security risk). Some advantages
598  of this file format switch:
599  * Safer format, since the identify-password is now salted before generating
600    a checksum. This way one can't use MD5 reverse lookup databases to crack
601    passwords. Also, the IM-account passwords are encrypted using RC4 instead
602    of the simple obfuscation scheme which BitlBee used so far.
603  * Easier to extend than the previous format (at least the .nicks format was
604    horribly limited).
605  * Nicknames for buddies are now saved per-account instead of per-protocol.
606    So far having one buddy on multiple accounts of the same protocol was a
607    problem because the nicks generated for the two "instances" of this buddy
608    were very unpredictable.
609    NOTE: This also means that "account del" removes not just the account,
610    BUT ALSO ALL NICKNAMES! If you're changing IM accounts and don't want to
611    lose the nicknames, you can now use "account set" to change the username
612    and password for the existing connection.
613  * Per-account settings (see the new "account set" command).
[c7d0f41]614- A brand new Jabber module. Besides the major code cleanup, it also has
615  has these new features:
616  * Pretty complete XMPP support: RFC3920, RFC3921 plus a number of XEPs
[7df5a08]617    including XEP45, XEP73 and XEP85. (See http://www.xmpp.org/ for what all
618    these things mean exactly.) Privacy lists are not supported for obvious
[c7d0f41]619    reasons.
620  * This complete support also includes TLS and SASL support and SRV record
621    lookup. This means that specifying a server tag for connections should
622    (almost) never be necessary anymore, BitlBee can find the server and can
623    automatically convert plaintext connections to TLS-encrypted ones.
[7df5a08]624  * XEP45: Jabber chatroom support!
[c7d0f41]625  * XEP85 means typing notifications. The older XEP22 (still used by some
626    clients including Gaim <2.0) is not supported.
627  * Better handling of buddies who have more than one resource on-line. As
628    long as one resource is on-line (and visible), BitlBee will show this.
629    (The previous module didn't keep track of resources and sent an offline
630    event as soon as any resource disappears.)
631  * You can now set your resource priority.
632  * The info command now gives away state/message information for all
633    resources available for that buddy. (Of course this only works if the
634    buddy is in your contact list.)
[221a273]635  * An XML console (add xmlconsole to your contact list or see "help set
636    xmlconsole" if you want it permanently).
[d07c3a8]637- The Yahoo! module now says it supports YMSG protocol version 12, which will
638  hopefully keep the Yahoo module working after 2008-04-02 (when Yahoo! is
639  dropping support for version 6.x of their client).
640- MSN switchboard handling changes. Hopefully less messages will get lost now,
641  although things are still not perfect.
[9829ae0]642
[6612cc9]643Finished 17 Mar 2008
[8c2008e]644
645Version 1.0.4:
646- Removed sethostent(), which causes problems for many people, especially on
647  *BSD. This is basically the reason for this release.
648- "allow" command actually displays the allow list, not the block list.
649- Yahoo away state/msg fix.
650- Don't display "Gender: Male" by default if nothing's filled in (OSCAR
651  "info" command)
652- Fixed account cleanup (possible infinite loop) in irc_free().
653- Fixed configdir error message to not always display the compile-time
654  setting.
655
656Finished 20 Aug 2007
657
[670204f]658Version 1.0.3:
659- Fixed ugliness in block/allow list commands (still not perfect though, the
660  list is empty or not up-to-date for most protocols).
661- OSCAR module doesn't send the ICQ web-aware flag anymore, which seems to
662  get rid of a lot of ICQ spam.
663- added show_got_added(), BitlBee asks you, after authorizing someone, if you
664  want to add him/her to your list too.
665- add -tmp, mainly convenient if you want to talk to people who are not in
666  your list.
667- Fixed ISON command, should work better with irssi now.
668- Fixed compilation with tcc.
669- Fixed xinetd-file.
670- Misc. (crash)bug fixes, including one in the root command parsing that
671  caused mysterious error messages sometimes.
672
673Finished 24 Jun 2006 (Happy 4th birthday, BitlBee!)
674
675Version 1.0.2:
676- Pieces of code cleanup, fixes for possible problems in error checking.
677- Fixed an auto-reconnect cleanup problem that caused crashes in daemon mode.
678- /AWAY in daemon mode now doesn't set the away state for every connection
679  anymore.
680- Fixed a crash-bug on empty help subjects.
681- Jabber now correctly sets the current away state when connecting.
682- Added Invisible and Hidden to the away state alias list, invisible mode
683  should be pretty usable now.
684- Fixed handling of iconv(): It's now done for everything that goes between
685  BitlBee and the IRC client, instead of doing it (almost) every time
686  something goes to or come from the IM-modules. Should've thought about
687  that before. :-)
688- When cleaning up MSN switchboards with unsent msgs, it now also says which
689  contact those messages were meant for.
690- You can now use the block and allow commands to see your current block/
691  allow list.
692
693Finished 1 Apr 2006
694
695Version 1.0.1:
696- Support for AIM groupchats.
697- Improved typing notification support for at least AIM.
698- BitlBee sends a 005 reply when logging in, this informs modern IRC clients
699  of some of BitlBee's capabilities. This might also solve problems some
700  people were having with the new control channel name.
701- MSN switchboards are now properly reset when talking to a person who is
702  offline. This fixes problems with messages to MSN people that sometimes
703  didn't arrive.
704- Fixed one of the problems that made BitlBee show online Jabber people as
705  offline.
706- Fixed problems with commas in MSN passwords.
707- Added some consts for read-only data, which should make the BitlBee per-
708  process memory footprint a bit smaller.
709- Other bits of code cleanup.
710
711Finished 14 Jan 2006
712
[2095c57]713Version 1.0:
714- Removed some crashy debugging code.
[21d09ac]715- QUIT command now works before logging in. (Mainly an RFC-compliancy fix.)
[ef6c6a7]716- Hopefully slightly clearer handling of buddy add requests.
[834ff44]717- set buddy_sendbuffer_delay now also supports milisecond precision.
[e3a0e7e]718- Renamed #bitlbee to &bitlbee to avoid confusion with the channel on OFTC.
[0b2e843]719- Reviewed the xinetd file and installation instructions.
720- HTML stripping is configurable again.
721- Quit messages (at least on crashes) should appear again.
[43e3368]722- Cleaned up some unnecessary code in the Jabber module, and implemented
723  handlers for headline messages (which allows you to use RSS-to-Jabber
724  gateways).
[ef53ba8]725- Lowered the line splitting limit a bit to fix data loss issues.
726- The $proto($handle) format used for messages specific to one IM-connection
727  now only include the ($handle) part when there's more than one $proto-
728  connection.
729- Fix for a crash-bug on broken Jabber/SSL connections.
[a40a2c2]730- Incoming typing notifications now also come in as CTCP TYPING messages, for
731  better consistency. Don't forget to update your scripts!
732- AIM typing notifications are supported now.
[027d2eb]733- Jabber module only accepts ports 5220-5229 now, to prevent people from
734  abusing it as a port scanner. We aren't aware of any Jabber server that
735  runs on other ports than those. If you are, please warn us.
[40657a3]736- Send flood protection can't be enabled anymore. It was disabled by default
737  for a good reason for some time already, but some package maintainers
738  turned it back on while it's way too unreliable and trigger-happy to be
739  used.
740- Removed TODO file, the current to-do list is always in the on-line bug
741  tracking system.
742- Fixed a potential DoS bug in input handling.
[2095c57]743
[40657a3]744Finished 4 Dec 2005
[2095c57]745
[b7d3cc34]746Version 0.99:
747- Fixed memory initialization bug in OSCAR module that caused crashes on
748  closing the connection.
749- Most likely fixed the bug that caused BitlBee to use 100% CPU time in
750  some situations.
751- Outgoing MSN typing notifications are now understood correctly by the
[e88fe7da]752  original MS Mac/Windows clients (again).
[b7d3cc34]753- Added "account add $protocol" to the documentation, got rid of a lot
754  of over-markup (i.e. overuse of bold-tags), reviewed some other parts.
755- Small changes to help.xsl to fix small flaws in the help.txt formatting.
756- Messaging yourself now doesn't make irssi or mIRC crash anymore.
757
758Finished 3 Nov 2005
759
760Version 0.93:
761- &quot; is now correctly converted to " instead of '.
762- Code cleanup in OSCAR module.
763- Some changes for better RFC-compliancy.
764- It's now possible to specify an alternate Jabber server.
765- bitlbee_save() now also checks the return value of fclose(), which might
766  solve more problems with lost account data.
767- Fixed a file descriptor leak in bitlbee.c.
768- Signedness fixes (mainly to keep GCC4 happy).
769- Away messages are now sent correctly to most ICQ clients.
770- BitlBee knows now which connection sends HTML, so it will strip HTML
771  automatically, "set html strip" is no longer necessary. Also, outgoing HTML
772  is escaped correctly.
773- info-command works for AIM-connections too now.
774- /notices to users will be sent as auto-away replies.
775- Messages about a connection now also mention a handle, for people who have
776  multiple accounts in use of the same protocol.
777- Examples are back in help.txt.
778
779Finished 31 Oct 2005
780
781Version 0.92:
782- Fixed some formatting issues with the help.txt XSL-sheet.
783- Moved the polling of the IRC connections to glib instead of a separate
784  select().
785- Added ctags generation to the Makefiles.
786- Sending a CTCP TYPING message to a user in your buddy list now sends a
787  typing notification to that person, if the protocol supports it. You
788  probably want to write/use a script for your IRC client to do this.
789- A dash is no longer considered a lowercase underscore in nicknames.
790- CTCP's to buddies no longer alter their private/non-private state.
791- Clean shutdown (with saving settings) on SIGTERM.
792- Fixed a crash on connecting to unreachable Jabber/SSL servers.
793- On ICQ, offline messages are now requested after receiving the buddy
794  list. This should get rid of the "Message from unknown OSCAR handle"
795  messages on login.
796- The linked list of buddies/nicks is now always sorted, which makes the
797  blist output a bit more useful.
798- Fixed a crash on renaming NickServ. (There's no reason to do this, but
799  still crashing isn't really how BitlBee should tell you that. ;-)
800- Now the message about the "new" ICQ server-side buddy lists is only
801  displayed when the server-side list is still empty.
802- The Yahoo! markup language stripper is now less likely to strip things
803  that shouldn't be stripped.
804- Working around a shortcoming in the Yahoo! cleanup code that didn't
805  cause any serious problems in previous versions, but got pretty nasty
806  (100% CPU time usage) now with everything in the glib main loop.
807- Fixed a bug in http_encode that might have caused buffer overflows
808  (although not likely to be exploitable) when trying to encode strings
809  with non-ASCII characters.
810- Fixed AIM screenname handling on ICQ connections.
811- When blocking someone, the MSN module now closes the conversation you're
812  having with him/her (if any) so he/she can't continue talking to you
813  (for as long as the conversation lasts).
814- Away messages are only sent when messaging someone outside the control
815  channel. (And now also when the user is offline instead of just away.)
816- Moved charset conversion in serv_buddy_rename() to the right place so
817  bogus changes are always detected now.
818- iso8859-1 is now the default charset because -15 caused some problems
819  and because -1 is enough for most people anyway.
820- Fixed crashes on attempting to add a buddy (or do other things) on
821  connections that are still initializing.
822- Added support for server-side notifies using the WATCH command.
823- IRC_MAX_ARGS is dead, at least for IRC commands.
824- Fixed a bug that made BitlBee crash on failing fresh MSN switchboard
825  connections.
826- Fixed an invisibility bug in the MSN code that handled transfers to
827  other servers in the middle of a session.
828- Newline stripping added to prevent newline-in-friendlyname attacks.
829  (Which allowed remote people to make BitlBee send raw custom IRC lines.)
830
831Finished 23 Feb 2005
832
833Version 0.91:
834- Full support for ICQ server-side contact lists!
835  NOTE: BitlBee now ignores your client-side contact list. If you want to
836        import your ICQ contact list, use the import_buddies command.
837- Added the import_buddies command for upgrading purposes.
838- Added support for OpenSSL.
839- Fixed one major problem with the daemon mode by getting rid of the global
840  IRC structure.
841- Documentation fixes. help.txt is now generated from XML. Also updated the
842  installation manual.
843- Made the quickstart up-to-date. (By Elizabeth Krumbach)
844- Some bitlbeed additions. (By Marcus Dennis)
845- info-command support for Jabber, MSN, Yahoo! and a more verbose info-reply
846  for ICQ. (By Frank Thieme)
847- Support for Jabber over SSL.
848- nick_get() appends a _ on duplicates instead of chopping off the last
849  character.
850- Got rid of an unused piece of code that caused crashes.
851  (oscar.c:gaim_parse_clientauto)
852- When splitting long messages into 450-char chunks, BitlBee now tries not
853  to cut off in the middle of a line.
854- Added a warning when the user specifies an unknown OSCAR server.
855- Removed GLib 2.x dependency, BitlBee will work with GLib 1.x again.
856- Improved strip_html(), now less likely to strip non-HTML things.
857- An invalid account-command will now display an error message.
858- Fixed a bug that caused crashes when /CTCP'ing a groupchat channel.
859- Hopefully better Unicode/non-ASCII support for ICQ.
860- Fixed MSN connection crash on non-ASCII characters in screenname.
861- Added some missing charset conversion calls. (serv_got_crap,
862  serv_buddy_rename)
863- "account off" without extra arguments now logs off all connections.
864- Fixed a crash-bug on disconnecting Yahoo! connections before they're fully
865  connected.
866- Fixed a bug in helpfile handling which sometimes caused crashes in daemon
867  mode.
868- block and allow commands work with just a nick as an argument again.
869- Working around a crash on some probably invalid Yahoo! packets.
870- Fixed a possible double free() on shutdown in irc_free().
871- Talking to ICQ people on AIM and vice versa and talking to people with
872  @mac.com accounts now possible.
873- Low ASCII chars are now stripped from away-messages so the Jabber module
874  won't barf on BitchX and lame-script away messages anymore.
875
876Finished 25 Sep 2004
877
878Version 0.90a:
879- Fixed the Yahoo! authentication code.
880
881Finished 28 Jun 2004
882
883Version 0.90:
884- A complete rewrite of the MSN module. This gives BitlBee the following
885  new features/improvements:
886  * You can now start groupchats with MSN people without having to send them
887    a bogus message first.
888  * People who are in your MSN block/allow list, but not in your contact
889    list, shouldn't show up in your BitlBee buddy lists anymore.
890  * Passport authentication shouldn't lock up the whole program for a couple
891    of seconds anymore. Additionally, it should also work behind proxies now.
892  * Better recognition of incoming file transfers; they're now recognized
893    when coming from non-English MS Messenger clients too.
894  * Fixed a problem with MSN passwords with non-alphanumeric characters.
895  * Mail notification support (also for Yahoo!)...
896  * Parsing of maintenance messages (ie "Server is going down in x minutes").
897  * Hopefully more stability.
898- Changes in the OSCAR module:
899  * Better reading of ICQ-away-states.
900  * Lots of cleanups.
901- Yahoo! module:
902  * Fixed authentication on 64-bit machines. (Patch from Matt Rogers)
903  * Better stripping of markup tags.
904- Lots of cleanup in all IM-modules.
905- Added support for using libnss instead of libgnutls.
906- Reverse hostname lookups work on IPv6 sockets too now. (And don't crash
907  the program anymore.)
908- Fixed a little problem with identifying right after registering a nick.
909- Restored complete proxy support and added a proxy setting to the conffile.
910- BitlBee can now tell you when people in your buddy list change their
911  "friendly name".
912- Instead of an account number, you can also specify the protocol name or
913  (part of) the username as an account identification with commands like
914  "account on", "add", etc.
915- BitlBee remembers what connection a question (i.e. authorization request)
916  belongs to and cleans it up when the connection goes down; this fixes
917  (one of) the last known crash bugs.
918- Plus some other changes in question management. (The query_order setting
919  is one of them. The default behaviour changed a bit, for more information
920  please read "help set query_order".)
921- Also fixed a memory management bug in the question code which caused some
922  crashes.
923- Optimized some nick handling functions and added a hash of all the users
924  to speed up user_find() a bit (especially good for people with large
925  buddy and notify lists).
926- Lots of changes for the Win32 port (see http://jelmer.vernstok.nl/).
927- Added the drop-command.
928- Fixed small problem with versions of sed which don't support the +
929  "operator" (the BSD version, for example, even though the operator is
930  documented properly in the re_format manpage...).
931- Added the default_target setting.
932- Added a CenterICQ2BitlBee conversion script.
933- Put back the evaluator for "set charset" (which got lost somewhere between
934  0.84 and 0.85), so an incorrect charset will be rejected again.
935- ISON now (A) gives one single reply and (B) also replies when none of the
936  persons asked for are on-line.
937- Using GConv instead of iconv now.
938- Incoming messages larger than 450 characters are now split into parts
939  before sending them to the user.
940- Fixed a bug in irc_exec() which could crash the program when some commands
941  were called with too little arguments.
942- Fixed a dumb NULL pointer dereference in the JOIN command.
943- Added rate limiting to bitlbeed. (Against server hammering)
944- Added handling of CTCP PINGs (yet another self-ping used by some IRC
945  clients...)
946- Added bitlbee_tab_completion.pl.
947- Removed the vCard handling code from Jabber because it's (A) not used and
948  (B) had a possible format string vulnerability.
949- Got rid of strcpy() in account.c. (Thanks to NETRIC for reporting these two
950  problems.)
951- ISO8859-15 is now the default charset.
952
953Finished 21 May 2004
954
955Version 0.85a:
956- Fixed an authentication problem with logging into some MSN accounts.
957- Removed a non-critical warning message from the ICQ servers when logging
958  in with an empty contact list.
959- Fixed reading the [defaults] section of bitlbee.conf.
960- The last newline in outgoing messages when using the buddy_sendbuffer is
961  now removed correctly.
962- Yahoo! colour/font tag stripping now actually works.
963- Fixed compilation on *BSD and some Linux architectures.
964
965Finished 24 Mar 2004
966
967Version 0.85:
968- Users can specify alternate configuration files/directories at runtime
969  now.
970- Rename now doesn't choke on name changes with only case changes anymore.
971- Imported the daemon patch into the main source tree. The daemon mode is
972  still experimental, this just eases maintenance. This daemon patch brings
973  a lot of features, including (as the name says) a real daemon mode and
974  also buffering of the data sent to the user, and flood protection.
975- Strips font and colour codes from Yahoo! messages.
976- Support for groupchats on Yahoo!
977- Fixed removing Yahoo! buddies from a different group than "Buddies".
978- Jabber presence packets with error messages are interpreted correctly now.
979  (They used to be parsed as a signin.)
980- bitlbee_save() checks return values from fprintf() and writes to tempfiles
981  first to make sure no old files get lost when there's a write error.
982- ICQ buddies are added all at once instead of once at a time. This should
983  solve problems with huge buddy lists.
984- Made the client pinging timings configurable. (Without requiring
985  recompilation)
986- MSN and Yahoo flag the connection as "wants_to_die" when they're logged
987  off because of a concurrent login. This means reconnection will be disabled
988  on concurrent logins.
989- BitlBee can now buffer the messages sent to someone before they're actually
990  sent, and wait for a specified number of seconds for more lines to be added
991  to the buffer before the message will really be sent.
992- Renamed the reconnect_delay setting to auto_reconnect_delay.
993- Unknown settings aren't saved anymore.
994
995Finished 13 Mar 2004
996
997Version 0.84:
998- Removed the libsoup dependency.
999- Fixed AuthMode=Registered: It will now restore your accounts when
1000  identifying.
1001- Fixed Yahoo! support.
1002- Fixed a little memory leak in user.c.
1003- Fixed a security bug in unused code in proxy.c, only people who use
1004  the HTTP proxy support and an untrusted proxy might need this. We
1005  haven't done an emergency release for this fix because proxy support
1006  is disabled by default.
1007- Fixed some memory leaks in IM-code.
1008
1009Finished 13 Feb 2004
1010
1011Version 0.83:
1012- Fixed a crash bug on connecting to unsupported accounts.
1013- Fixed a problem with connecting to MSN accounts with empty buddy
1014  lists.
1015- Fixed another inifite-loop bug in nick_get() and added a piece
1016  of code which detects the infinite loop and asks the user to send
1017  a bug report.
1018- Fixed iconv-Solaris linking issues.
1019- Fixed all the problems with spaces in AIM screennames now, we hope.
1020- Fixed a buffer overflow in the nick handling code. Buffers are
1021  overflowed with static data (nulls), so we don't think it's exploitable.
1022- Added server-client pinging, useful for remote servers.
1023- Added the hostname setting.
1024- Some bitlbeed changes.
1025- Added a little part to the on-line quickstart about the settings and
1026  other help topics, this hopefully answers a lot of FAQ's.
1027- Fixed the signal handler to re-raise the signal after the handler quits.
1028  This makes sure the default handler is called after our handler sends
1029  the user a bye-message, so core dumps are created and the parent will
1030  get more useful information back from wait().
1031- Added support for ICQ URL messages.
1032- Fixed strip_html() behaviour on unknown &entities;.
1033- Fixed a possible problem with Yahoo!
1034- Fixed a problem with logging into more than one MSN account at once.
1035
1036Finished 31 Dec 2003
1037
1038Version 0.82:
1039- Fixed a little bug in nick.c which could cause a complete hang for
1040  some tricky buddylists. (Thanks to Geert Hauwaerts for helping with
1041  fixing this bug)
1042- Fixed MSN support. (Lots of thanks to Wouter Paesen!)
1043- Removed the old login/logout commands.
1044- Added the qlist command.
1045- Fixed a buffer overflow in the nick checking code. (Thanks to Jon
[69982f8]1046  Åslund for pointing us at this problem)
[b7d3cc34]1047- Adds the add_private and add_channel options for set handle_unknown.
1048- Some documentation updates.
1049- Added two small utilities to encode/decode BitlCrypted files.
1050
1051Finished 31 Oct 2003
1052
1053Version 0.81a:
1054- This version just fixes some small things we should've fixed before
1055  releasing 0.81:
1056- Fixed a small bug in the auto-reconnect cleanup code.
1057- Fixed the Makefile: Now it doesn't just overwrite your etc files when
1058  installing.
1059- Fixed the Makefile: $prefix/etc/bitlbee/ is the default etcdir now.
1060- Disabling MSN by default, now that it doesn't work. It'll be back on
1061  as soon as we get the module working again.
1062
1063Finished 16 Oct 2003
1064
1065Version 0.81:
1066- Added a configuration file.
1067- Added support for the PASS command to restrict access to the daemon to
1068  only the people who know this password.
1069- Only allowing registered people to use the daemon is possible too.
1070- In case you, at some time, need to check the currently running BitlBee
1071  version, just CTCP-VERSION someone in the channel.
1072- Added the auto_connect setting for people who don't want the program
1073  to connect to IM-networks automatically.
1074- Extended the blist command.
1075- Applied the auto-reconnect patch from G-Lite.
1076- Applied the iconv patch from Yuri Pimenov.
1077- Imported the MSN-friendlyname patch from Wouter Paesen.
1078- Away-message aliasing code now just parses the beginning of the string,
1079  not the whole string. This allows you to have a more descriptive away
1080  message like "Busy - Fixing bugs in BitlBee" and all the IM connections
1081  will have a busy-like away-state.
1082- Added some information about away states to the help system.
1083- MSN file transfers aren't silently ignored anymore.
1084- Integrated the Yahoo protocol fix from Cerulean Studios (Trillian).
1085  (Thanks to Tony Perrie!)
1086- Made all protocol plugins optional. (Patch from Andrej Kacian/Ticho)
1087
1088Finished 15 Oct 2003
1089
1090Version 0.80:
1091- Fixed a very stupid bug in the MSN away-state reading.
1092- nick_cmp() now actually works, RFC-compliant.
1093- Fixed and cleaned up the away-state handling, there were some very
1094  weird things in the original Gaim code base which broke this completely
1095  all the time.
1096- The daemon prevents you from using root/NickServ as your nick now,
1097  previous versions crashed on that.
1098- At last ... GROUP CHAT SUPPORT! :-D
1099- People who are *not* away get mode +v in #bitlbee now, so you can see
1100  in /names who's away and who's not.
1101- Crashing BitlBee by using the NICKSERV command without any arguments
1102  is impossible now.
1103- Added some notes about Darwin/OSX portability.
1104- Separated connections from accounts. This means restoring a lost
1105  connection can be done using a simple "account on <number>" command.
1106  See "help account" for more information.
1107  *** For now this won't cause problems when upgrading because the login
1108  command still exists (as an alias for "account add"). This alias will
1109  not stay forever, though.
1110- irc_process() now makes sure it reads the whole available buffer before
1111  executing the commands. Previous versions were very bad at handling
1112  long floods from non-floodprotected clients. The code is still not
1113  perfect, but good enough for local links.
1114- Allow/Deny questions from msn.c now also mention your own screenname.
1115  This is useful for people who run two (or even more) MSN accounts in
1116  one BitlBee.
1117- Fixed a little bug in the helpfile-changed-check code.
1118- A little trick in "make install" makes sure the help function in running
1119  sessions doesn't break while upgrading.
1120- Added a nifty (and editable) MOTD.
1121- Added IRIX to the compatibility list.
1122- Added support for Cygwin.
1123- Better HTML-stripping, it also handles &entities; correctly now.
1124- Fixed some problems to make it compile on Solaris.
1125- Added support for messages from Miranda/Mac ICQ. (Code port from Gaim 0.59)
1126- Fixed the crash problem when removing yahoo buddies.
1127- Added the handle_unknown setting.
1128- Did some editing on a few docs.
1129- Added a FAQ.
1130- Added the daemon-patch by Maurits Dijkstra which adds stand-alone daemon
1131  support to BitlBee.
1132- Jabber now doesn't barf on high ASCII characters in away messages anymore.
[69982f8]1133  (Thanks to Christian Häggström <chm@c00.info>)
[b7d3cc34]1134
1135Finished 24 Jun 2003
1136
1137Version 0.74a:
1138- The music-festivals-are-bad-for-your-mind release.
1139- This one actually contains the fix for the bug 0.74 claimed to have.
1140
1141Finished 11 Jun 2003
1142
1143Version 0.74:
1144- Fixed a security leak, where using a / in the nickname causes the saved
1145  settings and account information to be stored in undesirable places.
1146
1147Finished 10 Jun 2003
1148
1149Version 0.73:
1150- Fixed the unable-to-remove-icq-users (actually users from any *local*
1151  contact list) bug.
1152- Fixed away bug in aim protocol.
1153- Fixed the 'statistics' under the blist command output.
1154- Removed the commands from the XML documentation because they're 'on-line'
1155  already.
1156- Added some signal handling; ignoring SIGPIPE should als get rid of some
1157  crashes (for some weird reason this has to be done). Also, crashes because
1158  of things like segfaults are a bit more verbose now. ;-)
1159- Changed the select() timeout in main(), this might improve some latencies.
1160  (At leasts it speeds up signing on (especially for ICQ) a lot!)
1161- Made the own-QUIT messages more compliant, probably.
1162- Fixed some memory-bugs, thanks to valgrind.
1163- irc_write() now checks the write() return value, and tries to send the rest
1164  of the string, if it could not write it completely the first time.
1165- Hostname lookups also work on NetBSD now.
1166  (Thanks to David.Edmondson*sun*com (hi spambot))
1167- At last, a new protocol. Welcome to ... YAHOO!
1168- Documentation and code cleanup. Somehow the helpfile documented register
1169  and identify twice, now that's what I call over-documenting.. :-/
1170- Added the rename command to the helpfile, somehow I forgot that one.
1171- Been a bit pedantic about compiler warnings. They're all dead now.
1172- Fixed a small Makefile problem which gave an error when a clean tree was
1173  "made distclean"
1174- Fixed a (possible) memory leak in nogaim.c:proto_away()
1175- Fixed the way proto_away() calls proto_away_alias_find(), now it gives
1176  the *whole* list of away states
1177- proto_away() doesn't give a NULL message anymore because AIM didn't like
1178  that
1179- Got rid of the last goto in my code (without ruining the code)
1180- Created a more samba-like compiling process (without the complete command
1181  lines, just a simple echo)
1182- "help set ops" works now too, without quoting the "set ops"
1183- Trying to log in with a protocol without a prpl (ICQ and TOC, for example)
1184  made previous versions crash
1185
1186Finished 13 Apr 2003
1187
1188Version 0.72:
1189- Updated the documentation.
1190- Improved the MSN friendlyname code. (Although it doesn't seem to be perfect
1191  yet..)
1192- info-command added to get more information about ICQ users.
1193- blist-command added to get a complete buddy list.
1194- Fixed a bug which broke the AIM code when adding a screenname with a space
1195  in it.
1196- Added the NS alias for the NICKSERV command (Tony Vroon).
1197- Fixed the USERHOST command implementation (Tony Vroon).
1198- /me from IM-networks is now converted to a CTCP ACTION correctly.
1199- Added an utils/ directory with some misc toys and handy things.
1200- Added a /notice to the on_typing event. Don't use it though, the /notice
1201  flood will just be a big annoyance. ;-)
1202- Some people like root and themself to be ops, some don't. Now it's
1203  configurable. (set ops)
1204- Now the umode stuff actually works. Next step: Use those modes... (How?)
1205
1206Finished 19 Dec 2002
1207
1208Version 0.71:
1209- Fixed the help command output layout (alignment)
1210- Added a sample xinetd file
1211- Cleaned up, 0.70 released with a build-stamp and DEADJOE file (oops)..
1212- Messages can be sent like '<user>, <message>' in the control channel now,
1213  instead of just '<user>: <message>'
1214- Added a debug setting boolean: Set it to true for some debugging crap
1215  which used to be on by default..
1216- Changed the /whois reply: In the server section you now see the
1217  connection this user belongs to.
1218- Added some root/permission checks.
1219- configure script works correctly when the terminating / is forgotten for
1220  a directory.
1221- Fixed format string bug in protocols/oscar/meta.c (Hmm, what's the use of
1222  that file?)
1223- Added '#include "crypting.h"' to commands.c to get rid of stupid warnings
1224- Fixed crash-bug (SIGSEGV when adding an @-less contact to MSN/Jabber)
1225- Added to_char setting
1226- Fixed bug in set.c: It ignored the new value returned by the evaluator
1227  :-(
1228- Removed protocol tag from 'hostname' in user hostmask because this info
1229  is in /whois' server section now
1230- Added the GPL. Somehow 0.7 released without a COPYING file.. :-/
1231- Enhanced the root_command() parser, you can 'quote' "arguments" now so
1232  arguments can be strings with spaces
1233- Debugging versions have True as the default value for set debug
1234- NICKSERV is now an alternative for PRIVMSG root. This does not affect
1235  functionality of current NICKSERV commands, but does allow people to just
1236  do identify <pass> in channel.
1237- NICKSERV REGISTER now doesn't try to log you in (to check if the user
1238  exists) but checks for the existence of the user-configuration files.
1239- NICKSERV SET password now works (as does set password in channel). This
1240  makes changing your password possible.
1241- NICKSERV password now stored in irc_t.
1242- ./configure now only bugs you about possible problems with strip if it's
1243  actually going to strip (wooohoooo! _sexy_ :)
1244- Fixed a load of warnings in oscar.c, irc.c, nick.c and set.c
1245- Split up root_command() into a version which eats raw strings and one
1246  which eats split strings
1247- New help system: Help available for most (all?) commands, all read from
1248  an external help-file.
1249- Changed the maximum message length in irc_usermsg() from IRC_MAX_LINE to
1250  1024 (for loooong help messages..).
1251- Only allow user to set supported umodes.
1252- Fixed a memory leak in crypting.c (Thanks to Erik Hensema.)
1253- Added a send_handler callback to user_t. Needed for the following entry:
1254- Added the NickServ user as a root-clone.
1255- Disabled tcpd by default because it's just a PITA for a lot of systems
1256  and because you can use /usr/sbin/tcpd as well.
1257- The root user can be renamed now.
1258
1259Finished 16 Sep 2002
Note: See TracBrowser for help on using the repository browser.