Changeset 7c5a3be5


Ignore:
Timestamp:
2010-10-22T00:28:52Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
8d93b4a
Parents:
a0626c1
Message:

There. BitlBee 3.0, it was about time. :-)

Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.h

    ra0626c1 r7c5a3be5  
    3535
    3636#define PACKAGE "BitlBee"
    37 #define BITLBEE_VERSION "1.3dev"
     37#define BITLBEE_VERSION "3.0"
    3838#define VERSION BITLBEE_VERSION
    3939#define BITLBEE_VER(a,b,c) (((a) << 16) + ((b) << 8) + (c))
    40 #define BITLBEE_VERSION_CODE BITLBEE_VER(1, 3, 0)
     40#define BITLBEE_VERSION_CODE BITLBEE_VER(3, 0, 0)
    4141
    4242#define MAX_STRING 511
  • doc/CHANGES

    ra0626c1 r7c5a3be5  
    44http://bugs.bitlbee.org/bitlbee/timeline?daysback=90&changeset=on
    55
    6 Version
     6Version 3.0
    77- Important: This version drops backward compatibility with the file format
    88  used for user settings in versions before 1.2. If you're upgrading from
     
    5757  * Support for sending offline messages.
    5858  * Support for setting and reading status messages.
     59- Integrated the bitlbee-otr branch in a mostly non-intrusive way. Since
     60  this is not end-to-end it should *not* be enabled on public servers.
     61  Distro packagers are requested to offer OTR as a separately installable
     62  plugin. (Compile with --otr=plugin) Please do not enable it by default as
     63  there is no easy way to disable OTR once the plugin is loaded/built in.
    5964- Support for file transfers, in and out. /DCC SEND a file to a contact and
    6065  it becomes a file transfer, and incoming file transfers become /DCC SENDs
     
    7479  and other minor changes.
    7580
    76 Finished ...
     81Finished 22 Oct 2010
    7782
    7883Version 1.2.8:
  • doc/user-guide/misc.xml

    ra0626c1 r7c5a3be5  
    301301</sect1>
    302302
     303<sect1 id="whatsnew030000">
     304<title>New stuff in BitlBee 3.0</title>
     305
     306<para>
     307BitlBee can be compiled with support for OTR message encryption (not available
     308on public servers since encryption should be end-to-end).
     309</para>
     310
     311<para>
     312The MSN module was heavily updated to support features added to MSN Messenger
     313over the recent years. You can now see/set status messages, send offline
     314messages, and many strange issues caused by Microsoft breaking old-protocol
     315compatibility should now be resolved.
     316</para>
     317
     318<para>
     319Twitter extended: IRC-style replies ("BitlBee:") now get converted to proper
     320Twitter replies ("@BitlBee") and get a reference to the original message
     321(see <emphasis>help set auto_reply_timeout</emphasis>). Retweets and some
     322other stuff is also supported now (see <emphasis>help set commands</emphasis>).
     323</para>
     324</sect1>
     325
    303326<sect1 id="news1.3">
    304327<title>New stuff in BitlBee 1.3dev (details)</title>
  • irc_send.c

    ra0626c1 r7c5a3be5  
    114114        irc_channel_t *ic = NULL;
    115115        irc_user_t *iu = irc->root;
    116         char text[1100];
     116        char text[2048];
    117117        va_list params;
    118118        char *dst;
Note: See TracChangeset for help on using the changeset viewer.