source: doc/CHANGES @ 4bb50ef

Last change on this file since 4bb50ef was 221a273, checked in by Wilmer van der Gaast <wilmer@…>, at 2007-11-24T19:07:22Z

1.1.1dev (Although the CHANGES change isn't in there).

  • Property mode set to 100644
File size: 33.4 KB
Line 
1Version 1.2:
2- First BitlBee development/testing RELEASE. This should be quite stable
3  though (and for most people more stable than 1.0.x). It just has a couple
4  of rough edges and needs a bit more testing.
5- Added ForkDaemon mode next to the existing Daemon- and inetd modes. With
6  ForkDaemon you can run BitlBee as a stand-alone daemon and every connection
7  will run in its own process. No more need to configure inetd, and still you
8  don't get the stability problems BitlBee unfortunately still has in ordinary
9  (one-process) daemon mode.
10- Added inter-process/connection communication. This made it possible to
11  implement some IRC operator features like WALLOPs, KILL, DIE, REHASH and
12  more.
13- Added hooks for using libevent instead of GLib for event handling. This
14  should improve scalability, although this won't really be useful yet because
15  the one-process daemon mode is not reliable enough.
16- BitlBee now makes the buddy quits when doing "account off" look like a
17  netsplit. Modern IRC clients show this in a different, more compact way.
18  (This can be disabled if your client doesn't support this.)
19- GLib 1.x compatibility was dropped. BitlBee now requires GLib 2.4 or newer.
20  This allows us to use more GLib features (like the XML parser). By now GLib
21  1.x is so old that supporting it really isn't necessary anymore.
22- Many, many, MANY little changes, improvements, fixes. Using non-blocking
23  I/O as much as possible, fixed lots of little bugs (including bugs that
24  affected daemon mode stability). See the bzr logs for more information.
25- Added units tests, will have to add some more before the real release.
26- Most important change: New file format for user data (accounts, nicks and
27  settings). Migration to the new format should happen transparently,
28  BitlBee will read the old files and once you quit/save it will save in the
29  new format. It is recommended to delete the old files (BitlBee doesn't do
30  this automatically, it will just ignore them) since they won't be used
31  anymore (and since the old file format is a security risk). Some advantages
32  of this file format switch:
33  * Safer format, since the identify-password is now salted before generating
34    a checksum. This way one can't use MD5 reverse lookup databases to crack
35    passwords. Also, the IM-account passwords are encrypted using RC4 instead
36    of the simple obfuscation scheme which BitlBee used so far.
37  * Easier to extend than the previous format (at least the .nicks format was
38    horribly limited).
39  * Nicknames for buddies are now saved per-account instead of per-protocol.
40    So far having one buddy on multiple accounts of the same protocol was a
41    problem because the nicks generated for the two "instances" of this buddy
42    were very unpredictable.
43    NOTE: This also means that "account del" removes not just the account,
44    BUT ALSO ALL NICKNAMES! If you're changing IM accounts and don't want to
45    lose the nicknames, you can now use "account set" to change the username
46    and password for the existing connection.
47  * Per-account settings (see the new "account set" command).
48- A brand new Jabber module. Besides the major code cleanup, it also has
49  has these new features:
50  * Pretty complete XMPP support: RFC3920, RFC3921 plus a number of XEPs
51    including XEP45, XEP73 and XEP85. (See http://www.xmpp.org/ for what all
52    these things mean exactly.) Privacy lists are not supported for obvious
53    reasons.
54  * This complete support also includes TLS and SASL support and SRV record
55    lookup. This means that specifying a server tag for connections should
56    (almost) never be necessary anymore, BitlBee can find the server and can
57    automatically convert plaintext connections to TLS-encrypted ones.
58  * XEP45: Jabber chatroom support!
59  * XEP85 means typing notifications. The older XEP22 (still used by some
60    clients including Gaim <2.0) is not supported.
61  * Better handling of buddies who have more than one resource on-line. As
62    long as one resource is on-line (and visible), BitlBee will show this.
63    (The previous module didn't keep track of resources and sent an offline
64    event as soon as any resource disappears.)
65  * You can now set your resource priority.
66  * The info command now gives away state/message information for all
67    resources available for that buddy. (Of course this only works if the
68    buddy is in your contact list.)
69  * An XML console (add xmlconsole to your contact list or see "help set
70    xmlconsole" if you want it permanently).
71
72Finished ???
73
74Version 1.0.4:
75- Removed sethostent(), which causes problems for many people, especially on
76  *BSD. This is basically the reason for this release.
77- "allow" command actually displays the allow list, not the block list.
78- Yahoo away state/msg fix.
79- Don't display "Gender: Male" by default if nothing's filled in (OSCAR
80  "info" command)
81- Fixed account cleanup (possible infinite loop) in irc_free().
82- Fixed configdir error message to not always display the compile-time
83  setting.
84
85Finished 20 Aug 2007
86
87Version 1.0.3:
88- Fixed ugliness in block/allow list commands (still not perfect though, the
89  list is empty or not up-to-date for most protocols).
90- OSCAR module doesn't send the ICQ web-aware flag anymore, which seems to
91  get rid of a lot of ICQ spam.
92- added show_got_added(), BitlBee asks you, after authorizing someone, if you
93  want to add him/her to your list too.
94- add -tmp, mainly convenient if you want to talk to people who are not in
95  your list.
96- Fixed ISON command, should work better with irssi now.
97- Fixed compilation with tcc.
98- Fixed xinetd-file.
99- Misc. (crash)bug fixes, including one in the root command parsing that
100  caused mysterious error messages sometimes.
101
102Finished 24 Jun 2006 (Happy 4th birthday, BitlBee!)
103
104Version 1.0.2:
105- Pieces of code cleanup, fixes for possible problems in error checking.
106- Fixed an auto-reconnect cleanup problem that caused crashes in daemon mode.
107- /AWAY in daemon mode now doesn't set the away state for every connection
108  anymore.
109- Fixed a crash-bug on empty help subjects.
110- Jabber now correctly sets the current away state when connecting.
111- Added Invisible and Hidden to the away state alias list, invisible mode
112  should be pretty usable now.
113- Fixed handling of iconv(): It's now done for everything that goes between
114  BitlBee and the IRC client, instead of doing it (almost) every time
115  something goes to or come from the IM-modules. Should've thought about
116  that before. :-)
117- When cleaning up MSN switchboards with unsent msgs, it now also says which
118  contact those messages were meant for.
119- You can now use the block and allow commands to see your current block/
120  allow list.
121
122Finished 1 Apr 2006
123
124Version 1.0.1:
125- Support for AIM groupchats.
126- Improved typing notification support for at least AIM.
127- BitlBee sends a 005 reply when logging in, this informs modern IRC clients
128  of some of BitlBee's capabilities. This might also solve problems some
129  people were having with the new control channel name.
130- MSN switchboards are now properly reset when talking to a person who is
131  offline. This fixes problems with messages to MSN people that sometimes
132  didn't arrive.
133- Fixed one of the problems that made BitlBee show online Jabber people as
134  offline.
135- Fixed problems with commas in MSN passwords.
136- Added some consts for read-only data, which should make the BitlBee per-
137  process memory footprint a bit smaller.
138- Other bits of code cleanup.
139
140Finished 14 Jan 2006
141
142Version 1.0:
143- Removed some crashy debugging code.
144- QUIT command now works before logging in. (Mainly an RFC-compliancy fix.)
145- Hopefully slightly clearer handling of buddy add requests.
146- set buddy_sendbuffer_delay now also supports milisecond precision.
147- Renamed #bitlbee to &bitlbee to avoid confusion with the channel on OFTC.
148- Reviewed the xinetd file and installation instructions.
149- HTML stripping is configurable again.
150- Quit messages (at least on crashes) should appear again.
151- Cleaned up some unnecessary code in the Jabber module, and implemented
152  handlers for headline messages (which allows you to use RSS-to-Jabber
153  gateways).
154- Lowered the line splitting limit a bit to fix data loss issues.
155- The $proto($handle) format used for messages specific to one IM-connection
156  now only include the ($handle) part when there's more than one $proto-
157  connection.
158- Fix for a crash-bug on broken Jabber/SSL connections.
159- Incoming typing notifications now also come in as CTCP TYPING messages, for
160  better consistency. Don't forget to update your scripts!
161- AIM typing notifications are supported now.
162- Jabber module only accepts ports 5220-5229 now, to prevent people from
163  abusing it as a port scanner. We aren't aware of any Jabber server that
164  runs on other ports than those. If you are, please warn us.
165- Send flood protection can't be enabled anymore. It was disabled by default
166  for a good reason for some time already, but some package maintainers
167  turned it back on while it's way too unreliable and trigger-happy to be
168  used.
169- Removed TODO file, the current to-do list is always in the on-line bug
170  tracking system.
171- Fixed a potential DoS bug in input handling.
172
173Finished 4 Dec 2005
174
175Version 0.99:
176- Fixed memory initialization bug in OSCAR module that caused crashes on
177  closing the connection.
178- Most likely fixed the bug that caused BitlBee to use 100% CPU time in
179  some situations.
180- Outgoing MSN typing notifications are now understood correctly by the
181  orignal MS Mac/Windows clients (again).
182- Added "account add $protocol" to the documentation, got rid of a lot
183  of over-markup (i.e. overuse of bold-tags), reviewed some other parts.
184- Small changes to help.xsl to fix small flaws in the help.txt formatting.
185- Messaging yourself now doesn't make irssi or mIRC crash anymore.
186
187Finished 3 Nov 2005
188
189Version 0.93:
190- &quot; is now correctly converted to " instead of '.
191- Code cleanup in OSCAR module.
192- Some changes for better RFC-compliancy.
193- It's now possible to specify an alternate Jabber server.
194- bitlbee_save() now also checks the return value of fclose(), which might
195  solve more problems with lost account data.
196- Fixed a file descriptor leak in bitlbee.c.
197- Signedness fixes (mainly to keep GCC4 happy).
198- Away messages are now sent correctly to most ICQ clients.
199- BitlBee knows now which connection sends HTML, so it will strip HTML
200  automatically, "set html strip" is no longer necessary. Also, outgoing HTML
201  is escaped correctly.
202- info-command works for AIM-connections too now.
203- /notices to users will be sent as auto-away replies.
204- Messages about a connection now also mention a handle, for people who have
205  multiple accounts in use of the same protocol.
206- Examples are back in help.txt.
207
208Finished 31 Oct 2005
209
210Version 0.92:
211- Fixed some formatting issues with the help.txt XSL-sheet.
212- Moved the polling of the IRC connections to glib instead of a separate
213  select().
214- Added ctags generation to the Makefiles.
215- Sending a CTCP TYPING message to a user in your buddy list now sends a
216  typing notification to that person, if the protocol supports it. You
217  probably want to write/use a script for your IRC client to do this.
218- A dash is no longer considered a lowercase underscore in nicknames.
219- CTCP's to buddies no longer alter their private/non-private state.
220- Clean shutdown (with saving settings) on SIGTERM.
221- Fixed a crash on connecting to unreachable Jabber/SSL servers.
222- On ICQ, offline messages are now requested after receiving the buddy
223  list. This should get rid of the "Message from unknown OSCAR handle"
224  messages on login.
225- The linked list of buddies/nicks is now always sorted, which makes the
226  blist output a bit more useful.
227- Fixed a crash on renaming NickServ. (There's no reason to do this, but
228  still crashing isn't really how BitlBee should tell you that. ;-)
229- Now the message about the "new" ICQ server-side buddy lists is only
230  displayed when the server-side list is still empty.
231- The Yahoo! markup language stripper is now less likely to strip things
232  that shouldn't be stripped.
233- Working around a shortcoming in the Yahoo! cleanup code that didn't
234  cause any serious problems in previous versions, but got pretty nasty
235  (100% CPU time usage) now with everything in the glib main loop.
236- Fixed a bug in http_encode that might have caused buffer overflows
237  (although not likely to be exploitable) when trying to encode strings
238  with non-ASCII characters.
239- Fixed AIM screenname handling on ICQ connections.
240- When blocking someone, the MSN module now closes the conversation you're
241  having with him/her (if any) so he/she can't continue talking to you
242  (for as long as the conversation lasts).
243- Away messages are only sent when messaging someone outside the control
244  channel. (And now also when the user is offline instead of just away.)
245- Moved charset conversion in serv_buddy_rename() to the right place so
246  bogus changes are always detected now.
247- iso8859-1 is now the default charset because -15 caused some problems
248  and because -1 is enough for most people anyway.
249- Fixed crashes on attempting to add a buddy (or do other things) on
250  connections that are still initializing.
251- Added support for server-side notifies using the WATCH command.
252- IRC_MAX_ARGS is dead, at least for IRC commands.
253- Fixed a bug that made BitlBee crash on failing fresh MSN switchboard
254  connections.
255- Fixed an invisibility bug in the MSN code that handled transfers to
256  other servers in the middle of a session.
257- Newline stripping added to prevent newline-in-friendlyname attacks.
258  (Which allowed remote people to make BitlBee send raw custom IRC lines.)
259
260Finished 23 Feb 2005
261
262Version 0.91:
263- Full support for ICQ server-side contact lists!
264  NOTE: BitlBee now ignores your client-side contact list. If you want to
265        import your ICQ contact list, use the import_buddies command.
266- Added the import_buddies command for upgrading purposes.
267- Added support for OpenSSL.
268- Fixed one major problem with the daemon mode by getting rid of the global
269  IRC structure.
270- Documentation fixes. help.txt is now generated from XML. Also updated the
271  installation manual.
272- Made the quickstart up-to-date. (By Elizabeth Krumbach)
273- Some bitlbeed additions. (By Marcus Dennis)
274- info-command support for Jabber, MSN, Yahoo! and a more verbose info-reply
275  for ICQ. (By Frank Thieme)
276- Support for Jabber over SSL.
277- nick_get() appends a _ on duplicates instead of chopping off the last
278  character.
279- Got rid of an unused piece of code that caused crashes.
280  (oscar.c:gaim_parse_clientauto)
281- When splitting long messages into 450-char chunks, BitlBee now tries not
282  to cut off in the middle of a line.
283- Added a warning when the user specifies an unknown OSCAR server.
284- Removed GLib 2.x dependency, BitlBee will work with GLib 1.x again.
285- Improved strip_html(), now less likely to strip non-HTML things.
286- An invalid account-command will now display an error message.
287- Fixed a bug that caused crashes when /CTCP'ing a groupchat channel.
288- Hopefully better Unicode/non-ASCII support for ICQ.
289- Fixed MSN connection crash on non-ASCII characters in screenname.
290- Added some missing charset conversion calls. (serv_got_crap,
291  serv_buddy_rename)
292- "account off" without extra arguments now logs off all connections.
293- Fixed a crash-bug on disconnecting Yahoo! connections before they're fully
294  connected.
295- Fixed a bug in helpfile handling which sometimes caused crashes in daemon
296  mode.
297- block and allow commands work with just a nick as an argument again.
298- Working around a crash on some probably invalid Yahoo! packets.
299- Fixed a possible double free() on shutdown in irc_free().
300- Talking to ICQ people on AIM and vice versa and talking to people with
301  @mac.com accounts now possible.
302- Low ASCII chars are now stripped from away-messages so the Jabber module
303  won't barf on BitchX and lame-script away messages anymore.
304
305Finished 25 Sep 2004
306
307Version 0.90a:
308- Fixed the Yahoo! authentication code.
309
310Finished 28 Jun 2004
311
312Version 0.90:
313- A complete rewrite of the MSN module. This gives BitlBee the following
314  new features/improvements:
315  * You can now start groupchats with MSN people without having to send them
316    a bogus message first.
317  * People who are in your MSN block/allow list, but not in your contact
318    list, shouldn't show up in your BitlBee buddy lists anymore.
319  * Passport authentication shouldn't lock up the whole program for a couple
320    of seconds anymore. Additionally, it should also work behind proxies now.
321  * Better recognition of incoming file transfers; they're now recognized
322    when coming from non-English MS Messenger clients too.
323  * Fixed a problem with MSN passwords with non-alphanumeric characters.
324  * Mail notification support (also for Yahoo!)...
325  * Parsing of maintenance messages (ie "Server is going down in x minutes").
326  * Hopefully more stability.
327- Changes in the OSCAR module:
328  * Better reading of ICQ-away-states.
329  * Lots of cleanups.
330- Yahoo! module:
331  * Fixed authentication on 64-bit machines. (Patch from Matt Rogers)
332  * Better stripping of markup tags.
333- Lots of cleanup in all IM-modules.
334- Added support for using libnss instead of libgnutls.
335- Reverse hostname lookups work on IPv6 sockets too now. (And don't crash
336  the program anymore.)
337- Fixed a little problem with identifying right after registering a nick.
338- Restored complete proxy support and added a proxy setting to the conffile.
339- BitlBee can now tell you when people in your buddy list change their
340  "friendly name".
341- Instead of an account number, you can also specify the protocol name or
342  (part of) the username as an account identification with commands like
343  "account on", "add", etc.
344- BitlBee remembers what connection a question (i.e. authorization request)
345  belongs to and cleans it up when the connection goes down; this fixes
346  (one of) the last known crash bugs.
347- Plus some other changes in question management. (The query_order setting
348  is one of them. The default behaviour changed a bit, for more information
349  please read "help set query_order".)
350- Also fixed a memory management bug in the question code which caused some
351  crashes.
352- Optimized some nick handling functions and added a hash of all the users
353  to speed up user_find() a bit (especially good for people with large
354  buddy and notify lists).
355- Lots of changes for the Win32 port (see http://jelmer.vernstok.nl/).
356- Added the drop-command.
357- Fixed small problem with versions of sed which don't support the +
358  "operator" (the BSD version, for example, even though the operator is
359  documented properly in the re_format manpage...).
360- Added the default_target setting.
361- Added a CenterICQ2BitlBee conversion script.
362- Put back the evaluator for "set charset" (which got lost somewhere between
363  0.84 and 0.85), so an incorrect charset will be rejected again.
364- ISON now (A) gives one single reply and (B) also replies when none of the
365  persons asked for are on-line.
366- Using GConv instead of iconv now.
367- Incoming messages larger than 450 characters are now split into parts
368  before sending them to the user.
369- Fixed a bug in irc_exec() which could crash the program when some commands
370  were called with too little arguments.
371- Fixed a dumb NULL pointer dereference in the JOIN command.
372- Added rate limiting to bitlbeed. (Against server hammering)
373- Added handling of CTCP PINGs (yet another self-ping used by some IRC
374  clients...)
375- Added bitlbee_tab_completion.pl.
376- Removed the vCard handling code from Jabber because it's (A) not used and
377  (B) had a possible format string vulnerability.
378- Got rid of strcpy() in account.c. (Thanks to NETRIC for reporting these two
379  problems.)
380- ISO8859-15 is now the default charset.
381
382Finished 21 May 2004
383
384Version 0.85a:
385- Fixed an authentication problem with logging into some MSN accounts.
386- Removed a non-critical warning message from the ICQ servers when logging
387  in with an empty contact list.
388- Fixed reading the [defaults] section of bitlbee.conf.
389- The last newline in outgoing messages when using the buddy_sendbuffer is
390  now removed correctly.
391- Yahoo! colour/font tag stripping now actually works.
392- Fixed compilation on *BSD and some Linux architectures.
393
394Finished 24 Mar 2004
395
396Version 0.85:
397- Users can specify alternate configuration files/directories at runtime
398  now.
399- Rename now doesn't choke on name changes with only case changes anymore.
400- Imported the daemon patch into the main source tree. The daemon mode is
401  still experimental, this just eases maintenance. This daemon patch brings
402  a lot of features, including (as the name says) a real daemon mode and
403  also buffering of the data sent to the user, and flood protection.
404- Strips font and colour codes from Yahoo! messages.
405- Support for groupchats on Yahoo!
406- Fixed removing Yahoo! buddies from a different group than "Buddies".
407- Jabber presence packets with error messages are interpreted correctly now.
408  (They used to be parsed as a signin.)
409- bitlbee_save() checks return values from fprintf() and writes to tempfiles
410  first to make sure no old files get lost when there's a write error.
411- ICQ buddies are added all at once instead of once at a time. This should
412  solve problems with huge buddy lists.
413- Made the client pinging timings configurable. (Without requiring
414  recompilation)
415- MSN and Yahoo flag the connection as "wants_to_die" when they're logged
416  off because of a concurrent login. This means reconnection will be disabled
417  on concurrent logins.
418- BitlBee can now buffer the messages sent to someone before they're actually
419  sent, and wait for a specified number of seconds for more lines to be added
420  to the buffer before the message will really be sent.
421- Renamed the reconnect_delay setting to auto_reconnect_delay.
422- Unknown settings aren't saved anymore.
423
424Finished 13 Mar 2004
425
426Version 0.84:
427- Removed the libsoup dependency.
428- Fixed AuthMode=Registered: It will now restore your accounts when
429  identifying.
430- Fixed Yahoo! support.
431- Fixed a little memory leak in user.c.
432- Fixed a security bug in unused code in proxy.c, only people who use
433  the HTTP proxy support and an untrusted proxy might need this. We
434  haven't done an emergency release for this fix because proxy support
435  is disabled by default.
436- Fixed some memory leaks in IM-code.
437
438Finished 13 Feb 2004
439
440Version 0.83:
441- Fixed a crash bug on connecting to unsupported accounts.
442- Fixed a problem with connecting to MSN accounts with empty buddy
443  lists.
444- Fixed another inifite-loop bug in nick_get() and added a piece
445  of code which detects the infinite loop and asks the user to send
446  a bug report.
447- Fixed iconv-Solaris linking issues.
448- Fixed all the problems with spaces in AIM screennames now, we hope.
449- Fixed a buffer overflow in the nick handling code. Buffers are
450  overflowed with static data (nulls), so we don't think it's exploitable.
451- Added server-client pinging, useful for remote servers.
452- Added the hostname setting.
453- Some bitlbeed changes.
454- Added a little part to the on-line quickstart about the settings and
455  other help topics, this hopefully answers a lot of FAQ's.
456- Fixed the signal handler to re-raise the signal after the handler quits.
457  This makes sure the default handler is called after our handler sends
458  the user a bye-message, so core dumps are created and the parent will
459  get more useful information back from wait().
460- Added support for ICQ URL messages.
461- Fixed strip_html() behaviour on unknown &entities;.
462- Fixed a possible problem with Yahoo!
463- Fixed a problem with logging into more than one MSN account at once.
464
465Finished 31 Dec 2003
466
467Version 0.82:
468- Fixed a little bug in nick.c which could cause a complete hang for
469  some tricky buddylists. (Thanks to Geert Hauwaerts for helping with
470  fixing this bug)
471- Fixed MSN support. (Lots of thanks to Wouter Paesen!)
472- Removed the old login/logout commands.
473- Added the qlist command.
474- Fixed a buffer overflow in the nick checking code. (Thanks to Jon
475  Åslund for pointing us at this problem)
476- Adds the add_private and add_channel options for set handle_unknown.
477- Some documentation updates.
478- Added two small utilities to encode/decode BitlCrypted files.
479
480Finished 31 Oct 2003
481
482Version 0.81a:
483- This version just fixes some small things we should've fixed before
484  releasing 0.81:
485- Fixed a small bug in the auto-reconnect cleanup code.
486- Fixed the Makefile: Now it doesn't just overwrite your etc files when
487  installing.
488- Fixed the Makefile: $prefix/etc/bitlbee/ is the default etcdir now.
489- Disabling MSN by default, now that it doesn't work. It'll be back on
490  as soon as we get the module working again.
491
492Finished 16 Oct 2003
493
494Version 0.81:
495- Added a configuration file.
496- Added support for the PASS command to restrict access to the daemon to
497  only the people who know this password.
498- Only allowing registered people to use the daemon is possible too.
499- In case you, at some time, need to check the currently running BitlBee
500  version, just CTCP-VERSION someone in the channel.
501- Added the auto_connect setting for people who don't want the program
502  to connect to IM-networks automatically.
503- Extended the blist command.
504- Applied the auto-reconnect patch from G-Lite.
505- Applied the iconv patch from Yuri Pimenov.
506- Imported the MSN-friendlyname patch from Wouter Paesen.
507- Away-message aliasing code now just parses the beginning of the string,
508  not the whole string. This allows you to have a more descriptive away
509  message like "Busy - Fixing bugs in BitlBee" and all the IM connections
510  will have a busy-like away-state.
511- Added some information about away states to the help system.
512- MSN file transfers aren't silently ignored anymore.
513- Integrated the Yahoo protocol fix from Cerulean Studios (Trillian).
514  (Thanks to Tony Perrie!)
515- Made all protocol plugins optional. (Patch from Andrej Kacian/Ticho)
516
517Finished 15 Oct 2003
518
519Version 0.80:
520- Fixed a very stupid bug in the MSN away-state reading.
521- nick_cmp() now actually works, RFC-compliant.
522- Fixed and cleaned up the away-state handling, there were some very
523  weird things in the original Gaim code base which broke this completely
524  all the time.
525- The daemon prevents you from using root/NickServ as your nick now,
526  previous versions crashed on that.
527- At last ... GROUP CHAT SUPPORT! :-D
528- People who are *not* away get mode +v in #bitlbee now, so you can see
529  in /names who's away and who's not.
530- Crashing BitlBee by using the NICKSERV command without any arguments
531  is impossible now.
532- Added some notes about Darwin/OSX portability.
533- Separated connections from accounts. This means restoring a lost
534  connection can be done using a simple "account on <number>" command.
535  See "help account" for more information.
536  *** For now this won't cause problems when upgrading because the login
537  command still exists (as an alias for "account add"). This alias will
538  not stay forever, though.
539- irc_process() now makes sure it reads the whole available buffer before
540  executing the commands. Previous versions were very bad at handling
541  long floods from non-floodprotected clients. The code is still not
542  perfect, but good enough for local links.
543- Allow/Deny questions from msn.c now also mention your own screenname.
544  This is useful for people who run two (or even more) MSN accounts in
545  one BitlBee.
546- Fixed a little bug in the helpfile-changed-check code.
547- A little trick in "make install" makes sure the help function in running
548  sessions doesn't break while upgrading.
549- Added a nifty (and editable) MOTD.
550- Added IRIX to the compatibility list.
551- Added support for Cygwin.
552- Better HTML-stripping, it also handles &entities; correctly now.
553- Fixed some problems to make it compile on Solaris.
554- Added support for messages from Miranda/Mac ICQ. (Code port from Gaim 0.59)
555- Fixed the crash problem when removing yahoo buddies.
556- Added the handle_unknown setting.
557- Did some editing on a few docs.
558- Added a FAQ.
559- Added the daemon-patch by Maurits Dijkstra which adds stand-alone daemon
560  support to BitlBee.
561- Jabber now doesn't barf on high ASCII characters in away messages anymore.
562  (Thanks to Christian Häggström <chm@c00.info>)
563
564Finished 24 Jun 2003
565
566Version 0.74a:
567- The music-festivals-are-bad-for-your-mind release.
568- This one actually contains the fix for the bug 0.74 claimed to have.
569
570Finished 11 Jun 2003
571
572Version 0.74:
573- Fixed a security leak, where using a / in the nickname causes the saved
574  settings and account information to be stored in undesirable places.
575
576Finished 10 Jun 2003
577
578Version 0.73:
579- Fixed the unable-to-remove-icq-users (actually users from any *local*
580  contact list) bug.
581- Fixed away bug in aim protocol.
582- Fixed the 'statistics' under the blist command output.
583- Removed the commands from the XML documentation because they're 'on-line'
584  already.
585- Added some signal handling; ignoring SIGPIPE should als get rid of some
586  crashes (for some weird reason this has to be done). Also, crashes because
587  of things like segfaults are a bit more verbose now. ;-)
588- Changed the select() timeout in main(), this might improve some latencies.
589  (At leasts it speeds up signing on (especially for ICQ) a lot!)
590- Made the own-QUIT messages more compliant, probably.
591- Fixed some memory-bugs, thanks to valgrind.
592- irc_write() now checks the write() return value, and tries to send the rest
593  of the string, if it could not write it completely the first time.
594- Hostname lookups also work on NetBSD now.
595  (Thanks to David.Edmondson*sun*com (hi spambot))
596- At last, a new protocol. Welcome to ... YAHOO!
597- Documentation and code cleanup. Somehow the helpfile documented register
598  and identify twice, now that's what I call over-documenting.. :-/
599- Added the rename command to the helpfile, somehow I forgot that one.
600- Been a bit pedantic about compiler warnings. They're all dead now.
601- Fixed a small Makefile problem which gave an error when a clean tree was
602  "made distclean"
603- Fixed a (possible) memory leak in nogaim.c:proto_away()
604- Fixed the way proto_away() calls proto_away_alias_find(), now it gives
605  the *whole* list of away states
606- proto_away() doesn't give a NULL message anymore because AIM didn't like
607  that
608- Got rid of the last goto in my code (without ruining the code)
609- Created a more samba-like compiling process (without the complete command
610  lines, just a simple echo)
611- "help set ops" works now too, without quoting the "set ops"
612- Trying to log in with a protocol without a prpl (ICQ and TOC, for example)
613  made previous versions crash
614
615Finished 13 Apr 2003
616
617Version 0.72:
618- Updated the documentation.
619- Improved the MSN friendlyname code. (Although it doesn't seem to be perfect
620  yet..)
621- info-command added to get more information about ICQ users.
622- blist-command added to get a complete buddy list.
623- Fixed a bug which broke the AIM code when adding a screenname with a space
624  in it.
625- Added the NS alias for the NICKSERV command (Tony Vroon).
626- Fixed the USERHOST command implementation (Tony Vroon).
627- /me from IM-networks is now converted to a CTCP ACTION correctly.
628- Added an utils/ directory with some misc toys and handy things.
629- Added a /notice to the on_typing event. Don't use it though, the /notice
630  flood will just be a big annoyance. ;-)
631- Some people like root and themself to be ops, some don't. Now it's
632  configurable. (set ops)
633- Now the umode stuff actually works. Next step: Use those modes... (How?)
634
635Finished 19 Dec 2002
636
637Version 0.71:
638- Fixed the help command output layout (alignment)
639- Added a sample xinetd file
640- Cleaned up, 0.70 released with a build-stamp and DEADJOE file (oops)..
641- Messages can be sent like '<user>, <message>' in the control channel now,
642  instead of just '<user>: <message>'
643- Added a debug setting boolean: Set it to true for some debugging crap
644  which used to be on by default..
645- Changed the /whois reply: In the server section you now see the
646  connection this user belongs to.
647- Added some root/permission checks.
648- configure script works correctly when the terminating / is forgotten for
649  a directory.
650- Fixed format string bug in protocols/oscar/meta.c (Hmm, what's the use of
651  that file?)
652- Added '#include "crypting.h"' to commands.c to get rid of stupid warnings
653- Fixed crash-bug (SIGSEGV when adding an @-less contact to MSN/Jabber)
654- Added to_char setting
655- Fixed bug in set.c: It ignored the new value returned by the evaluator
656  :-(
657- Removed protocol tag from 'hostname' in user hostmask because this info
658  is in /whois' server section now
659- Added the GPL. Somehow 0.7 released without a COPYING file.. :-/
660- Enhanced the root_command() parser, you can 'quote' "arguments" now so
661  arguments can be strings with spaces
662- Debugging versions have True as the default value for set debug
663- NICKSERV is now an alternative for PRIVMSG root. This does not affect
664  functionality of current NICKSERV commands, but does allow people to just
665  do identify <pass> in channel.
666- NICKSERV REGISTER now doesn't try to log you in (to check if the user
667  exists) but checks for the existence of the user-configuration files.
668- NICKSERV SET password now works (as does set password in channel). This
669  makes changing your password possible.
670- NICKSERV password now stored in irc_t.
671- ./configure now only bugs you about possible problems with strip if it's
672  actually going to strip (wooohoooo! _sexy_ :)
673- Fixed a load of warnings in oscar.c, irc.c, nick.c and set.c
674- Split up root_command() into a version which eats raw strings and one
675  which eats split strings
676- New help system: Help available for most (all?) commands, all read from
677  an external help-file.
678- Changed the maximum message length in irc_usermsg() from IRC_MAX_LINE to
679  1024 (for loooong help messages..).
680- Only allow user to set supported umodes.
681- Fixed a memory leak in crypting.c (Thanks to Erik Hensema.)
682- Added a send_handler callback to user_t. Needed for the following entry:
683- Added the NickServ user as a root-clone.
684- Disabled tcpd by default because it's just a PITA for a lot of systems
685  and because you can use /usr/sbin/tcpd as well.
686- The root user can be renamed now.
687
688Finished 16 Sep 2002
Note: See TracBrowser for help on using the repository browser.