Changes in / [3dcc878:b95d03b]


Ignore:
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r3dcc878 rb95d03b  
    159159        x=$$(basename $$(pwd)); \
    160160        cd ..; \
    161         tar czf $$x.tar.gz --exclude=debian --exclude=.git* --exclude=.depend $$x
     161        tar czf $$x.tar.gz --exclude-from=.gitignore $$x
    162162
    163163$(subdirs):
  • bitlbee.h

    r3dcc878 rb95d03b  
    3636
    3737#define PACKAGE "BitlBee"
    38 #define BITLBEE_VERSION "3.4"
     38#define BITLBEE_VERSION "3.2.2"
    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, 4, 0)
     41#define BITLBEE_VERSION_CODE BITLBEE_VER(3, 2, 2)
    4242
    4343#define MAX_STRING 511
  • doc/CHANGES

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

    r3dcc878 rb95d03b  
    409409</sect1>
    410410
    411 <sect1 id="whatsnew030400">
    412 <title>New stuff in BitlBee 3.4</title>
    413 
    414 <para>
    415 Lots 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>
    430 See the full changelog for details!
    431 </para>
    432 
    433 </sect1>
    434 
    435411</chapter>
Note: See TracChangeset for help on using the changeset viewer.