diff options
author | dequis <dx@dxzone.com.ar> | 2015-03-15 05:56:17 -0300 |
---|---|---|
committer | dequis <dx@dxzone.com.ar> | 2015-03-15 05:56:17 -0300 |
commit | a70b7d7e362faf2b49857499c91ef95d141caebd (patch) | |
tree | 56b3f08e20fec3b56d2e6b572984fb40dbc5ff14 | |
parent | 2dd23da38926e777c1dba707350b2afcf9421b25 (diff) |
Prepare for 3.4 release
-rw-r--r-- | bitlbee.h | 4 | ||||
-rw-r--r-- | doc/CHANGES | 47 | ||||
-rw-r--r-- | doc/user-guide/misc.xml | 24 |
3 files changed, 70 insertions, 5 deletions
@@ -35,10 +35,10 @@ extern "C" { #endif #define PACKAGE "BitlBee" -#define BITLBEE_VERSION "3.2.2" +#define BITLBEE_VERSION "3.4" #define VERSION BITLBEE_VERSION #define BITLBEE_VER(a, b, c) (((a) << 16) + ((b) << 8) + (c)) -#define BITLBEE_VERSION_CODE BITLBEE_VER(3, 2, 2) +#define BITLBEE_VERSION_CODE BITLBEE_VER(3, 4, 0) #define MAX_STRING 511 diff --git a/doc/CHANGES b/doc/CHANGES index d09ac6b5..4857ac6c 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,7 +1,48 @@ This ChangeLog mostly lists changes relevant to users. A full log can be -found in the bzr commit logs, for example you can try: - -http://bugs.bitlbee.org/bitlbee/timeline?daysback=90&changeset=on +found in the git commit logs, for example you can try: + +https://github.com/bitlbee/bitlbee/commits/master + +Version 3.4: +- Main repository migrated from bzr to git +- Some API/ABI changes. Recompiling third party plugins is required! +- Important bugfixes: + * Fix memory leak when calling word_wrap() on groupchat messages (dx) + * Fix segfault after a file transfer is complete (dx) + * Fix bug where NSS would refuse to work in forkdaemon mode (dx) + * Fix several bugs with UTF8 nicks (dx) + * Fix some nasty deadlocks that appared mostly with libpurple (dx) +- General changes: + * Add a 'pattern' parameter to the blist command, to filter it (tribut) + * Implemented /kick support, only supported by purple for now (jgeboski) + * Add a "special" state to show_users (mapped to the % prefix) (jgeboski) + * Improved support for cygwin, openbsd and darwin (jcopenha) + * Create temporary users instead of showing "Message from unknown + participant" (jgeboski) +- purple: + * Local contact lists for gadugadu and whatsapp (dx) + * Add topic and name_hint to groupchats (seirl) + * Support for 'input' requests (such as telegram auth codes) (seirl) + Note that telegram-purple itself is rather unstable ATM, it may crash. +- jabber: + * Handle compressed DNS responses in SRV lookup (jcopenha) + * Fix case sensitivity issues with JIDs (GRMrGecko, dx) + * Implement XEP-0203 style message timestamps (dx) + * Fix "Server claims your JID is X instead of Y" warnings (dx) + * Account-wide display_name setting, mostly for hipchat (dx) +- twitter: + * Filter channels. Search by keyword/hashtag or a list of users (jgeboski) + * Fix bug in "reply" command which removed the first quote character (dx) + * Add "rawreply" command, like reply but bitlbee won't add @mention (WillP) + * Add support for The United States of America (favorite/fav aliases) (dx) + * Default show_old_mentions to 0 (dx) + * Start stream from last tweet on connect/reconnect (roger) +- msn: + * Disabled module by default. The protocol we used (MSNP18) stopped working + last week. This is being worked on, but it's far from ready for release. +- And lots of small bugfixes, too many to list here. + +Finished ... 20XX Version 3.2.2: - The OTR plugin now uses libotr 4.0 (AKA libotr5 in debian based distros) diff --git a/doc/user-guide/misc.xml b/doc/user-guide/misc.xml index 33309cb6..64303383 100644 --- a/doc/user-guide/misc.xml +++ b/doc/user-guide/misc.xml @@ -408,4 +408,28 @@ passwords with <emphasis>account tag set -del password</emphasis> </para> </sect1> +<sect1 id="whatsnew030400"> +<title>New stuff in BitlBee 3.4</title> + +<para> +Lots of bugfixes! <emphasis>Important:</emphasis> Recompiling third party plugins such as bitlbee-steam or bitlbee-facebook is <emphasis>required</emphasis>! +</para> + +<simplelist> + <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> + <member><emphasis>twitter:</emphasis> Add "rawreply" command, like reply but bitlbee won't add @mention. Also add "favorite" / "fav" command aliases.</member> + <member><emphasis>twitter:</emphasis> Start stream from last tweet on connect/reconnect to avoid showing duplicate tweets</member> + <member><emphasis>jabber:</emphasis> Fixed crashes with file transfers (they still fail at bypassing NATs, but at least they fail without crashing)</member> + <member><emphasis>purple:</emphasis> Improved support for gadugadu, whatsapp and telegram.</member> + <member><emphasis>msn:</emphasis> disabled in this release since the protocol we used (MSNP18) stopped working.</member> + <member>Add a 'pattern' parameter to the blist command, to filter it.</member> + <member>The <emphasis>utf8_nicks</emphasis> setting should be more reliable now.</member> +</simplelist> + +<para> +See the full changelog for details! +</para> + +</sect1> + </chapter> |