Changeset a70b7d7


Ignore:
Timestamp:
2015-03-15T08:56:17Z (9 years ago)
Author:
dequis <dx@…>
Branches:
master
Children:
61d21e5b
Parents:
2dd23da
Message:

Prepare for 3.4 release

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • bitlbee.h

    r2dd23da ra70b7d7  
    3636
    3737#define PACKAGE "BitlBee"
    38 #define BITLBEE_VERSION "3.2.2"
     38#define BITLBEE_VERSION "3.4"
    3939#define VERSION BITLBEE_VERSION
    4040#define BITLBEE_VER(a, b, c) (((a) << 16) + ((b) << 8) + (c))
    41 #define BITLBEE_VERSION_CODE BITLBEE_VER(3, 2, 2)
     41#define BITLBEE_VERSION_CODE BITLBEE_VER(3, 4, 0)
    4242
    4343#define MAX_STRING 511
  • doc/CHANGES

    r2dd23da ra70b7d7  
    11This ChangeLog mostly lists changes relevant to users. A full log can be
    2 found in the bzr commit logs, for example you can try:
    3 
    4 http://bugs.bitlbee.org/bitlbee/timeline?daysback=90&changeset=on
     2found in the git commit logs, for example you can try:
     3
     4https://github.com/bitlbee/bitlbee/commits/master
     5
     6Version 3.4:
     7- Main repository migrated from bzr to git
     8- Some API/ABI changes. Recompiling third party plugins is required!
     9- Important bugfixes:
     10  * Fix memory leak when calling word_wrap() on groupchat messages (dx)
     11  * Fix segfault after a file transfer is complete (dx)
     12  * Fix bug where NSS would refuse to work in forkdaemon mode (dx)
     13  * Fix several bugs with UTF8 nicks (dx)
     14  * Fix some nasty deadlocks that appared mostly with libpurple (dx)
     15- General changes:
     16  * Add a 'pattern' parameter to the blist command, to filter it (tribut)
     17  * Implemented /kick support, only supported by purple for now (jgeboski)
     18  * Add a "special" state to show_users (mapped to the % prefix) (jgeboski)
     19  * Improved support for cygwin, openbsd and darwin (jcopenha)
     20  * Create temporary users instead of showing "Message from unknown
     21    participant" (jgeboski)
     22- purple:
     23  * Local contact lists for gadugadu and whatsapp (dx)
     24  * Add topic and name_hint to groupchats (seirl)
     25  * Support for 'input' requests (such as telegram auth codes) (seirl)
     26    Note that telegram-purple itself is rather unstable ATM, it may crash.
     27- jabber:
     28  * Handle compressed DNS responses in SRV lookup (jcopenha)
     29  * Fix case sensitivity issues with JIDs (GRMrGecko, dx)
     30  * Implement XEP-0203 style message timestamps (dx)
     31  * Fix "Server claims your JID is X instead of Y" warnings (dx)
     32  * Account-wide display_name setting, mostly for hipchat (dx)
     33- twitter:
     34  * Filter channels. Search by keyword/hashtag or a list of users (jgeboski)
     35  * Fix bug in "reply" command which removed the first quote character (dx)
     36  * Add "rawreply" command, like reply but bitlbee won't add @mention (WillP)
     37  * Add support for The United States of America (favorite/fav aliases) (dx)
     38  * Default show_old_mentions to 0 (dx)
     39  * Start stream from last tweet on connect/reconnect (roger)
     40- msn:
     41  * Disabled module by default. The protocol we used (MSNP18) stopped working
     42    last week. This is being worked on, but it's far from ready for release.
     43- And lots of small bugfixes, too many to list here.
     44
     45Finished ... 20XX
    546
    647Version 3.2.2:
  • doc/user-guide/misc.xml

    r2dd23da ra70b7d7  
    409409</sect1>
    410410
     411<sect1 id="whatsnew030400">
     412<title>New stuff in BitlBee 3.4</title>
     413
     414<para>
     415Lots of bugfixes! <emphasis>Important:</emphasis> Recompiling third party plugins such as bitlbee-steam or bitlbee-facebook is <emphasis>required</emphasis>!
     416</para>
     417
     418<simplelist>
     419        <member><emphasis>twitter:</emphasis> Filter channels - Search by keyword/hashtag or a list of users. See the <emphasis>HowtoTwitter</emphasis> wiki page for more details!</member>
     420        <member><emphasis>twitter:</emphasis> Add "rawreply" command, like reply but bitlbee won't add @mention. Also add "favorite" / "fav" command aliases.</member>
     421        <member><emphasis>twitter:</emphasis> Start stream from last tweet on connect/reconnect to avoid showing duplicate tweets</member>
     422        <member><emphasis>jabber:</emphasis> Fixed crashes with file transfers (they still fail at bypassing NATs, but at least they fail without crashing)</member>
     423        <member><emphasis>purple:</emphasis> Improved support for gadugadu, whatsapp and telegram.</member>
     424        <member><emphasis>msn:</emphasis> disabled in this release since the protocol we used (MSNP18) stopped working.</member>
     425        <member>Add a 'pattern' parameter to the blist command, to filter it.</member>
     426        <member>The <emphasis>utf8_nicks</emphasis> setting should be more reliable now.</member>
     427</simplelist>
     428
     429<para>
     430See the full changelog for details!
     431</para>
     432
     433</sect1>
     434
    411435</chapter>
Note: See TracChangeset for help on using the changeset viewer.