From d9e8ba2815cdd6ffa0402ab612b96cc393e962f5 Mon Sep 17 00:00:00 2001 From: Wilmer van der Gaast Date: Mon, 19 Apr 2010 15:08:34 +0200 Subject: [PATCH] 1.2.6a. I fail. :-( The 1.2.6 I just released has a groupchat mode in the Twitter module that doesn't actually work... --- bitlbee.h | 2 +- doc/CHANGES | 6 ++++++ protocols/twitter/twitter.c | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/bitlbee.h b/bitlbee.h index 0b31bbc..f4e03d7 100644 --- a/bitlbee.h +++ b/bitlbee.h @@ -34,7 +34,7 @@ #define _WIN32_WINNT 0x0501 #define PACKAGE "BitlBee" -#define BITLBEE_VERSION "1.2.6" +#define BITLBEE_VERSION "1.2.6a" #define VERSION BITLBEE_VERSION #define BITLBEE_VER(a,b,c) (((a) << 16) + ((b) << 8) + (c)) #define BITLBEE_VERSION_CODE BITLBEE_VER(1, 2, 6) diff --git a/doc/CHANGES b/doc/CHANGES index 94330bf..45b16e2 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -3,6 +3,12 @@ found in the bzr commit logs, for example you can try: http://bugs.bitlbee.org/bitlbee/timeline?daysback=90&changeset=on +Version 1.2.6a: +- Fixed a typo that renders the Twitter groupchat mode unusable. A last- + minute change that came a few minutes late. + +Finished 19 Apr 2010 + Version 1.2.6: - Native (very basic) support for Twitter, implemented by Geert Mulders. Currently supported are posting tweets, reading the ones of people you diff --git a/protocols/twitter/twitter.c b/protocols/twitter/twitter.c index 29be8a9..726c7cb 100644 --- a/protocols/twitter/twitter.c +++ b/protocols/twitter/twitter.c @@ -54,7 +54,7 @@ static char *set_eval_mode( set_t *set, char *value ) { if( g_strcasecmp( value, "one" ) == 0 || g_strcasecmp( value, "many" ) == 0 || - g_strcasecmp( value, "char" ) == 0 ) + g_strcasecmp( value, "chat" ) == 0 ) return value; else return NULL; -- 2.11.4.GIT